All of lore.kernel.org
 help / color / mirror / Atom feed
* iwd release 1.30 onwards cannot find available networks
@ 2022-12-12 16:54 Bruno Dantas
  2022-12-12 17:22 ` James Prestwood
  0 siblings, 1 reply; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 16:54 UTC (permalink / raw)
  To: iwd

I was a happy iwd user through release 1.29. From 1.30 onwards (including the latest version 2.0) I had to switch to wpa_supplicant because in most (but, strangely, not all) locations where I go, iwd fails to find any available networks ("sudo iwctl station wlan0 get-networks" says "No networks available").

Today I finally got around to doing a git bisect to pinpoint the regression. The bisect concluded with this:

dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e is the first bad commit
commit dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e
Author: James Prestwood <prestwoj@gmail.com>
Date:   Thu Aug 4 11:51:06 2022 -0700

    wiphy: track GET_REG ID
    
    Keep track of the GET_REG call so it can be canceled if the wiphy
    goes down.

 src/wiphy.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

In case it's helpful, my machine is an X230 ThinkPad with coreboot, linux kernel version 5.15.10, running Tiny Core Linux 13.1 x86_64. My wireless card is Intel Dual Band Wireless-AC 7265. If you guys need any more information, I'd love to help.

Please fix this regression if possible. I'd love to go back to using iwd in the future.

Happy hacking!
Bruno "GNUser" Dantas

 

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 16:54 iwd release 1.30 onwards cannot find available networks Bruno Dantas
@ 2022-12-12 17:22 ` James Prestwood
  2022-12-12 17:52   ` Bruno Dantas
  0 siblings, 1 reply; 16+ messages in thread
From: James Prestwood @ 2022-12-12 17:22 UTC (permalink / raw)
  To: Bruno Dantas, iwd

Hi Bruno,

On Mon, 2022-12-12 at 11:54 -0500, Bruno Dantas wrote:
> I was a happy iwd user through release 1.29. From 1.30 onwards
> (including the latest version 2.0) I had to switch to wpa_supplicant
> because in most (but, strangely, not all) locations where I go, iwd
> fails to find any available networks ("sudo iwctl station wlan0 get-
> networks" says "No networks available").
> 
> Today I finally got around to doing a git bisect to pinpoint the
> regression. The bisect concluded with this:
> 
> dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e is the first bad commit
> commit dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e
> Author: James Prestwood <prestwoj@gmail.com>
> Date:   Thu Aug 4 11:51:06 2022 -0700
> 
>     wiphy: track GET_REG ID
>     
>     Keep track of the GET_REG call so it can be canceled if the wiphy
>     goes down.
> 
>  src/wiphy.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)

Thanks for taking initiative and bisecting. But its puzzling how this
commit could have any effect. The only functional change is removing a
pending request when the wiphy goes down, so not related to anything
while the device is up/scanning.

Just to be clear, you are making sure IWD scans prior to calling 'get-
networks' right? i.e. station wlan0 scan?

But assuming IWD is scanning (or trying) we need to see some debug logs
for IWD, and best if you could also get an iwmon trace when IWD starts
up and issues scans, and when you call get-networks. More info how to
do that here:

https://iwd.wiki.kernel.org/debugging

Btw, Alvin just sent a revert related to scanning [1]. I have't had a
chance to really look at it but possibly related?

[1]
https://lore.kernel.org/iwd/20221212164250.3075444-1-alvin@pqrs.dk/T/#u

Thanks,
James

> 
> In case it's helpful, my machine is an X230 ThinkPad with coreboot,
> linux kernel version 5.15.10, running Tiny Core Linux 13.1 x86_64. My
> wireless card is Intel Dual Band Wireless-AC 7265. If you guys need any
> more information, I'd love to help.
> 
> Please fix this regression if possible. I'd love to go back to using
> iwd in the future.
> 
> Happy hacking!
> Bruno "GNUser" Dantas
> 
>  
> 



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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 17:22 ` James Prestwood
@ 2022-12-12 17:52   ` Bruno Dantas
  2022-12-12 18:39     ` Paul Menzel
  2022-12-12 19:01     ` Denis Kenzior
  0 siblings, 2 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 17:52 UTC (permalink / raw)
  To: James Prestwood, iwd

Hi, James.

> Thanks for taking initiative and bisecting. But its puzzling how this
> commit could have any effect. The only functional change is removing a
> pending request when the wiphy goes down, so not related to anything
> while the device is up/scanning.

It was my first git bisect, so it is certainly possible that I made a mistake. Regardless, the regression definitely appeared in release 1.30 and I excluded a regression in ell.

> Just to be clear, you are making sure IWD scans prior to calling 'get-
> networks' right? i.e. station wlan0 scan?

Yes, but the scan just hangs. I wait a full minute before interrupting the scan with Ctrl+c.

> But assuming IWD is scanning (or trying) we need to see some debug logs
> for IWD, and best if you could also get an iwmon trace when IWD starts
> up and issues scans, and when you call get-networks. More info how to
> do that here:

No problem. When using latest iwd 2.0, then letting it scan for a minute before interrupting, then running get-networks, here is the iwmon trace:
https://pastebin.com/h7gHrS2w

And "iwd -d" output:
https://pastebin.com/2y5hHfWa

I don't see Alvin's patch in the git commit history yet. Once it's been committed, I can recompile iwd 2.0 and test it.

Please let me know what you think of the iwmon and iwd debug output.

Thanks,
Bruno

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 17:52   ` Bruno Dantas
@ 2022-12-12 18:39     ` Paul Menzel
  2022-12-12 18:58       ` Bruno Dantas
  2022-12-12 19:01     ` Denis Kenzior
  1 sibling, 1 reply; 16+ messages in thread
From: Paul Menzel @ 2022-12-12 18:39 UTC (permalink / raw)
  To: Bruno Dantas; +Cc: James Prestwood, iwd

Dear Bruno,


Am 12.12.22 um 18:52 schrieb Bruno Dantas:

>> Thanks for taking initiative and bisecting. But its puzzling how
>> this commit could have any effect. The only functional change is
>> removing a pending request when the wiphy goes down, so not related
>> to anything while the device is up/scanning.
> 
> It was my first git bisect, so it is certainly possible that I made a
> mistake. Regardless, the regression definitely appeared in release
> 1.30 and I excluded a regression in ell.

Does reverting the found commit on top of master fix the regression?

     git revert dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e

>> Just to be clear, you are making sure IWD scans prior to calling
>> 'get- networks' right? i.e. station wlan0 scan?
> 
> Yes, but the scan just hangs. I wait a full minute before
> interrupting the scan with Ctrl+c.
> 
>> But assuming IWD is scanning (or trying) we need to see some debug
>> logs for IWD, and best if you could also get an iwmon trace when
>> IWD starts up and issues scans, and when you call get-networks.
>> More info how to do that here:
> 
> No problem. When using latest iwd 2.0, then letting it scan for a
> minute before interrupting, then running get-networks, here is the
> iwmon trace: https://pastebin.com/h7gHrS2w

(I’d prefer, if you attached the output.)

> And "iwd -d" output: https://pastebin.com/2y5hHfWa
> 
> I don't see Alvin's patch in the git commit history yet. Once it's
> been committed, I can recompile iwd 2.0 and test it.

You can save Alvin’s message (Ctrl + s in Mozilla Thunderbird) and apply 
to your git archive with `git am path/to/message` or, as it is a revert, 
just execute:

     git revert 6051a1495227bbe7ba357f6995d4dbe4a4862331

> Please let me know what you think of the iwmon and iwd debug output.

Thank you for helping to debug this.


Kind regards,

Paul

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 18:39     ` Paul Menzel
@ 2022-12-12 18:58       ` Bruno Dantas
  0 siblings, 0 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 18:58 UTC (permalink / raw)
  To: Paul Menzel; +Cc: James Prestwood, iwd

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

Hi, Paul.

> Does reverting the found commit on top of master fix the regression?
> 
>     git revert dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e

I gave it a shot, but it creates a conflict in wiphy.c:

$ git clone git://git.kernel.org/pub/scm/network/wireless/iwd.git
$ cd iwd
$ git revert dfcba7c83c60f1a99ecf6f1424e97bf89fcab38e 
Auto-merging src/wiphy.c
CONFLICT (content): Merge conflict in src/wiphy.c
error: could not revert dfcba7c8... wiphy: track GET_REG ID
hint: After resolving the conflicts, mark them with
hint: "git add/rm <pathspec>", then run
hint: "git revert --continue".
hint: You can instead skip this commit with "git revert --skip".
hint: To abort and get back to the state before "git revert",
hint: run "git revert --abort".

> (I’d prefer, if you attached the output.)

See attached.

> or, as it is a revert, just execute:
> 
>     git revert 6051a1495227bbe7ba357f6995d4dbe4a4862331

That revert also seems to create a conflict:

$ git revert 6051a1495227bbe7ba357f6995d4dbe4a4862331
Auto-merging src/scan.c
CONFLICT (content): Merge conflict in src/scan.c
error: could not revert 6051a149... scan: Don't callback on SCAN_ABORTED
hint: After resolving the conflicts, mark them with
hint: "git add/rm <pathspec>", then run
hint: "git revert --continue".
hint: You can instead skip this commit with "git revert --skip".
hint: To abort and get back to the state before "git revert",
hint: run "git revert --abort".

I'm sorry if my lack of experience with git is complicating the debug process. I'm a strong sysadmin but I confess that git is not my forte.

Cheers,
Bruno

[-- Attachment #2: iwmon.txt --]
[-- Type: text/plain, Size: 380710 bytes --]

Wireless monitor ver 2.0
Created interface nlmon
< Request: Get Interface (0x05) len 8 [ack]                   1670866603.722663
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                        1670866603.722673
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                1670866603.722676
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                   1670866605.729596
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                        1670866605.729621
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                1670866605.729625
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                   1670866606.977938
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                        1670866606.977952
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                1670866606.977955
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                               0.979743
    Flags: 1 (0x001)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                        0.979770
    Flags: 0 (0x000)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 4001232460
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 5
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        Stats: len 96
            1c 00 00 00 2e 00 00 00 17 0e 00 00 13 15 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                               0.979818
    Flags: 1 (0x001)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 5
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                        0.979831
    Flags: 0 (0x000)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 10429
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 5
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        Stats: len 96
            1c 00 00 00 2e 00 00 00 17 0e 00 00 13 15 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: New Address (0x14) len 72 [multi,0x20]                         0.979853
    Flags: 34 (0x022)
    Sequence number: 1670866607 (0x639766af)
    Port ID: 10429
    IFA Family: AF_INET
    IFA Prefixlen: 19
    IFA Index: 5
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 10.1.82.209
        Local Address: 10.1.82.209
        Broadcast Address: 10.1.95.255
        Label (len:6): wlan0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 3137, cstamp: 3137
> RTNL: New Address (0x14) len 56 [multi,0x20]                         0.979862
    Flags: 34 (0x022)
    Sequence number: 1670866607 (0x639766af)
    Port ID: 10429
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 5
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::216:ebff:fe99:8018
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 3022, cstamp: 3022
        Flags: (0x80) [permanent]
> RTNL: Done (0x03) len 4 [multi,0x20]                                 0.979876
    Flags: 34 (0x022)
    Sequence number: 1670866607 (0x639766af)
    Port ID: 10429
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                               0.982592
    Flags: 1 (0x001)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 0
> RTNL: Error (0x02) len 56                                            0.982603
    Flags: 0 (0x000)
    Sequence number: 1670866606 (0x639766ae)
    Port ID: 4169318550
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                            1.736595
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                                 1.736619
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                         1.736625
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                            3.743516
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                                 3.743541
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                         3.743546
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                            5.750205
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                                 5.750230
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                         5.750236
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                            7.757111
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                                 7.757129
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                         7.757133
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                            9.762824
    Interface Index: 5 (0x00000005)
> Result: New Interface (0x07) len 160                                 9.762840
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                         9.762844
    Status: Success (0)
< RTNL: Get Link (0x12) len 4 [request,dump]                          10.440959
    Flags: 769 (0x301)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 0
> RTNL: New Link (0x10) len 1320 [multi]                              10.441001
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
> RTNL: New Link (0x10) len 1340 [multi]                              10.441001
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
> RTNL: New Link (0x10) len 1440 [multi]                              10.441026
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
> RTNL: New Link (0x10) len 1368 [multi]                              10.441026
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
> RTNL: New Link (0x10) len 1364 [multi]                              10.441046
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 5
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        Stats: len 96
            1c 00 00 00 2e 00 00 00 17 0e 00 00 13 15 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: New Link (0x10) len 1316 [multi]                              10.441046
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
> RTNL: Done (0x03) len 4 [multi]                                     10.441051
    Flags: 2 (0x002)
    Sequence number: 1670866615 (0x639766b7)
    Port ID: 10491
    Status: 0
> RTNL: New Address (0x14) len 72 [multi]                             10.441067
    Flags: 2 (0x002)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 10491
    IFA Family: AF_INET
    IFA Prefixlen: 19
    IFA Index: 5
    IFA Scope: global
    IFA Flags: (0x80) [permanent]
        Interface Address: 10.1.82.209
        Local Address: 10.1.82.209
        Broadcast Address: 10.1.95.255
        Label (len:6): wlan0
        Flags: (0x80) [permanent]
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 3137, cstamp: 3137
> RTNL: New Address (0x14) len 56 [multi]                             10.441074
    Flags: 2 (0x002)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 10491
    IFA Family: AF_INET6
    IFA Prefixlen: 64
    IFA Index: 5
    IFA Scope: link
    IFA Flags: (0x80) [permanent]
        Interface Address: fe80::216:ebff:fe99:8018
        CacheInfo:
            ifa_prefered: infinite
            ifa_valid: infinite
            tstamp: 3022, cstamp: 3022
        Flags: (0x80) [permanent]
> RTNL: Done (0x03) len 4 [multi]                                     10.441079
    Flags: 2 (0x002)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 10491
    Status: 0
< Request: Get Wiphy (0x01) len 4 [ack,0x300]                         10.446646
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 124 [multi]                            10.446746
    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: 20 (0x14)
    Max Num Sched Scan SSIDs: 20 (0x14)
    Max Scan IE Length: 425 (0x01a9)
    Max Sched Scan IE Len: 486 (0x01e6)
    Max Match Sets: 11 (0x0b)
    Support IBSS RSN: true
    Support AP UAPSD: true
    TDLS Support: true
    TDLS External Setup: true
> Result: New Wiphy (0x03) len 96 [multi]                             10.446746
    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: 0 (0x00)
    Unknown: 102 len 0
    Wiphy Antenna Avail TX: 113 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna TX: 3 (0x00000003)
    Wiphy Antenna RX: 3 (0x00000003)
> Result: New Wiphy (0x03) len 64 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 32
        Ad-hoc: true
        Station: true
        AP: true
        AP-VLAN: true
        Monitor: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            10.446746
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            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]                             10.446746
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 4: len 32
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 5: len 32
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 6: len 32
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 7: len 32
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 8: len 32
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 13: len 36
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Disabled: true
                    No HT40-: true
                    No HT40+: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             10.446746
    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]                            10.446746
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            VHT MCS Set: 7 len 8
                fa ff 00 00 fa ff 00 20                          .......         
            VHT Capabilities: 8 len 4
                b0 71 80 03                                      .q..            
            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 92 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 0: len 48
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 1: len 48
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 2: len 48
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 3: len 48
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 4: len 68
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 5: len 68
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 6: len 68
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 7: len 68
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 8: len 68
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 9: len 68
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 10: len 68
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 11: len 68
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 12: len 68
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 13: len 68
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 14: len 68
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 15: len 68
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 16: len 68
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 17: len 68
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 18: len 68
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 19: len 68
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 159694 (0x00026fce)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 20: len 44
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 21: len 44
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 22: len 44
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 23: len 44
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 96 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 64
        Band 1: len 60
            Frequencies: len 56
                Frequency 24: len 52
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             10.446746
    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]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 280 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        New Station [19]
        Set BSS [25]
        Authenticate [37]
        Associate [38]
        Deauthenticate [39]
        Disassociate [40]
        Join IBSS [43]
        Remain on Channel [55]
        Set TX Bitrate Mask [57]
        Frame [59]
        Frame Wait Cancel [67]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Mgmt [82]
        TDLS Oper [81]
        Start Sched Scan [75]
        Probe Client [84]
        Set NoAck Map [87]
        Register Beacons [85]
        Start P2P Device [89]
        Set Mcast Rate [92]
        Connect [46]
        Disconnect [48]
        Channel Switch [102]
        Set QoS Map [104]
        Add Traffic Stream [105]
        Set Multicast to Unicast [121]
> Result: New Wiphy (0x03) len 40 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 10000 (0x00002710)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 88 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    WoWLAN Triggers Supported: 118 len 56
        04 00 02 00 04 00 03 00 04 00 05 00 04 00 06 00  ................
        04 00 07 00 04 00 08 00 04 00 09 00 14 00 04 00  ................
        14 00 00 00 10 00 00 00 80 00 00 00 00 00 00 00  ................
        08 00 12 00 0b 00 00 00                          ........        
> Result: New Wiphy (0x03) len 152 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 8
        AP-VLAN: true
        Monitor: true
    Interface Combinations: 120 len 108
        6c 00 01 00 48 00 01 00 14 00 01 00 08 00 01 00  l...H...........
        01 00 00 00 08 00 02 00 04 00 02 00 1c 00 02 00  ................
        08 00 01 00 01 00 00 00 10 00 02 00 04 00 03 00  ................
        04 00 08 00 04 00 09 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 0a 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              ............    
> Result: New Wiphy (0x03) len 68 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Feature Flags: 143 len 4
        e3 da 05 ff                                      ....            
    HT Capability Mask: 148 len 26
        e3 4b 1f ff ff ff ff ff ff ff ff ff ff 00 00 00  .K..............
        00 00 00 00 00 00 00 00 00 00                    ..........      
> Result: New Wiphy (0x03) len 1584 [multi]                           10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 1076
        Unknown: 0 len 0
        Ad-hoc: 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)
        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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: 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-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 332
        Unknown: 0 len 0
        Ad-hoc: len 32
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            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)
        Station: len 24
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 24
            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-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
        02 00 00 00                                      ....            
    Unknown: 223 len 4
        ff ff 00 00                                      ....            
    Unknown: 224 len 4
        fe 00 00 00                                      ....            
    Extended Capabilities: len 8
        Capability: bit  2: Extended channel switching
        Capability: bit 62: Opmode Notification
    Extended Capabilities Mask: 170 len 8
        04 00 00 00 00 00 00 40                          .......@        
    VHT Capability Mask: 176 len 12
        f0 1f 80 33 ff ff 00 00 ff ff 00 00              ...3........    
    MAC Address 00:16:EB:99:80:18
    MAC Addresses: len 60
        1 00:16:EB:99:80:18
        2 00:16:EB:99:80:19
        3 00:16:EB:99:80:1A
        4 00:16:EB:99:80:1B
        5 00:16:EB:99:80:1C
> Result: New Wiphy (0x03) len 28 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 60 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max CSA Counters: 206 len 1
        02                                               .               
    Unknown: 216 len 0
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_VHT_IBSS
        NL80211_EXT_FEATURE_RRM
        NL80211_EXT_FEATURE_SCAN_START_TIME
        NL80211_EXT_FEATURE_BSS_PARENT_TSF
        NL80211_EXT_FEATURE_FILS_STA
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211
        NL80211_EXT_FEATURE_TXQS
        NL80211_EXT_FEATURE_EXT_KEY_ID
        NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH
        NL80211_EXT_FEATURE_DEL_IBSS_STA
        NL80211_EXT_FEATURE_SCAN_FREQ_KHZ
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS
> Result: New Wiphy (0x03) len 112 [multi]                            10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
    TXQ Stats: 265 len 48
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 08 00 07 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 0b 00 00 10 00 00  ................
    TXQ Limit: 266 len 4
        00 20 00 00                                      . ..            
    TXQ Memory Limit: 267 len 4
        00 00 00 01                                      ....            
    TXQ Quantum: 268 len 4
        2c 01 00 00                                      ,...            
> Result: New Wiphy (0x03) len 28 [multi]                             10.446746
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.446800
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.446800
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Complete: Get Wiphy (0x01) len 4 [multi]                            10.446875
    Status: 0
< Request: Get Interface (0x05) len 0 [ack,0x300]                     10.447112
> Result: New Interface (0x07) len 160 [multi]                        10.447119
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Complete: Get Interface (0x05) len 4 [multi]                        10.447131
    Status: 0
< Request: Get Reg (0x1f) len 8 [ack]                                 10.447162
    Wiphy: 0 (0x00000000)
> Result: Get Reg (0x1f) len 1700                                     10.447178
    Wiphy: 0 (0x00000000)
    Regulatory Alpha2: US
    Regulatory Rules: len 1680
        Rule 0: len 56
            Flags: len 4
                Auto BW
                No HT40-
                No 80MHz
                No 160MHz
            Frequency Start: 2402 MHz
            Frequency End: 2437 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 1: len 56
            Flags: len 4
                Auto BW
                No 80MHz
                No 160MHz
            Frequency Start: 2422 MHz
            Frequency End: 2462 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 2: len 56
            Flags: len 4
                Auto BW
                No HT40+
                No 80MHz
                No 160MHz
            Frequency Start: 2447 MHz
            Frequency End: 2482 MHz
            Frequency Range Max BW: 40 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 3: len 56
            Flags: len 4
                No Outdoor
                No IR
                Auto BW
                IR Concurrent
                No HT40-
                No 160MHz
            Frequency Start: 5170 MHz
            Frequency End: 5190 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 4: len 56
            Flags: len 4
                No Outdoor
                No IR
                Auto BW
                IR Concurrent
                No HT40+
                No 160MHz
            Frequency Start: 5190 MHz
            Frequency End: 5210 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 5: len 56
            Flags: len 4
                No Outdoor
                No IR
                Auto BW
                IR Concurrent
                No HT40-
                No 160MHz
            Frequency Start: 5210 MHz
            Frequency End: 5230 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 6: len 56
            Flags: len 4
                No Outdoor
                No IR
                Auto BW
                IR Concurrent
                No HT40+
                No 160MHz
            Frequency Start: 5230 MHz
            Frequency End: 5250 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 7: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5250 MHz
            Frequency End: 5270 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 8: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5270 MHz
            Frequency End: 5290 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 9: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5290 MHz
            Frequency End: 5310 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 10: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5310 MHz
            Frequency End: 5330 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 11: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5490 MHz
            Frequency End: 5510 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 12: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5510 MHz
            Frequency End: 5530 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 13: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5530 MHz
            Frequency End: 5550 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 14: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5550 MHz
            Frequency End: 5570 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 15: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5570 MHz
            Frequency End: 5590 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 16: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5590 MHz
            Frequency End: 5610 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 17: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5610 MHz
            Frequency End: 5630 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 18: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5630 MHz
            Frequency End: 5650 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 19: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5650 MHz
            Frequency End: 5670 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 20: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5670 MHz
            Frequency End: 5690 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 21: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40-
                No 160MHz
            Frequency Start: 5690 MHz
            Frequency End: 5710 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 22: len 56
            Flags: len 4
                DFS
                No IR
                Auto BW
                No HT40+
                No 160MHz
            Frequency Start: 5710 MHz
            Frequency End: 5730 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 23: len 56
            Flags: len 4
                No IR
                Auto BW
                IR Concurrent
                No HT40-
                No 160MHz
            Frequency Start: 5735 MHz
            Frequency End: 5755 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 24: len 56
            Flags: len 4
                No IR
                Auto BW
                IR Concurrent
                No HT40+
                No 160MHz
            Frequency Start: 5755 MHz
            Frequency End: 5775 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 25: len 56
            Flags: len 4
                No IR
                Auto BW
                IR Concurrent
                No HT40-
                No 160MHz
            Frequency Start: 5775 MHz
            Frequency End: 5795 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 26: len 56
            Flags: len 4
                No IR
                Auto BW
                IR Concurrent
                No HT40+
                No 160MHz
            Frequency Start: 5795 MHz
            Frequency End: 5815 MHz
            Frequency Range Max BW: 80 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
        Rule 27: len 56
            Flags: len 4
                No IR
                Auto BW
                IR Concurrent
                No HT40-
                No HT40+
                No 80MHz
                No 160MHz
            Frequency Start: 5815 MHz
            Frequency End: 5835 MHz
            Frequency Range Max BW: 20 MHz
            Max Antenna Gain: 600 (0x00000258)
            Max EIRP: 2200 (0x00000898)
            DFS CAC Time: 0 (0x00000000)
> Response: Get Reg (0x1f) len 4 [0x100]                              10.447180
    Status: Success (0)
< Request: Del Interface (0x08) len 20 [ack]                          10.447198
    Wireless Device: 1 (0x0000000000000001)
    Wiphy: 0 (0x00000000)
> RTNL: New Link (0x10) len 1364                                      10.459896
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 5
    IFLA ChangeMask: 65
    IFLA Flags: (0x1002) [broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        Stats: len 96
            1c 00 00 00 2e 00 00 00 17 0e 00 00 13 15 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 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 776
        Reserved: len 13
        Reserved: len 4
> Event: Del Interface (0x08) len 160                                 10.480445
    Interface Index: 5 (0x00000005)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 1 (0x0000000000000001)
    MAC Address 00:16:EB:99:80:18
    Generation: 7 (0x00000007)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 1700 (0x000006a4)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> RTNL: Delete Link (0x11) len 588                                    10.480593
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 5
    IFLA ChangeMask: 4294967295
    IFLA Flags: (0x1002) [broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:5): noop
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        Stats: len 96
            1c 00 00 00 2e 00 00 00 17 0e 00 00 13 15 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
            00 00 00 00 00 00 00 00 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 0
        Reserved: len 13
        Reserved: len 4
> Response: Del Interface (0x08) len 4 [0x100]                        10.497116
    Status: Success (0)
< Request: New Interface (0x07) len 40 [ack]                          10.497286
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Interface Name: wlan0
    4-Address: 0 (0x00)
    Socket Owns Interface/Connection: true
> RTNL: New Link (0x10) len 1364                                      10.497540
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    IFLA ChangeMask: 4294967295
    IFLA Flags: (0x1002) [broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:5): noop
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> Event: New Interface (0x07) len 160                                 10.497555
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 1 (0x00000001)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Result: New Interface (0x07) len 160                                10.497560
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 1 (0x00000001)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: New Interface (0x07) len 4 [0x100]                        10.497562
    Status: Success (0)
< Request: New Interface (0x07) len 44 [ack]                          10.497634
    Wiphy: 0 (0x00000000)
    Interface Type: 10 (0x0000000a)
    Interface Name: wlan0-p2p
    4-Address: 0 (0x00)
    Socket Owns Interface/Connection: true
> Event: New Interface (0x07) len 64                                  10.497645
    Wiphy: 0 (0x00000000)
    Interface Type: 10 (0x0000000a)
    Wireless Device: 4 (0x0000000000000004)
    MAC Address 00:16:EB:99:80:19
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
> Result: New Interface (0x07) len 64                                 10.497647
    Wiphy: 0 (0x00000000)
    Interface Type: 10 (0x0000000a)
    Wireless Device: 4 (0x0000000000000004)
    MAC Address 00:16:EB:99:80:19
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
> Response: New Interface (0x07) len 4 [0x100]                        10.497648
    Status: Success (0)
< RTNL: Get Link (0x12) len 16 [request,ack]                          10.497654
    Flags: 5 (0x005)
    Sequence number: 1 (0x00000001)
    Port ID: 10491
> RTNL: New Link (0x10) len 1364                                      10.497660
    Flags: 0 (0x000)
    Sequence number: 1 (0x00000001)
    Port ID: 10491
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x1002) [broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:5): noop
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: Error (0x02) len 20 [0x100]                                   10.497662
    Flags: 256 (0x100)
    Sequence number: 1 (0x00000001)
    Port ID: 10491
    ACK: 0
< RTNL: Set Link (0x13) len 16 [request,ack]                          10.497701
    Flags: 5 (0x005)
    Sequence number: 2 (0x00000002)
    Port ID: 10491
> Event: Wiphy Reg Change (0x71) len 28                               10.599537
    Regulatory Initiator: 48 len 1
        02                                               .               
    Regulatory Type: 49 len 1
        01                                               .               
    Wiphy: 0 (0x00000000)
    Unknown: 216 len 0
> RTNL: New Link (0x10) len 1364                                      10.600061
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    IFLA ChangeMask: 1
    IFLA Flags: (0x1043) [up,broadcast,running,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: unknown (0)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: Error (0x02) len 20 [0x100]                                   10.600143
    Flags: 256 (0x100)
    Sequence number: 2 (0x00000002)
    Port ID: 10491
    ACK: 0
> RTNL: New Link (0x10) len 1364                                      10.600195
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x1003) [up,broadcast,multicast]
        IfName (len:6): wlan0
        Txqlen: 1000 (0x000003e8)
        OperState: down (2)
        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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
< Request: Register Frame (0x3a) len 28 [ack]                         10.600331
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        05 05                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.600351
    Status: Success (0)
< RTNL: Set Link (0x13) len 32 [request,ack]                          10.602875
    Flags: 5 (0x005)
    Sequence number: 3 (0x00000003)
    Port ID: 10491
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        LinkMode: userspace controlled (1)
        OperState: down (2)
> RTNL: New Link (0x10) len 1364                                      10.602928
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: Error (0x02) len 20 [0x100]                                   10.602938
    Flags: 256 (0x100)
    Sequence number: 3 (0x00000003)
    Port ID: 10491
    ACK: 0
< Request: Register Frame (0x3a) len 28 [ack]                         10.602973
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        08 01                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.602987
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603052
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        08 00                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603065
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603088
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        06 02                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603098
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603120
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00b0
        Type: Management (0)
        Subtype: Authentication (11)
    Frame Match: len 2
        02 00                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603130
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603153
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        01 04                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603163
    Status: Success (0)
< Request: Get Wiphy (0x01) len 12 [ack,0x300]                        10.603187
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 124 [multi]                            10.603418
    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: 20 (0x14)
    Max Num Sched Scan SSIDs: 20 (0x14)
    Max Scan IE Length: 425 (0x01a9)
    Max Sched Scan IE Len: 486 (0x01e6)
    Max Match Sets: 11 (0x0b)
    Support IBSS RSN: true
    Support AP UAPSD: true
    TDLS Support: true
    TDLS External Setup: true
> Result: New Wiphy (0x03) len 96 [multi]                             10.603418
    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: 0 (0x00)
    Unknown: 102 len 0
    Wiphy Antenna Avail TX: 113 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna TX: 3 (0x00000003)
    Wiphy Antenna RX: 3 (0x00000003)
> Result: New Wiphy (0x03) len 64 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 32
        Ad-hoc: true
        Station: true
        AP: true
        AP-VLAN: true
        Monitor: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            10.603418
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            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]                             10.603418
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 4: len 32
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 5: len 32
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 6: len 32
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 7: len 32
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 8: len 32
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 0: len 56
            Frequencies: len 52
                Frequency 11: len 48
                    Frequency: 2467 (0x000009a3)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 0: len 56
            Frequencies: len 52
                Frequency 12: len 48
                    Frequency: 2472 (0x000009a8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 13: len 36
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Disabled: true
                    No HT40-: true
                    No HT40+: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             10.603418
    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]                            10.603418
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            VHT MCS Set: 7 len 8
                fa ff 00 00 fa ff 00 20                          .......         
            VHT Capabilities: 8 len 4
                b0 71 80 03                                      .q..            
            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 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 0: len 48
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 1: len 48
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 2: len 48
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 3: len 48
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 4: len 68
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 5: len 68
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 6: len 68
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 7: len 68
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 8: len 68
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 9: len 68
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 10: len 68
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 11: len 68
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 12: len 68
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 13: len 68
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 14: len 68
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 15: len 68
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 16: len 68
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 17: len 68
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 18: len 68
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 19: len 68
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 4 (0x00000004)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 20: len 44
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 21: len 44
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 22: len 44
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 23: len 44
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 96 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 64
        Band 1: len 60
            Frequencies: len 56
                Frequency 24: len 52
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             10.603418
    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]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 280 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        New Station [19]
        Set BSS [25]
        Authenticate [37]
        Associate [38]
        Deauthenticate [39]
        Disassociate [40]
        Join IBSS [43]
        Remain on Channel [55]
        Set TX Bitrate Mask [57]
        Frame [59]
        Frame Wait Cancel [67]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Mgmt [82]
        TDLS Oper [81]
        Start Sched Scan [75]
        Probe Client [84]
        Set NoAck Map [87]
        Register Beacons [85]
        Start P2P Device [89]
        Set Mcast Rate [92]
        Connect [46]
        Disconnect [48]
        Channel Switch [102]
        Set QoS Map [104]
        Add Traffic Stream [105]
        Set Multicast to Unicast [121]
> Result: New Wiphy (0x03) len 40 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 10000 (0x00002710)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 88 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    WoWLAN Triggers Supported: 118 len 56
        04 00 02 00 04 00 03 00 04 00 05 00 04 00 06 00  ................
        04 00 07 00 04 00 08 00 04 00 09 00 14 00 04 00  ................
        14 00 00 00 10 00 00 00 80 00 00 00 00 00 00 00  ................
        08 00 12 00 0b 00 00 00                          ........        
> Result: New Wiphy (0x03) len 152 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 8
        AP-VLAN: true
        Monitor: true
    Interface Combinations: 120 len 108
        6c 00 01 00 48 00 01 00 14 00 01 00 08 00 01 00  l...H...........
        01 00 00 00 08 00 02 00 04 00 02 00 1c 00 02 00  ................
        08 00 01 00 01 00 00 00 10 00 02 00 04 00 03 00  ................
        04 00 08 00 04 00 09 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 0a 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              ............    
> Result: New Wiphy (0x03) len 68 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Feature Flags: 143 len 4
        e3 da 05 ff                                      ....            
    HT Capability Mask: 148 len 26
        e3 4b 1f ff ff ff ff ff ff ff ff ff ff 00 00 00  .K..............
        00 00 00 00 00 00 00 00 00 00                    ..........      
> Result: New Wiphy (0x03) len 1584 [multi]                           10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 1076
        Unknown: 0 len 0
        Ad-hoc: 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)
        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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: 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-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 332
        Unknown: 0 len 0
        Ad-hoc: len 32
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            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)
        Station: len 24
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 24
            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-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
        02 00 00 00                                      ....            
    Unknown: 223 len 4
        ff ff 00 00                                      ....            
    Unknown: 224 len 4
        fe 00 00 00                                      ....            
    Extended Capabilities: len 8
        Capability: bit  2: Extended channel switching
        Capability: bit 62: Opmode Notification
    Extended Capabilities Mask: 170 len 8
        04 00 00 00 00 00 00 40                          .......@        
    VHT Capability Mask: 176 len 12
        f0 1f 80 33 ff ff 00 00 ff ff 00 00              ...3........    
    MAC Address 00:16:EB:99:80:18
    MAC Addresses: len 60
        1 00:16:EB:99:80:18
        2 00:16:EB:99:80:19
        3 00:16:EB:99:80:1A
        4 00:16:EB:99:80:1B
        5 00:16:EB:99:80:1C
> Result: New Wiphy (0x03) len 28 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 60 [multi]                             10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max CSA Counters: 206 len 1
        02                                               .               
    Unknown: 216 len 0
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_VHT_IBSS
        NL80211_EXT_FEATURE_RRM
        NL80211_EXT_FEATURE_SCAN_START_TIME
        NL80211_EXT_FEATURE_BSS_PARENT_TSF
        NL80211_EXT_FEATURE_FILS_STA
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211
        NL80211_EXT_FEATURE_TXQS
        NL80211_EXT_FEATURE_EXT_KEY_ID
        NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH
        NL80211_EXT_FEATURE_DEL_IBSS_STA
        NL80211_EXT_FEATURE_SCAN_FREQ_KHZ
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS
> Result: New Wiphy (0x03) len 112 [multi]                            10.603418
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
    TXQ Stats: 265 len 48
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 08 00 07 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 0b 00 00 10 00 00  ................
    TXQ Limit: 266 len 4
        00 20 00 00                                      . ..            
    TXQ Memory Limit: 267 len 4
        00 00 00 01                                      ....            
    TXQ Quantum: 268 len 4
        2c 01 00 00                                      ,...            
> Result: New Wiphy (0x03) len 28 [multi]                             10.603445
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.603445
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             10.603445
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Complete: Get Wiphy (0x01) len 4 [multi]                            10.603587
    Status: 0
< Request: Set Interface (0x06) len 16 [ack]                          10.603710
    Interface Index: 9 (0x00000009)
    4-Address: 0 (0x00)
> Event: Set Interface (0x06) len 160                                 10.603733
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Set Interface (0x06) len 4 [0x100]                        10.603742
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603802
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        0a 07                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603815
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603838
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        05 00                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603848
    Status: Success (0)
< Request: Register Frame (0x3a) len 32 [ack]                         10.603871
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 7
        04 09 50 6f 9a 1a 01                             ..Po...         
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603882
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603905
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        04 0b                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603915
    Status: Success (0)
< Request: Register Frame (0x3a) len 28 [ack]                         10.603937
    Wireless Device: 3 (0x0000000000000003)
    Frame Type: 0x00d0
        Type: Management (0)
        Subtype: Action (13)
    Frame Match: len 2
        04 0a                                            ..              
> Response: Register Frame (0x3a) len 4 [0x100]                       10.603947
    Status: Success (0)
< Request: Trigger Scan (0x21) len 36 [ack]                           10.603972
    Wireless Device: 3 (0x0000000000000003)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            04 00 08 00 01 00 00 40 00 01                    .......@..      
    Scan Flags: Mask: 0x00004000 len 4
            Colocated6G
> Event: Trigger Scan (0x21) len 364                                  10.604144
    Wiphy: 0 (0x00000000)
    Interface Index: 9 (0x00000009)
    Wireless Device: 3 (0x0000000000000003)
    Scan SSIDs: len 0
    Scan Frequencies: len 304
        0: 2412 (0x0000096c)
        1: 2417 (0x00000971)
        2: 2422 (0x00000976)
        3: 2427 (0x0000097b)
        4: 2432 (0x00000980)
        5: 2437 (0x00000985)
        6: 2442 (0x0000098a)
        7: 2447 (0x0000098f)
        8: 2452 (0x00000994)
        9: 2457 (0x00000999)
        10: 2462 (0x0000099e)
        11: 2467 (0x000009a3)
        12: 2472 (0x000009a8)
        13: 5180 (0x0000143c)
        14: 5200 (0x00001450)
        15: 5220 (0x00001464)
        16: 5240 (0x00001478)
        17: 5260 (0x0000148c)
        18: 5280 (0x000014a0)
        19: 5300 (0x000014b4)
        20: 5320 (0x000014c8)
        21: 5500 (0x0000157c)
        22: 5520 (0x00001590)
        23: 5540 (0x000015a4)
        24: 5560 (0x000015b8)
        25: 5580 (0x000015cc)
        26: 5600 (0x000015e0)
        27: 5620 (0x000015f4)
        28: 5640 (0x00001608)
        29: 5660 (0x0000161c)
        30: 5680 (0x00001630)
        31: 5700 (0x00001644)
        32: 5720 (0x00001658)
        33: 5745 (0x00001671)
        34: 5765 (0x00001685)
        35: 5785 (0x00001699)
        36: 5805 (0x000016ad)
        37: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            04 00 08 00 01 00 00 40 00 01                    .......@..      
    Scan Flags: Mask: 0x00004000 len 4
            Colocated6G
> Response: Trigger Scan (0x21) len 4 [0x100]                         10.604154
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           10.993116
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                10.993131
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        10.993134
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              10.995004
    Flags: 1 (0x001)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       10.995031
    Flags: 0 (0x000)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 4142843652
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              10.995089
    Flags: 1 (0x001)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       10.995101
    Flags: 0 (0x000)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 10498
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                10.995123
    Flags: 34 (0x022)
    Sequence number: 1670866617 (0x639766b9)
    Port ID: 10498
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              10.997896
    Flags: 1 (0x001)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           10.997907
    Flags: 0 (0x000)
    Sequence number: 1670866616 (0x639766b8)
    Port ID: 2329922243
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           11.769747
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                11.769771
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        11.769776
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           13.776876
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                13.776901
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        13.776907
    Status: Success (0)
> Event: Wiphy Reg Change (0x71) len 36                               15.087316
    Regulatory Initiator: 48 len 1
        02                                               .               
    Regulatory Type: 49 len 1
        00                                               .               
    Regulatory Alpha2: US
    Wiphy: 0 (0x00000000)
    Unknown: 216 len 0
> Event: New Scan Results (0x22) len 364                              15.087386
    Wiphy: 0 (0x00000000)
    Interface Index: 9 (0x00000009)
    Wireless Device: 3 (0x0000000000000003)
    Scan SSIDs: len 0
    Scan Frequencies: len 304
        0: 2412 (0x0000096c)
        1: 2417 (0x00000971)
        2: 2422 (0x00000976)
        3: 2427 (0x0000097b)
        4: 2432 (0x00000980)
        5: 2437 (0x00000985)
        6: 2442 (0x0000098a)
        7: 2447 (0x0000098f)
        8: 2452 (0x00000994)
        9: 2457 (0x00000999)
        10: 2462 (0x0000099e)
        11: 2467 (0x000009a3)
        12: 2472 (0x000009a8)
        13: 5180 (0x0000143c)
        14: 5200 (0x00001450)
        15: 5220 (0x00001464)
        16: 5240 (0x00001478)
        17: 5260 (0x0000148c)
        18: 5280 (0x000014a0)
        19: 5300 (0x000014b4)
        20: 5320 (0x000014c8)
        21: 5500 (0x0000157c)
        22: 5520 (0x00001590)
        23: 5540 (0x000015a4)
        24: 5560 (0x000015b8)
        25: 5580 (0x000015cc)
        26: 5600 (0x000015e0)
        27: 5620 (0x000015f4)
        28: 5640 (0x00001608)
        29: 5660 (0x0000161c)
        30: 5680 (0x00001630)
        31: 5700 (0x00001644)
        32: 5720 (0x00001658)
        33: 5745 (0x00001671)
        34: 5765 (0x00001685)
        35: 5785 (0x00001699)
        36: 5805 (0x000016ad)
        37: 5825 (0x000016c1)
    Information Elements: len 12
        Extended Capabilities: len 10
            Capability: bit  2: Extended channel switching
            Capability: bit 19: BSS transition
            Capability: bit 32: QoS Map
            Capability: bit 62: Opmode Notification
            04 00 08 00 01 00 00 40 00 01                    .......@..      
    Scan Flags: Mask: 0x00004000 len 4
            Colocated6G
> RTNL: New Link (0x10) len 48                                        15.087398
    Flags: 0 (0x000)
    Sequence number: 0 (0x00000000)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 Wiphy (0x01) len 12 [ack,0x300]                        15.087465
    Wiphy: 0 (0x00000000)
    Split Wiphy Dump: true
> Result: New Wiphy (0x03) len 124 [multi]                            15.087624
    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: 20 (0x14)
    Max Num Sched Scan SSIDs: 20 (0x14)
    Max Scan IE Length: 425 (0x01a9)
    Max Sched Scan IE Len: 486 (0x01e6)
    Max Match Sets: 11 (0x0b)
    Support IBSS RSN: true
    Support AP UAPSD: true
    TDLS Support: true
    TDLS External Setup: true
> Result: New Wiphy (0x03) len 96 [multi]                             15.087624
    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: 0 (0x00)
    Unknown: 102 len 0
    Wiphy Antenna Avail TX: 113 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna Avail RX: 114 len 4
        03 00 00 00                                      ....            
    Wiphy Antenna TX: 3 (0x00000003)
    Wiphy Antenna RX: 3 (0x00000003)
> Result: New Wiphy (0x03) len 64 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Interface Types: len 32
        Ad-hoc: true
        Station: true
        AP: true
        AP-VLAN: true
        Monitor: true
        P2P-Client: true
        P2P-GO: true
        P2P-Device: true
> Result: New Wiphy (0x03) len 240 [multi]                            15.087624
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            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]                             15.087624
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40-: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 4: len 32
                    Frequency: 2432 (0x00000980)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 5: len 32
                    Frequency: 2437 (0x00000985)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 6: len 32
                    Frequency: 2442 (0x0000098a)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 7: len 32
                    Frequency: 2447 (0x0000098f)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 76 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 44
        Band 0: len 40
            Frequencies: len 36
                Frequency 8: len 32
                    Frequency: 2452 (0x00000994)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    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 HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 80 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 48
        Band 0: len 44
            Frequencies: len 40
                Frequency 13: len 36
                    Frequency: 2484 (0x000009b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    Disabled: true
                    No HT40-: true
                    No HT40+: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             15.087624
    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]                            15.087624
    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
            HT MCS Set: MCS 8
            HT MCS Set: MCS 9
            HT MCS Set: MCS 10
            HT MCS Set: MCS 11
            HT MCS Set: MCS 12
            HT MCS Set: MCS 13
            HT MCS Set: MCS 14
            HT MCS Set: MCS 15
            MCS set: Rx Highest data rate: 300 Mbit/s
            MCS Set: bit 96: Tx MCS set defined
            HT Capabilities Info: bit  0: LDPC Coding Capability
            HT Capabilities Info: bit  1: Supported Channel Width Set
            HT Capabilities Info: bits 2-3: Disabled
            HT Capabilities Info: bit  5: Short GI for 20Mhz
            HT 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 12: DSSS/CCK Mode in 40Mhz
            AMPDU Factor: 5 len 1
                03                                               .               
            AMPDU Density: 6 len 1
                05                                               .               
            VHT MCS Set: 7 len 8
                fa ff 00 00 fa ff 00 20                          .......         
            VHT Capabilities: 8 len 4
                b0 71 80 03                                      .q..            
            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 92 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 0: len 48
                    Frequency: 5180 (0x0000143c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 1: len 48
                    Frequency: 5200 (0x00001450)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 2: len 48
                    Frequency: 5220 (0x00001464)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 92 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 60
        Band 1: len 56
            Frequencies: len 52
                Frequency 3: len 48
                    Frequency: 5240 (0x00001478)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Indoor only: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 4: len 68
                    Frequency: 5260 (0x0000148c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 5: len 68
                    Frequency: 5280 (0x000014a0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 6: len 68
                    Frequency: 5300 (0x000014b4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 7: len 68
                    Frequency: 5320 (0x000014c8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 8: len 68
                    Frequency: 5500 (0x0000157c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 9: len 68
                    Frequency: 5520 (0x00001590)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 10: len 68
                    Frequency: 5540 (0x000015a4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 11: len 68
                    Frequency: 5560 (0x000015b8)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 12: len 68
                    Frequency: 5580 (0x000015cc)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 13: len 68
                    Frequency: 5600 (0x000015e0)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 14: len 68
                    Frequency: 5620 (0x000015f4)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 15: len 68
                    Frequency: 5640 (0x00001608)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 16: len 68
                    Frequency: 5660 (0x0000161c)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 17: len 68
                    Frequency: 5680 (0x00001630)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 18: len 68
                    Frequency: 5700 (0x00001644)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40-: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 80
        Band 1: len 76
            Frequencies: len 72
                Frequency 19: len 68
                    Frequency: 5720 (0x00001658)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    Radar Detection: true
                    DFS State: 0 (0x00000000)
                    DFS Time: 0 (0x00000000)
                    DFS CAC Time: 60000 (0x0000ea60)
                    No HT40+: true
                    No 160 Mhz: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 20: len 44
                    Frequency: 5745 (0x00001671)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 21: len 44
                    Frequency: 5765 (0x00001685)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 22: len 44
                    Frequency: 5785 (0x00001699)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 88 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 56
        Band 1: len 52
            Frequencies: len 48
                Frequency 23: len 44
                    Frequency: 5805 (0x000016ad)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40+: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 96 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 64
        Band 1: len 60
            Frequencies: len 56
                Frequency 24: len 52
                    Frequency: 5825 (0x000016c1)
                    Unknown: 20 len 4
                        00 00 00 00                                      ....            
                    No IR: true
                    No IBSS: true
                    No HT40-: true
                    No HT40+: true
                    No 80 Mhz: true
                    No 160 Mhz: true
                    Go Concurrent: true
                    Max TX Power: 2200 (0x00000898)
> Result: New Wiphy (0x03) len 40 [multi]                             15.087624
    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]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Wiphy Bands: len 0
> Result: New Wiphy (0x03) len 280 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Supported Commands:
        New Interface [7]
        Set Interface [6]
        New Key [11]
        Start AP [15]
        New Station [19]
        Set BSS [25]
        Authenticate [37]
        Associate [38]
        Deauthenticate [39]
        Disassociate [40]
        Join IBSS [43]
        Remain on Channel [55]
        Set TX Bitrate Mask [57]
        Frame [59]
        Frame Wait Cancel [67]
        Set Wiphy Netns [49]
        Set Channel [65]
        TDLS Mgmt [82]
        TDLS Oper [81]
        Start Sched Scan [75]
        Probe Client [84]
        Set NoAck Map [87]
        Register Beacons [85]
        Start P2P Device [89]
        Set Mcast Rate [92]
        Connect [46]
        Disconnect [48]
        Channel Switch [102]
        Set QoS Map [104]
        Add Traffic Stream [105]
        Set Multicast to Unicast [121]
> Result: New Wiphy (0x03) len 40 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max Remain on Channel Duration : 10000 (0x00002710)
    Offchannel TX OK: true
> Result: New Wiphy (0x03) len 88 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    WoWLAN Triggers Supported: 118 len 56
        04 00 02 00 04 00 03 00 04 00 05 00 04 00 06 00  ................
        04 00 07 00 04 00 08 00 04 00 09 00 14 00 04 00  ................
        14 00 00 00 10 00 00 00 80 00 00 00 00 00 00 00  ................
        08 00 12 00 0b 00 00 00                          ........        
> Result: New Wiphy (0x03) len 152 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Software Interface Types: len 8
        AP-VLAN: true
        Monitor: true
    Interface Combinations: 120 len 108
        6c 00 01 00 48 00 01 00 14 00 01 00 08 00 01 00  l...H...........
        01 00 00 00 08 00 02 00 04 00 02 00 1c 00 02 00  ................
        08 00 01 00 01 00 00 00 10 00 02 00 04 00 03 00  ................
        04 00 08 00 04 00 09 00 14 00 03 00 08 00 01 00  ................
        01 00 00 00 08 00 02 00 04 00 0a 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              ............    
> Result: New Wiphy (0x03) len 68 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Feature Flags: 143 len 4
        e3 da 05 ff                                      ....            
    HT Capability Mask: 148 len 26
        e3 4b 1f ff ff ff ff ff ff ff ff ff ff 00 00 00  .K..............
        00 00 00 00 00 00 00 00 00 00                    ..........      
> Result: New Wiphy (0x03) len 1584 [multi]                           15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    TX Frame Types: len 1076
        Unknown: 0 len 0
        Ad-hoc: 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)
        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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: 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-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 332
        Unknown: 0 len 0
        Ad-hoc: len 32
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            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)
        Station: len 24
            Frame Type: 0x0040
                Type: Management (0)
                Subtype: Probe request (4)
            Frame Type: 0x00b0
                Type: Management (0)
                Subtype: Authentication (11)
            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 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)
        WDS: len 0
        Monitor: len 0
        Mesh-point: len 24
            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-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
        02 00 00 00                                      ....            
    Unknown: 223 len 4
        ff ff 00 00                                      ....            
    Unknown: 224 len 4
        fe 00 00 00                                      ....            
    Extended Capabilities: len 8
        Capability: bit  2: Extended channel switching
        Capability: bit 62: Opmode Notification
    Extended Capabilities Mask: 170 len 8
        04 00 00 00 00 00 00 40                          .......@        
    VHT Capability Mask: 176 len 12
        f0 1f 80 33 ff ff 00 00 ff ff 00 00              ...3........    
    MAC Address 00:16:EB:99:80:18
    MAC Addresses: len 60
        1 00:16:EB:99:80:18
        2 00:16:EB:99:80:19
        3 00:16:EB:99:80:1A
        4 00:16:EB:99:80:1B
        5 00:16:EB:99:80:1C
> Result: New Wiphy (0x03) len 28 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 60 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Max CSA Counters: 206 len 1
        02                                               .               
    Unknown: 216 len 0
    Scheduled Scan Maximum Requests: 256 len 4
        01 00 00 00                                      ....            
    Extended Features:
        NL80211_EXT_FEATURE_VHT_IBSS
        NL80211_EXT_FEATURE_RRM
        NL80211_EXT_FEATURE_SCAN_START_TIME
        NL80211_EXT_FEATURE_BSS_PARENT_TSF
        NL80211_EXT_FEATURE_FILS_STA
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211
        NL80211_EXT_FEATURE_TXQS
        NL80211_EXT_FEATURE_EXT_KEY_ID
        NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH
        NL80211_EXT_FEATURE_DEL_IBSS_STA
        NL80211_EXT_FEATURE_SCAN_FREQ_KHZ
        NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_TX_STATUS
> Result: New Wiphy (0x03) len 112 [multi]                            15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
    Unknown: 239 len 4
        00 00 00 00                                      ....            
    TXQ Stats: 265 len 48
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 06 00 00 00 00 00 08 00 07 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 0b 00 00 10 00 00  ................
    TXQ Limit: 266 len 4
        00 20 00 00                                      . ..            
    TXQ Memory Limit: 267 len 4
        00 00 00 01                                      ....            
    TXQ Quantum: 268 len 4
        2c 01 00 00                                      ,...            
> Result: New Wiphy (0x03) len 28 [multi]                             15.087624
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             15.087665
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Result: New Wiphy (0x03) len 28 [multi]                             15.087665
    Wiphy: 0 (0x00000000)
    Wiphy Name: phy0
    Generation: 1 (0x00000001)
> Complete: Get Wiphy (0x01) len 4 [multi]                            15.087755
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                           15.783759
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                15.783774
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        15.783777
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           17.790158
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                17.790183
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        17.790189
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           19.795667
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                19.795692
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        19.795697
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           21.007529
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                21.007543
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        21.007546
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              21.009314
    Flags: 1 (0x001)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       21.009343
    Flags: 0 (0x000)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 2485104538
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              21.009402
    Flags: 1 (0x001)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       21.009413
    Flags: 0 (0x000)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 10566
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                21.009435
    Flags: 34 (0x022)
    Sequence number: 1670866628 (0x639766c4)
    Port ID: 10566
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              21.012128
    Flags: 1 (0x001)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           21.012139
    Flags: 0 (0x000)
    Sequence number: 1670866627 (0x639766c3)
    Port ID: 3771302357
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           21.801322
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                21.801337
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        21.801341
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           23.807729
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                23.807743
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        23.807746
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           25.814058
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                25.814073
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        25.814076
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           27.820610
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                27.820625
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        27.820627
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           29.826035
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                29.826062
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        29.826068
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           31.022778
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                31.022802
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        31.022807
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              31.024918
    Flags: 1 (0x001)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       31.024947
    Flags: 0 (0x000)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 3998977443
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              31.025004
    Flags: 1 (0x001)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       31.025017
    Flags: 0 (0x000)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 10652
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                31.025039
    Flags: 34 (0x022)
    Sequence number: 1670866638 (0x639766ce)
    Port ID: 10652
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              31.027913
    Flags: 1 (0x001)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           31.027924
    Flags: 0 (0x000)
    Sequence number: 1670866637 (0x639766cd)
    Port ID: 3778337458
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           31.831558
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                31.831572
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        31.831575
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           33.837957
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                33.837971
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        33.837974
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           35.843927
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                35.843943
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        35.843946
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           37.850387
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                37.850401
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        37.850404
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           39.856135
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                39.856149
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        39.856151
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           41.037935
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                41.037949
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        41.037952
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              41.039703
    Flags: 1 (0x001)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       41.039739
    Flags: 0 (0x000)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 3129901469
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              41.039798
    Flags: 1 (0x001)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       41.039811
    Flags: 0 (0x000)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10720
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                41.039835
    Flags: 34 (0x022)
    Sequence number: 1670866648 (0x639766d8)
    Port ID: 10720
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              41.042587
    Flags: 1 (0x001)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           41.042598
    Flags: 0 (0x000)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 2774264485
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           41.861561
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                41.861576
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        41.861579
    Status: Success (0)
< RTNL: Get Link (0x12) len 4 [request,dump]                          42.883221
    Flags: 769 (0x301)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 0
> RTNL: New Link (0x10) len 1320 [multi]                              42.883284
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
> RTNL: New Link (0x10) len 1340 [multi]                              42.883284
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
> RTNL: New Link (0x10) len 1440 [multi]                              42.883326
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
> RTNL: New Link (0x10) len 1368 [multi]                              42.883326
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
> RTNL: New Link (0x10) len 1316 [multi]                              42.883362
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
> RTNL: New Link (0x10) len 1364 [multi]                              42.883362
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi]                                     42.883371
    Flags: 2 (0x002)
    Sequence number: 1670866647 (0x639766d7)
    Port ID: 10736
    Status: 0
> RTNL: Done (0x03) len 4 [multi]                                     42.883419
    Flags: 2 (0x002)
    Sequence number: 1670866648 (0x639766d8)
    Port ID: 10736
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                           43.867514
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                43.867527
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        43.867530
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           45.873824
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                45.873839
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        45.873842
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           47.880386
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                47.880401
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        47.880404
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           49.886285
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                49.886299
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        49.886303
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           51.053524
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                51.053548
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        51.053554
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              51.055370
    Flags: 1 (0x001)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       51.055399
    Flags: 0 (0x000)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 2909034612
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              51.055453
    Flags: 1 (0x001)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       51.055466
    Flags: 0 (0x000)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 10789
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                51.055489
    Flags: 34 (0x022)
    Sequence number: 1670866658 (0x639766e2)
    Port ID: 10789
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              51.058257
    Flags: 1 (0x001)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           51.058268
    Flags: 0 (0x000)
    Sequence number: 1670866657 (0x639766e1)
    Port ID: 2425026062
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           51.891522
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                51.891537
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        51.891540
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           53.897708
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                53.897723
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        53.897725
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           55.903969
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                55.903984
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        55.903987
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           57.909780
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                57.909795
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        57.909798
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           59.916381
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                59.916405
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        59.916411
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           61.068061
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                61.068076
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        61.068079
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              61.069871
    Flags: 1 (0x001)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       61.069898
    Flags: 0 (0x000)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 2934451598
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              61.069947
    Flags: 1 (0x001)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       61.069959
    Flags: 0 (0x000)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 10857
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                61.069983
    Flags: 34 (0x022)
    Sequence number: 1670866668 (0x639766ec)
    Port ID: 10857
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              61.072751
    Flags: 1 (0x001)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           61.072762
    Flags: 0 (0x000)
    Sequence number: 1670866667 (0x639766eb)
    Port ID: 3903569752
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           61.923223
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                61.923248
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        61.923254
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           63.930167
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                63.930192
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        63.930197
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           65.937026
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                65.937043
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        65.937046
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           67.943805
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                67.943820
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        67.943823
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           69.950384
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                69.950399
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        69.950402
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           71.082873
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                71.082899
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        71.082904
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              71.084694
    Flags: 1 (0x001)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       71.084722
    Flags: 0 (0x000)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 4262936533
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              71.084770
    Flags: 1 (0x001)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       71.084783
    Flags: 0 (0x000)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 10925
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                71.084806
    Flags: 34 (0x022)
    Sequence number: 1670866678 (0x639766f6)
    Port ID: 10925
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              71.087612
    Flags: 1 (0x001)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           71.087623
    Flags: 0 (0x000)
    Sequence number: 1670866677 (0x639766f5)
    Port ID: 4124266102
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           71.957056
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                71.957071
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        71.957074
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           73.963731
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                73.963746
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        73.963749
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           75.970403
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                75.970417
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        75.970421
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           77.977039
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                77.977055
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        77.977058
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           79.983757
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                79.983772
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        79.983775
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           81.097623
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                81.097636
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        81.097639
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              81.099273
    Flags: 1 (0x001)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       81.099297
    Flags: 0 (0x000)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 3454520976
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              81.099340
    Flags: 1 (0x001)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       81.099351
    Flags: 0 (0x000)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 10993
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                81.099371
    Flags: 34 (0x022)
    Sequence number: 1670866688 (0x63976700)
    Port ID: 10993
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              81.101995
    Flags: 1 (0x001)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           81.102005
    Flags: 0 (0x000)
    Sequence number: 1670866687 (0x639766ff)
    Port ID: 2327520610
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           81.989481
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                81.989495
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        81.989498
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           83.996483
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                83.996508
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        83.996513
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           86.002953
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                86.002979
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        86.002985
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           88.009594
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                88.009619
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        88.009625
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           90.016026
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                90.016054
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        90.016059
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           91.112201
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                91.112228
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        91.112233
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                              91.113992
    Flags: 1 (0x001)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                       91.114016
    Flags: 0 (0x000)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 2889620058
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                              91.114067
    Flags: 1 (0x001)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                       91.114079
    Flags: 0 (0x000)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 11064
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                                91.114099
    Flags: 34 (0x022)
    Sequence number: 1670866698 (0x6397670a)
    Port ID: 11064
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                              91.116802
    Flags: 1 (0x001)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 0
> RTNL: Error (0x02) len 56                                           91.116813
    Flags: 0 (0x000)
    Sequence number: 1670866697 (0x63976709)
    Port ID: 2532315090
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                           92.022678
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                92.022702
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        92.022708
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           94.029437
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                94.029464
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        94.029470
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           96.036366
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                96.036389
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        96.036394
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                           98.043243
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                                98.043268
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                        98.043273
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          100.050368
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               100.050382
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       100.050385
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          101.126738
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               101.126753
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       101.126755
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                             101.128423
    Flags: 1 (0x001)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                      101.128448
    Flags: 0 (0x000)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 3247587184
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                             101.128492
    Flags: 1 (0x001)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                      101.128502
    Flags: 0 (0x000)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 11132
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               101.128521
    Flags: 34 (0x022)
    Sequence number: 1670866708 (0x63976714)
    Port ID: 11132
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                             101.131192
    Flags: 1 (0x001)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 0
> RTNL: Error (0x02) len 56                                          101.131203
    Flags: 0 (0x000)
    Sequence number: 1670866707 (0x63976713)
    Port ID: 3835277981
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                          102.057060
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               102.057075
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       102.057078
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          104.063707
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               104.063722
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       104.063725
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          106.070460
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               106.070475
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       106.070479
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          108.077150
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               108.077165
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       108.077168
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          110.083815
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               110.083829
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       110.083832
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          111.141155
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               111.141170
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       111.141173
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                             111.142814
    Flags: 1 (0x001)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                      111.142837
    Flags: 0 (0x000)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 2191391268
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                             111.142875
    Flags: 1 (0x001)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                      111.142885
    Flags: 0 (0x000)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 11200
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               111.142902
    Flags: 34 (0x022)
    Sequence number: 1670866718 (0x6397671e)
    Port ID: 11200
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                             111.145486
    Flags: 1 (0x001)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 0
> RTNL: Error (0x02) len 56                                          111.145497
    Flags: 0 (0x000)
    Sequence number: 1670866717 (0x6397671d)
    Port ID: 2356374436
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                          112.090618
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               112.090633
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       112.090636
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          114.097210
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               114.097225
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       114.097228
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          116.103881
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               116.103895
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       116.103898
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          118.110528
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               118.110542
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       118.110545
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          120.117341
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               120.117357
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       120.117360
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          121.155732
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               121.155758
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       121.155764
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                             121.157584
    Flags: 1 (0x001)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                      121.157605
    Flags: 0 (0x000)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 2163651978
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                             121.157639
    Flags: 1 (0x001)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                      121.157649
    Flags: 0 (0x000)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 11268
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               121.157668
    Flags: 34 (0x022)
    Sequence number: 1670866728 (0x63976728)
    Port ID: 11268
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                             121.160375
    Flags: 1 (0x001)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 0
> RTNL: Error (0x02) len 56                                          121.160386
    Flags: 0 (0x000)
    Sequence number: 1670866727 (0x63976727)
    Port ID: 3348302482
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                          122.123882
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               122.123897
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       122.123900
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          124.130508
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               124.130522
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       124.130525
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          126.137315
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               126.137329
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       126.137332
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          128.143867
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               128.143881
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       128.143884
    Status: Success (0)
< Request: Get Interface (0x05) len 8 [ack]                          130.150497
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               130.150512
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       130.150515
    Status: Success (0)
< RTNL: Get Link (0x12) len 4 [request,dump]                         130.657280
    Flags: 769 (0x301)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 0
> RTNL: New Link (0x10) len 1320 [multi]                             130.657320
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
> RTNL: New Link (0x10) len 1340 [multi]                             130.657320
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
> RTNL: New Link (0x10) len 1440 [multi]                             130.657344
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
> RTNL: New Link (0x10) len 1368 [multi]                             130.657344
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
> RTNL: New Link (0x10) len 1316 [multi]                             130.657364
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
> RTNL: New Link (0x10) len 1364 [multi]                             130.657364
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 776
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi]                                    130.657369
    Flags: 2 (0x002)
    Sequence number: 1670866735 (0x6397672f)
    Port ID: 11330
    Status: 0
> RTNL: Done (0x03) len 4 [multi]                                    130.657394
    Flags: 2 (0x002)
    Sequence number: 1670866736 (0x63976730)
    Port ID: 11330
    Status: 0
< Request: Get Interface (0x05) len 8 [ack]                          131.170319
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               131.170334
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       131.170337
    Status: Success (0)
< RTNL: Get Link (0x12) len 36 [request]                             131.171835
    Flags: 1 (0x001)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 0
> RTNL: New Link (0x10) len 992                                      131.171856
    Flags: 0 (0x000)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 3099338109
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
< RTNL: Get Link (0x12) len 24 [request]                             131.171894
    Flags: 1 (0x001)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 0
    IFLA Family: Unknown
    IFLA Type: 0
    IFLA Index: 9
    IFLA ChangeMask: 0
    IFLA Flags: (0x00)
        Reserved: len 4
> RTNL: New Link (0x10) len 992                                      131.171902
    Flags: 0 (0x000)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 11337
    IFLA Family: Unknown
    IFLA Type: 1
    IFLA Index: 9
    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 1
        Qdisc (len:8): noqueue
        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: 0:16:eb:99:80:18
        Broadcast Address: ff:ff:ff:ff:ff:ff
        Reserved: len 192
        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 396
        Reserved: len 13
        Reserved: len 4
> RTNL: Done (0x03) len 4 [multi,0x20]                               131.171920
    Flags: 34 (0x022)
    Sequence number: 1670866738 (0x63976732)
    Port ID: 11337
    Status: 0
< RTNL: Get Link (0x12) len 36 [request]                             131.174286
    Flags: 1 (0x001)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 0
> RTNL: Error (0x02) len 56                                          131.174298
    Flags: 0 (0x000)
    Sequence number: 1670866737 (0x63976731)
    Port ID: 4194482805
    Error: -19 (No such device)
< Request: Get Interface (0x05) len 8 [ack]                          132.157216
    Interface Index: 9 (0x00000009)
> Result: New Interface (0x07) len 160                               132.157231
    Interface Index: 9 (0x00000009)
    Interface Name: wlan0
    Wiphy: 0 (0x00000000)
    Interface Type: 2 (0x00000002)
    Wireless Device: 3 (0x0000000000000003)
    MAC Address 00:16:EB:99:80:18
    Generation: 2 (0x00000002)
    4-Address: 0 (0x00)
    Wiphy TX Power Level: 0 (0x00000000)
    TXQ Stats: 265 len 72
        08 00 01 00 00 00 00 00 08 00 02 00 00 00 00 00  ................
        08 00 03 00 00 00 00 00 08 00 04 00 00 00 00 00  ................
        08 00 05 00 00 00 00 00 08 00 06 00 00 00 00 00  ................
        08 00 08 00 00 00 00 00 08 00 09 00 00 00 00 00  ................
        08 00 0a 00 00 00 00 00                          ........        
> Response: Get Interface (0x05) len 4 [0x100]                       132.157234
    Status: Success (0)

[-- Attachment #3: iwd.txt --]
[-- Type: text/plain, Size: 6337 bytes --]

No Diffie-Hellman support found, WPS will not be available
The following options are missing in the kernel:
	CONFIG_KEY_DH_OPERATIONS
Wireless daemon version 2.0
src/main.c:main() Using configuration directory /etc/iwd
src/storage.c:storage_create_dirs() Using state directory /var/lib/iwd
src/main.c:nl80211_appeared() Found nl80211 interface
src/module.c:iwd_modules_init() 
station: Network configuration is disabled.
src/knownnetworks.c:known_network_frequencies_load() No known frequency file found.
src/wsc.c:wsc_init() 
src/eap.c:__eap_method_enable() 
src/eap-wsc.c:eap_wsc_init() 
src/eap-tls.c:eap_tls_init() 
src/eap-md5.c:eap_md5_init() 
src/eap-pwd.c:eap_pwd_init() 
src/eap-gtc.c:eap_gtc_init() 
src/eap-peap.c:eap_peap_init() 
src/eap-aka.c:eap_aka_prime_init() 
src/eap-aka.c:eap_aka_init() 
src/eap-sim.c:eap_sim_init() 
src/eap-mschapv2.c:eap_mschapv2_init() 
src/eap-ttls.c:eap_ttls_init() 
src/manager.c:manager_wiphy_dump_callback() New wiphy phy0 added (0)
src/manager.c:manager_wiphy_dump_done() 
src/manager.c:manager_filtered_wiphy_dump_done() 
Wiphy: 0, Name: phy0
	Permanent Address: 00:16:eb:99:80:18
	2.4Ghz Band:
		Bitrates (non-HT):
			 1.0 Mbps
			 2.0 Mbps
			 5.5 Mbps
			11.0 Mbps
			 6.0 Mbps
			 9.0 Mbps
			12.0 Mbps
			18.0 Mbps
			24.0 Mbps
			36.0 Mbps
			48.0 Mbps
			54.0 Mbps
		HT Capabilities:
			HT40
			Short GI for 20Mhz
			Short GI for 40Mhz
		HT RX MCS indexes:
			0-15
	5Ghz Band:
		Bitrates (non-HT):
			 6.0 Mbps
			 9.0 Mbps
			12.0 Mbps
			18.0 Mbps
			24.0 Mbps
			36.0 Mbps
			48.0 Mbps
			54.0 Mbps
		HT Capabilities:
			HT40
			Short GI for 20Mhz
			Short GI for 40Mhz
		HT RX MCS indexes:
			0-15
		VHT Capabilities:
			Short GI for 80Mhz
			Max RX MCS: 0-9 for NSS: 2
			Max TX MCS: 0-9 for NSS: 2
	Ciphers: BIP-CMAC-128 CCMP-128 TKIP
	Supported iftypes: ad-hoc station ap p2p-client p2p-go p2p-device
src/manager.c:manager_interface_dump_callback() 
src/manager.c:manager_get_interface_cb() 
src/manager.c:manager_get_interface_cb() 
src/manager.c:manager_interface_dump_done() 
src/wiphy.c:wiphy_update_reg_domain() New reg domain country code for phy0 is US
src/manager.c:manager_config_notify() Notification of command Del Interface(8)
src/netdev.c:netdev_link_notify() event 16 on ifindex 5
src/manager.c:manager_del_interface_cb() 
src/manager.c:manager_create_interfaces() creating wlan0
src/manager.c:manager_create_interfaces() creating wlan0-p2p
src/netdev.c:netdev_link_notify() event 17 on ifindex 5
src/manager.c:manager_config_notify() Notification of command New Interface(7)
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/manager.c:manager_new_station_interface_cb() 
src/netdev.c:netdev_create_from_genl() Created interface wlan0[9 3]
src/manager.c:manager_config_notify() Notification of command New Interface(7)
src/manager.c:manager_new_p2p_interface_cb() 
src/p2p.c:p2p_device_update_from_genl() Created P2P device 4
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/wiphy.c:wiphy_reg_notify() Notification of command Wiphy Reg Change(113)
src/wiphy.c:wiphy_update_reg_domain() New reg domain country code for phy0 is XX
src/netdev.c:netdev_set_4addr() netdev: 9 use_4addr: 0
src/netdev.c:netdev_initial_up_cb() Interface 9 initialized
src/station.c:station_enter_state() Old State: disconnected, new state: autoconnect_quick
src/station.c:station_quick_scan_trigger() regdom is updating, delaying quick scan
src/rrm.c:rrm_add_frame_watches() 
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/station.c:station_enter_state() Old State: autoconnect_quick, new state: autoconnect_full
src/scan.c:scan_periodic_start() Starting periodic scan for wdev 3
src/wiphy.c:wiphy_radio_work_insert() Inserting work item 1
src/wiphy.c:wiphy_radio_work_next() Starting work item 1
src/manager.c:manager_config_notify() Notification of command Set Interface(6)
src/scan.c:scan_notify() Scan notification Trigger Scan(33)
src/scan.c:scan_request_triggered() Passive scan triggered for wdev 3
src/scan.c:scan_periodic_triggered() Periodic scan triggered for wdev 3
src/wiphy.c:wiphy_reg_notify() Notification of command Wiphy Reg Change(113)
src/wiphy.c:wiphy_update_reg_domain() New reg domain country code for phy0 is US
src/scan.c:scan_notify() Scan notification New Scan Results(34)
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/agent.c:agent_register() agent register called
src/agent.c:agent_register() agent :1.1 path /agent/10736
src/station.c:station_dbus_scan() Scan called from DBus
src/wiphy.c:wiphy_radio_work_insert() Inserting work item 2
src/agent.c:agent_disconnect() agent :1.1 disconnected
src/agent.c:agent_free() agent free 0x150b010
src/agent.c:agent_register() agent register called
src/agent.c:agent_register() agent :1.2 path /agent/11330
src/agent.c:agent_disconnect() agent :1.2 disconnected
src/agent.c:agent_free() agent free 0x150bd60
Terminate
src/netdev.c:netdev_free() Freeing netdev wlan0[9]
src/device.c:device_free() 
src/station.c:station_free() 
src/scan.c:scan_periodic_stop() Stopping periodic scan for wdev 3
src/scan.c:scan_cancel() Trying to cancel scan id 1 for wdev 3
src/scan.c:scan_cancel() Scan is already started
src/wiphy.c:wiphy_radio_work_done() Work item 1 done
src/wiphy.c:wiphy_radio_work_next() Starting work item 2
src/scan.c:scan_cancel() Trying to cancel scan id 2 for wdev 3
src/scan.c:scan_cancel() Scan is already started
src/wiphy.c:wiphy_radio_work_done() Work item 2 done
src/station.c:station_roam_state_clear() 9
Removing scan context for wdev 3
src/scan.c:scan_context_free() sc: 0x150bb30
src/netdev.c:netdev_link_notify() event 16 on ifindex 9
src/module.c:iwd_modules_exit() 
src/offchannel.c:offchannel_exit() 
src/dpp.c:dpp_exit() 
src/eap.c:__eap_method_disable() 
src/eap-wsc.c:eap_wsc_exit() 
src/eap-tls.c:eap_tls_exit() 
src/eap-md5.c:eap_md5_exit() 
src/eap-pwd.c:eap_pwd_exit() 
src/eap-gtc.c:eap_gtc_exit() 
src/eap-peap.c:eap_peap_exit() 
src/eap-aka.c:eap_aka_prime_exit() 
src/eap-aka.c:eap_aka_exit() 
src/eap-sim.c:eap_sim_exit() 
src/eap-mschapv2.c:eap_mschapv2_exit() 
src/eap-ttls.c:eap_ttls_exit() 
Removing scan context for wdev 4
src/scan.c:scan_context_free() sc: 0x1501450
src/wsc.c:wsc_exit() 
src/wiphy.c:wiphy_free() Freeing wiphy phy0[0]
D-Bus disconnected, quitting...

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 17:52   ` Bruno Dantas
  2022-12-12 18:39     ` Paul Menzel
@ 2022-12-12 19:01     ` Denis Kenzior
  2022-12-12 19:27       ` Bruno Dantas
  1 sibling, 1 reply; 16+ messages in thread
From: Denis Kenzior @ 2022-12-12 19:01 UTC (permalink / raw)
  To: Bruno Dantas, James Prestwood, iwd

Hi Bruno,

>> Just to be clear, you are making sure IWD scans prior to calling 'get-
>> networks' right? i.e. station wlan0 scan?
> 
> Yes, but the scan just hangs. I wait a full minute before interrupting the scan with Ctrl+c.
> 

This doesn't make much sense.  get-networks doesn't scan, it just returns the 
cached networks that iwd knows about.  If you want to scan, use 'station wlan0 
scan'.

And can you elaborate what 'hangs' mean?  If there are no networks, then you 
should see a "No networks available" print or something similar.

>> But assuming IWD is scanning (or trying) we need to see some debug logs
>> for IWD, and best if you could also get an iwmon trace when IWD starts
>> up and issues scans, and when you call get-networks. More info how to
>> do that here:
> 
> No problem. When using latest iwd 2.0, then letting it scan for a minute before interrupting, then running get-networks, here is the iwmon trace:
> https://pastebin.com/h7gHrS2w
> 
> And "iwd -d" output:
> https://pastebin.com/2y5hHfWa
> 

According to iwmon, there is nothing coming up in the scan results.

Can you run a few scans manually using 'station foo scan'?

Regards,
-Denis

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 19:01     ` Denis Kenzior
@ 2022-12-12 19:27       ` Bruno Dantas
  2022-12-12 19:38         ` Alvin Šipraga
  2022-12-12 22:00         ` Denis Kenzior
  0 siblings, 2 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 19:27 UTC (permalink / raw)
  To: Denis Kenzior, James Prestwood, iwd

Hi, Denis.

> And can you elaborate what 'hangs' mean?  If there are no networks, then you should see a "No networks available" print or something similar.

By "hangs" I mean that when I run "station wlan0 scan", the command never returns. I work in a hospital office where there are _many_ wifi networks within range, including ones with strong signal. 

(iw is able to show me the available networks, and I can connect to them using wpa_supplicant. A different linux machine that uses NetworkManager with wpa_supplicant backend also shows me numerous networks. iwd--up to and including version 1.29--is also able to show me the available networks.)

> Can you run a few scans manually using 'station foo scan'?

First attempt never returns, as I mentioned above. Subsequent manual attempts, no matter how long I wait, all go like this:

$ sudo iwctl station wlan0 scan
Operation already in progress

Attempts to display networks using "station wlan0 get-networks" consistently results in "No networks available", which is not true.

-Bruno

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 19:27       ` Bruno Dantas
@ 2022-12-12 19:38         ` Alvin Šipraga
  2022-12-12 20:07           ` Bruno Dantas
  2022-12-13 14:42           ` Bruno Dantas
  2022-12-12 22:00         ` Denis Kenzior
  1 sibling, 2 replies; 16+ messages in thread
From: Alvin Šipraga @ 2022-12-12 19:38 UTC (permalink / raw)
  To: Bruno Dantas; +Cc: Denis Kenzior, James Prestwood, iwd@lists.linux.dev

On Mon, Dec 12, 2022 at 02:27:36PM -0500, Bruno Dantas wrote:
> Hi, Denis.
> 
> > And can you elaborate what 'hangs' mean?  If there are no networks, then you should see a "No networks available" print or something similar.
> 
> By "hangs" I mean that when I run "station wlan0 scan", the command never returns. I work in a hospital office where there are _many_ wifi networks within range, including ones with strong signal. 
> 
> (iw is able to show me the available networks, and I can connect to them using wpa_supplicant. A different linux machine that uses NetworkManager with wpa_supplicant backend also shows me numerous networks. iwd--up to and including version 1.29--is also able to show me the available networks.)
> 
> > Can you run a few scans manually using 'station foo scan'?
> 
> First attempt never returns, as I mentioned above. Subsequent manual attempts, no matter how long I wait, all go like this:
> 
> $ sudo iwctl station wlan0 scan
> Operation already in progress

Looks like the wiphy radio work queue is getting stuck. My best guess is
this piece of code:

static void scan_notify(struct l_genl_msg *msg, void *user_data)
{
	/* ... */

	switch (cmd) {
	case NL80211_CMD_NEW_SCAN_RESULTS:
	{
		struct scan_freq_set *freqs;
		bool send_next = false;
		bool retry = false;
		bool get_results = false;

		sc->state = SCAN_STATE_NOT_RUNNING;

		/* Was this our own scan or an external scan */
		if (sr && sr->triggered) {
			sr->triggered = false;

			if (!sr->callback) {
				scan_finished(sc, -ECANCELED, NULL, NULL, sr);
				break;
			}

			/* Regdom changed during a periodic scan */
			if (sc->sp.id == sr->work.id &&
					wiphy_regdom_is_updating(sc->wiphy)) {
				scan_parse_result_frequencies(msg,
							sr->freqs_scanned);
				return;
			}

			/* ... */

I guess you are entering this last if block, as the regdom is indeed
changing during the periodic scan based on your logs. Then scan_notify()
returns early rather than actually requesting the scan results
(get_results = true; leave switch and continue the rest of the
scan_notify() function).

Kind regards,
Alvin

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 19:38         ` Alvin Šipraga
@ 2022-12-12 20:07           ` Bruno Dantas
  2022-12-13 14:42           ` Bruno Dantas
  1 sibling, 0 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 20:07 UTC (permalink / raw)
  To: Alvin Šipraga; +Cc: Denis Kenzior, James Prestwood, iwd@lists.linux.dev

Hi, Alvin.

> I guess you are entering this last if block, as the regdom is indeed
> changing during the periodic scan based on your logs. Then scan_notify()
> returns early rather than actually requesting the scan results
> (get_results = true; leave switch and continue the rest of the
> scan_notify() function).

I'm not sure why my regulatory domain is changing. I'm certainly not swapping network cards during a scan. Nor am I manually spoofing a different regdom. I'm at a loss on this one.

By the way, this bug only affects me at my workplace. At home, iwd 1.30 and 2.0 can scan for networks just fine. My workplace is a hospital with multiple wireless networks over which I have no control and no insight.

If Alvin's diagnosis is correct, maybe using a regdom change as a marker that wiphy went down is not always reliable. One thing is for sure: iwd 1.30 and iwd 2.0 are making an assumption that is not accurate when I'm at work, resulting in an inability to scan for networks.  

-Bruno

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 19:27       ` Bruno Dantas
  2022-12-12 19:38         ` Alvin Šipraga
@ 2022-12-12 22:00         ` Denis Kenzior
  2022-12-12 23:31           ` Bruno Dantas
  1 sibling, 1 reply; 16+ messages in thread
From: Denis Kenzior @ 2022-12-12 22:00 UTC (permalink / raw)
  To: Bruno Dantas, James Prestwood, iwd

Hi Bruno,

On 12/12/22 13:27, Bruno Dantas wrote:
> Hi, Denis.
> 
>> And can you elaborate what 'hangs' mean?  If there are no networks, then you should see a "No networks available" print or something similar.
> 
> By "hangs" I mean that when I run "station wlan0 scan", the command never returns. I work in a hospital office where there are _many_ wifi networks within range, including ones with strong signal.

Gotcha.  Having a hang in 'station wlan0 scan' makes sense since it is an async 
method.  The get-networks method is synchronous so it shouldn't ever 'hang'.

Please try

[PATCH] scan: remove early supported check for 6ghz in wiphy watch

that James just sent and see if it fixes your issue.

Regards,
-Denis

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 22:00         ` Denis Kenzior
@ 2022-12-12 23:31           ` Bruno Dantas
  0 siblings, 0 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-12 23:31 UTC (permalink / raw)
  To: Denis Kenzior, James Prestwood, iwd




>Gotcha.  Having a hang in 'station wlan0 scan' makes sense since it is
>an async 
>method. 

I understand that it is an async method. But if it _never_ returns no matter how long I wait and this is a change from previous behavior, I think it is reasonable to assume that there's a bug somewhere.

I am off of work for two days. I will be happy to continue troubleshooting this on Thursday if there is any interest. If not, no big deal. 

Bruno

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-12 19:38         ` Alvin Šipraga
  2022-12-12 20:07           ` Bruno Dantas
@ 2022-12-13 14:42           ` Bruno Dantas
  2022-12-13 17:23             ` James Prestwood
  1 sibling, 1 reply; 16+ messages in thread
From: Bruno Dantas @ 2022-12-13 14:42 UTC (permalink / raw)
  To: Alvin Šipraga; +Cc: Denis Kenzior, James Prestwood, iwd@lists.linux.dev

Hi, Alvin. 

Thank you for looking into this issue. 

I just wanted to report that latest commit (ed357d78b3c70c43b37ec9444f5c96f14e14eb88) has not solved the bug I'm experiencing. "station wlan0 scan" continues to either hang indefinitely or say "Operation already in progress". "station wlan0 get-networks" continues to claim that no networks are available, which is not true. This behavior unfortunately makes iwd unusable in my place of work.

If you guys need any further information or debug logs to solve this, please let me know and I'll be happy to help.

Cheers,
Bruno

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-13 14:42           ` Bruno Dantas
@ 2022-12-13 17:23             ` James Prestwood
  2022-12-13 20:15               ` Bruno Dantas
  0 siblings, 1 reply; 16+ messages in thread
From: James Prestwood @ 2022-12-13 17:23 UTC (permalink / raw)
  To: Bruno Dantas, Alvin Šipraga; +Cc: Denis Kenzior, iwd@lists.linux.dev

Hi Bruno,

On Tue, 2022-12-13 at 09:42 -0500, Bruno Dantas wrote:
> Hi, Alvin. 
> 
> Thank you for looking into this issue. 
> 
> I just wanted to report that latest commit
> (ed357d78b3c70c43b37ec9444f5c96f14e14eb88) has not solved the bug I'm
> experiencing. "station wlan0 scan" continues to either hang
> indefinitely or say "Operation already in progress". "station wlan0
> get-networks" continues to claim that no networks are available, which
> is not true. This behavior unfortunately makes iwd unusable in my place
> of work.

Maybe you missed Denis' email, but I've sent a patch that will
hopefully fix your problem. Its on the list, or archives:

https://lore.kernel.org/iwd/20221212220857.1284874-1-prestwoj@gmail.com/T/#u

> 
> If you guys need any further information or debug logs to solve this,
> please let me know and I'll be happy to help.
> 
> Cheers,
> Bruno



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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-13 17:23             ` James Prestwood
@ 2022-12-13 20:15               ` Bruno Dantas
  2022-12-13 20:33                 ` James Prestwood
  0 siblings, 1 reply; 16+ messages in thread
From: Bruno Dantas @ 2022-12-13 20:15 UTC (permalink / raw)
  To: James Prestwood, Alvin Šipraga; +Cc: Denis Kenzior, iwd@lists.linux.dev

Hi, James.

> Maybe you missed Denis' email, but I've sent a patch that will
> hopefully fix your problem. Its on the list, or archives:
> 
> https://lore.kernel.org/iwd/20221212220857.1284874-1-prestwoj@gmail.com/T/#u

Oops. Sorry for missing that. Yes, I applied your patch and can confirm that it fixed the problem I was experiencing! Thank you so much. I'm much obliged.

Will your patch be included in the next release of iwd?

-Bruno

P.S. Just curious--what are your thoughts on why this bug would consistently affect me in one place (at hospital where I work) and consistently _not_ affect me in another (at home)? I'm at a loss.

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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-13 20:15               ` Bruno Dantas
@ 2022-12-13 20:33                 ` James Prestwood
  2022-12-13 21:02                   ` Bruno Dantas
  0 siblings, 1 reply; 16+ messages in thread
From: James Prestwood @ 2022-12-13 20:33 UTC (permalink / raw)
  To: Bruno Dantas, Alvin Šipraga; +Cc: Denis Kenzior, iwd@lists.linux.dev

Hi Bruno,

On Tue, 2022-12-13 at 15:15 -0500, Bruno Dantas wrote:
> Hi, James.
> 
> > Maybe you missed Denis' email, but I've sent a patch that will
> > hopefully fix your problem. Its on the list, or archives:
> > 
> > https://lore.kernel.org/iwd/20221212220857.1284874-1-prestwoj@gmail.com/T/#u
> 
> Oops. Sorry for missing that. Yes, I applied your patch and can
> confirm that it fixed the problem I was experiencing! Thank you so
> much. I'm much obliged.
> 
> Will your patch be included in the next release of iwd?
> 
> -Bruno
> 
> P.S. Just curious--what are your thoughts on why this bug would
> consistently affect me in one place (at hospital where I work) and
> consistently _not_ affect me in another (at home)? I'm at a loss.

Great! Glad it fixed it.

The issue itself was because the regulatory domain was updating during
a scan which we added logic to support but it wasn't quite correct.

Probably was happening at work because there were enough APs around
that included the country IE. So the kernel/firmware sees this and sets
the regulatory domain to that country. And at home there was not enough
enough APs around, or they didn't include that IE so the regdom never
changed.

Thanks,
James


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

* Re: iwd release 1.30 onwards cannot find available networks
  2022-12-13 20:33                 ` James Prestwood
@ 2022-12-13 21:02                   ` Bruno Dantas
  0 siblings, 0 replies; 16+ messages in thread
From: Bruno Dantas @ 2022-12-13 21:02 UTC (permalink / raw)
  To: James Prestwood, Alvin Šipraga; +Cc: Denis Kenzior, iwd@lists.linux.dev

Thank you very much for that explanation, James. Makes total sense.

I love iwd. Ad multos annos!

Happy hacking,
Bruno




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

end of thread, other threads:[~2022-12-13 21:02 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-12 16:54 iwd release 1.30 onwards cannot find available networks Bruno Dantas
2022-12-12 17:22 ` James Prestwood
2022-12-12 17:52   ` Bruno Dantas
2022-12-12 18:39     ` Paul Menzel
2022-12-12 18:58       ` Bruno Dantas
2022-12-12 19:01     ` Denis Kenzior
2022-12-12 19:27       ` Bruno Dantas
2022-12-12 19:38         ` Alvin Šipraga
2022-12-12 20:07           ` Bruno Dantas
2022-12-13 14:42           ` Bruno Dantas
2022-12-13 17:23             ` James Prestwood
2022-12-13 20:15               ` Bruno Dantas
2022-12-13 20:33                 ` James Prestwood
2022-12-13 21:02                   ` Bruno Dantas
2022-12-12 22:00         ` Denis Kenzior
2022-12-12 23:31           ` Bruno Dantas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.