libnl icon indicating copy to clipboard operation
libnl copied to clipboard

KeyError exception in nl.py

Open dclaffey opened this issue 10 years ago • 2 comments

There is a bug when initializing the callback dictionary. When the kernel sends a NLM_F_DUMP_INTR flag this exception occurs:

File "/usr/lib/python2.7/site-packages/libnl/nl.py", line 462, in recvmsgs if cb.cb_set[NL_CB_DUMP_INTR]: KeyError: 10

Is the following patch the correct fix?

--- handlers-0.2.0.py 2015-10-13 15:46:32.479024312 -0400 +++ handlers.py 2015-10-13 15:46:37.935024458 -0400 @@ -160,7 +160,7 @@ return None cb = nl_cb() cb.cb_active = NL_CB_TYPE_MAX + 1

  • for i in range(NL_CB_TYPE_MAX):
  • for i in range(NL_CB_TYPE_MAX + 1): nl_cb_set(cb, i, kind, None, None) nl_cb_err(cb, kind, None, None) return cb

dclaffey avatar Oct 13 '15 20:10 dclaffey

I need more context. If your program is small can you include it? If you can't share the source can you turn on logging and include the raw data the kernel is sending your program?

Robpol86 avatar Oct 13 '15 21:10 Robpol86

The python script is scanning for APs while wpa_supplicant is also attached to the WLAN device. The exception occurs when receiving the scan (NL80211_CMD_GET_SCAN) multi part response while the device associates with an AP. The scan result is therefore out of date and I'm guessing that's why nl80211 sets the NLM_F_DUMP_INTR flag in one of the NL80211_CMD_NEW_SCAN_RESULTS messages.

Basically this only occurs of the WLAN is not yet connected to the AP. The dump is attached (It's a bit long due to the many APs in the area). It is from a console which includes kernel messages as well. Here is the sequence:

  1. the python script sends the NL80211_CMD_GET_SCAN command
  2. nl80211 responds with several scan results
  3. on Line 141 the WLAN device is associated with the AP (as configured by wpa_supplicant
  4. on Line 693 one of the response messages has the NLM_F_DUMP_INTR flag set (0x10). All the previous responses only had the MULTI flag set.
  5. recvmsgs() hits an exception with key NL_CB_DUMP_INTR

I think it's a range issue because NL_CB_DUMP_INTR is the last key.

DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:456 recvmsgs: recvmsgs(0xb73419cc): Increased expected sequence number to 1440544980 WLAN interface is UP DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb7341dcc: Allocated new message, maxlen=4096 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:354 nlmsg_put: msg 0xb7341dcc: Added netlink header type=20, flags=773, pid=0, seq=0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:301 nlmsg_reserve: msg 0xb7341dcc: Reserved 4 (4) bytes, pad=4, nlmsg_len=20 DBG<0>/usr/lib/python2.7/site-packages/libnl/genl/genl.py:225 genlmsg_put: msg 0xb7341dcc: Added generic netlink header cmd=32 version=0 DBG<0>/usr/lib/python2.7/site-packages/libnl/attr.py:373 nla_reserve: msg 0xb7341dcc: attr <0xb734f40c> 3: Reserved 8 (4) bytes at offset +4 nlmsg_len=28 DBG<0>/usr/lib/python2.7/site-packages/libnl/attr.py:402 nla_put: msg 0xb7341dcc: attr <0xb734f40c> 3: Wrote 4 bytes at offset +4 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:117 nl_msg_out_handler_debug: -- Debug: Sent Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 28 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 773 <REQUEST,ACK,ROOT,MATCH> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 32 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 8 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 03 00 03 00 00 00 ........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:137 nl_sendmsg: sent 28 bytes DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:393 recvmsgs: Attempting to read from 0xb7341aec DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:398 recvmsgs: recvmsgs(0xb7341aec): Read 3592 bytes DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f5ac: Allocated new message, maxlen=436 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 436 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 416 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 90 01 2f 00 0a 00 01 00 00 71 c2 7e 70 ea 00 00 ../......q.~p... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: a2 00 06 00 00 0b 78 66 69 6e 69 74 79 77 69 66 ......xfinitywif DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 69 01 08 82 84 8b 96 8c 12 98 24 03 01 01 07 06 i.........$..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 55 53 20 01 0b 1e 2a 01 02 32 04 b0 48 60 6c 2d US .....2..Hl- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 00 00 00 00 00 00 00 00 00 3d 16 01 00 05 ...........=.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 ...J.....,...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 19 00 7f 08 01 00 00 00 00 00 00 40 dd 18 00 ............@... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 P..........'...B DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 C^.b2/.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 7f 00 00 a8 00 0b 00 00 0b 78 66 69 6e 69 74 ..........xfinit DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 79 77 69 66 69 01 08 82 84 8b 96 8c 12 98 24 03 ywifi.........$. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 05 04 01 02 00 00 07 06 55 53 20 01 0b 1e ..........US ... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2a 01 02 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff *..2..Hl-...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 3d 16 01 00 05 00 00 00 00 00 00 .....=.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 .............J.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 01 ...,............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 80 [email protected]..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f .....'...BC^.b2/ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 dd 09 00 03 7f 01 01 00 00 ff 7f 0c 00 03 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: e8 eb 72 40 f1 00 00 00 06 00 04 00 64 00 00 00 [email protected]... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 21 00 00 00 08 00 02 00 6c 09 00 00 ....!.......l... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 d0 07 00 00 08 00 07 00 08 ee ff ff ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f3ac: Allocated new message, maxlen=340 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 340 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 320 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 30 01 2f 00 0a 00 01 00 00 0d 67 5c 42 7c 00 00 0./.......g\B|.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: eb 00 06 00 00 0c 4f 75 74 4f 66 53 65 72 76 69 ......OutOfServi DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 63 65 01 08 8b 96 0c 12 18 24 30 48 03 01 01 07 ce.......$0H.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 55 53 49 01 0b 24 2a 01 00 32 02 60 6c 2d 1a .USI..$..2.l-. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2d 00 03 ff f0 00 00 00 00 00 00 00 00 00 00 00 -............... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 04 06 e6 e7 0d 00 33 1a 2d 00 03 ff ..........3.-... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 06 e6 e7 0d 00 3d 16 01 00 01 00 00 00 00 00 ......=......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 34 16 ..............4. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 ......J.....,... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 14 00 05 00 19 00 7f 06 01 00 00 02 00 00 dd 18 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 50 f2 02 01 01 05 00 03 a4 00 00 27 a4 00 00 .P..........'... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 BC^.b2/......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 ff 7f dd 16 00 50 f2 01 01 00 00 50 f2 04 01 ......P.....P... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 50 f2 04 01 00 00 50 f2 02 00 0c 00 03 00 ..P.....P....... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f0 33 62 7b f8 01 00 00 06 00 04 00 64 00 00 00 .3b{........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 31 04 00 00 08 00 02 00 6c 09 00 00 ....1.......l... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 e4 07 00 00 08 00 07 00 a4 ed ff ff ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734856c: Allocated new message, maxlen=596 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 596 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 576 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 30 02 2f 00 0a 00 01 00 24 ec 99 67 5b 52 00 00 0./.....$..g[R.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 24 01 06 00 00 02 41 47 01 08 82 84 8b 96 24 30 $.....AG......$0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 48 6c 03 01 01 2a 01 00 2f 01 00 30 18 01 00 00 Hl...*../..0.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 02 02 00 00 0f ac 04 00 0f ac 02 01 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 02 0c 00 32 04 0c 12 18 60 2d 1a 7c 18 1b .....2....-.|.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 3d 16 01 08 15 00 00 00 00 .......=........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dd ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 70 00 50 f2 04 10 4a 00 01 10 10 44 00 01 02 10 p.P...J....D.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 3b 00 01 03 10 47 00 10 4d 73 c5 c2 7e 6b 52 43 ;....G..Ms..~kRC DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: d6 44 0a ab 17 19 67 0b 10 21 00 03 4d 54 54 10 .D....g..!..MTT. [12839.653650] wlan0: authenticate with 04:54:53:0a:45:68 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 23 00 08 4d 57 47 33 34 30 31 4e 10 24 00 06 31 #..MWG3401N.$..1 [12839.675724] wlan0: send auth to 04:54:53:0a:45:68 (try 1/3) [12839.684991] wlan0: authenticated DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 32 33 34 35 36 10 42 00 07 30 30 30 30 30 30 31 23456.B..0000001 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 10 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 06 .T.....P........ [12839.710180] wlan0: associate with 04:54:53:0a:45:68 (try 1/3) DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 57 69 66 69 41 50 10 08 00 02 00 88 10 3c 00 01 WifiAP.......<.. [12839.730160] wlan0: RX AssocResp from 04:54:53:0a:45:68 (capab=0x1 status=0 aid=1) [12839.738806] wlan0: associated [12839.742451] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 dd 09 00 10 18 02 01 f0 04 00 00 dd 1c 00 50 ...............P DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f2 01 01 00 00 50 f2 02 02 00 00 50 f2 04 00 50 .....P.....P...P DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f2 02 01 00 00 50 f2 02 0c 00 dd 18 00 50 f2 02 .....P.......P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 00 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 ........'...BC^. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 62 32 2f 00 c8 00 0b 00 00 02 41 47 01 08 82 84 b2/.......AG.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 8b 96 24 30 48 6c 03 01 01 05 04 00 01 00 00 2a ..$0Hl.........* DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 2f 01 00 30 18 01 00 00 0f ac 02 02 00 00 ../..0.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 0c 00 32 ...............2 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 0c 12 18 60 2d 1a 7c 18 1b ff ff 00 00 00 00 ....-.|........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 3d 16 01 08 15 00 00 00 00 00 00 00 00 00 00 .=.............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 dd 0e 00 50 f2 04 10 ............P... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 4a 00 01 10 10 44 00 01 02 dd 09 00 10 18 02 01 J....D.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f0 04 00 00 dd 1c 00 50 f2 01 01 00 00 50 f2 02 .......P.....P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 00 00 50 f2 04 00 50 f2 02 01 00 00 50 f2 02 ...P...P.....P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0c 00 dd 18 00 50 f2 02 01 01 00 00 03 a4 00 00 .....P.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 27 a4 00 00 42 43 5e 00 62 32 2f 00 0c 00 03 00 '...BC^.b2/..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: e1 73 d5 fa 9a 01 00 00 06 00 04 00 64 00 00 00 .s..........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 11 04 00 00 08 00 02 00 6c 09 00 00 ............l... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 c6 07 00 00 08 00 07 00 2c e8 ff ff ............,... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f5ac: Allocated new message, maxlen=180 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 180 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 160 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 90 00 2f 00 0a 00 01 00 02 11 87 17 95 ff 00 00 ../............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 24 00 06 00 00 0b 56 55 4c 4b 41 4e 4f 34 31 37 $.....VULKANO417 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 37 01 08 82 84 8b 96 0c 12 18 24 03 01 01 32 04 7.........$...2. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 30 48 60 6c 28 00 0b 00 00 0b 56 55 4c 4b 41 4e 0Hl(.....VULKAN DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 4f 34 31 37 37 01 08 82 84 8b 96 0c 12 18 24 03 O4177.........$. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 06 02 00 00 32 04 30 48 60 6c 0c 00 03 00 ......2.0Hl.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 83 f6 5a 48 c9 00 00 00 06 00 04 00 64 00 00 00 ..ZH........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 02 00 00 00 08 00 02 00 6c 09 00 00 ............l... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 6c 07 00 00 08 00 07 00 f4 e8 ff ff ....l........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f3ac: Allocated new message, maxlen=724 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 724 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 704 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: b0 02 2f 00 0a 00 01 00 00 71 c2 7e 70 e8 00 00 ../......q.~p... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 6c 01 06 00 00 0d 43 61 72 6f 75 73 65 6c 5f 4b l.....Carousel_K DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 69 64 73 01 08 82 84 8b 96 8c 12 98 24 03 01 01 ids.........$... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 07 06 55 53 20 01 0b 1e 2a 01 02 32 04 b0 48 60 ..US...*..2..H DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 6c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 l-.............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 01 .............=.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 .....J.....,.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 05 00 19 00 7f 08 01 00 00 00 00 00 00 40 dd ..............@. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 ..P..........'.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 .BC^.b2/........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 ff 7f 30 18 01 00 00 0f ac 02 02 00 00 0f ....0........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00 dd 1a ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 04 .P.....P.....P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 50 f2 02 01 00 00 50 f2 02 dd 90 00 50 f2 04 .P.....P.....P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 10 4a 00 01 10 10 44 00 01 02 10 3b 00 01 03 10 .J....D....;.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 47 00 10 84 a4 e3 43 f3 35 52 ed bc c5 52 6e a9 G.....C.5R...Rn. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: cf f9 72 10 21 00 13 43 69 73 63 6f 20 53 79 73 ..r.!..Cisco Sys DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 74 65 6d 73 2c 20 49 6e 63 2e 10 23 00 08 44 50 tems, Inc..#..DP DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 43 33 39 33 39 42 10 24 00 08 44 50 43 33 39 33 C3939B.$..DPC393 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 39 42 10 42 00 09 30 30 30 30 30 30 30 30 31 10 9B.B..000000001. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 54 00 08 00 06 00 50 f2 04 00 01 10 11 00 08 44 T.....P........D DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 50 43 33 39 33 39 42 10 08 00 02 00 00 10 3c 00 PC3939B.......<. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 10 49 00 06 00 37 2a 00 01 20 ff 00 0b 00 ...I...7_.. .... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 0d 43 61 72 6f 75 73 65 6c 5f 4b 69 64 73 01 ..Carousel_Kids. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 82 84 8b 96 8c 12 98 24 03 01 01 05 04 00 02 ........$....... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 04 07 06 55 53 20 01 0b 1e 2a 01 02 32 04 b0 ....US .....2.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 48 60 6c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 Hl-............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d ...............= DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 16 01 00 05 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 .......J.....,.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 14 00 05 00 19 00 7f 08 01 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 40 dd 18 00 50 f2 02 01 01 80 00 03 a4 00 00 27 @...P..........' DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: a4 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f ...BC^.b2/...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 00 00 ff 7f 30 18 01 00 00 0f ac 02 02 00 ......0......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: dd 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 ...P.....P.....P DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f2 04 00 50 f2 02 01 00 00 50 f2 02 dd 1d 00 50 ...P.....P.....P DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f2 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 ...J....D....<.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 10 49 00 06 00 37 2a 00 01 20 00 0c 00 03 00 ..I...7*.. ..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: cb d9 72 40 f1 00 00 00 06 00 04 00 64 00 00 00 [email protected]... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 31 00 00 00 08 00 02 00 6c 09 00 00 ....1.......l... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 9e 07 00 00 08 00 07 00 4c eb ff ff ............L... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734856c: Allocated new message, maxlen=220 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 220 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 200 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: b8 00 2f 00 0a 00 01 00 00 23 97 b6 31 f1 00 00 ../......#..1... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 36 00 06 00 00 0c 30 39 46 58 31 30 30 33 35 36 6.....09FX100356 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 32 38 01 08 82 84 8b 96 24 30 48 6c 03 01 06 2a 28......$0Hl...* DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 2f 01 00 32 04 0c 12 18 60 dd 09 00 10 18 ../..2......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 00 f0 00 00 00 00 00 3c 00 0b 00 00 0c 30 39 ........<.....09 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 46 58 31 30 30 33 35 36 32 38 01 08 82 84 8b 96 FX10035628...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 24 30 48 6c 03 01 06 05 04 02 03 00 00 2a 01 00 $0Hl........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2f 01 00 32 04 0c 12 18 60 dd 09 00 10 18 02 00 /..2........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f0 00 00 00 0c 00 03 00 83 61 b9 32 9f 00 00 00 .........a.2.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 04 00 64 00 00 00 06 00 05 00 11 04 00 00 ....d........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 02 00 85 09 00 00 08 00 0a 00 54 06 00 00 ............T... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 07 00 bc e9 ff ff ........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f5ac: Allocated new message, maxlen=404 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 404 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 384 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 70 01 2f 00 0a 00 01 00 22 86 8c 4b 68 44 00 00 p./....."..KhD.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 92 00 06 00 00 0b 78 66 69 6e 69 74 79 77 69 66 ......xfinitywif DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 69 01 08 82 84 8b 96 0c 12 18 24 03 01 06 07 06 i.........$..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 55 53 20 01 0b 1e 2a 01 00 32 04 30 48 60 6c 2d US ..._..2.0Hl- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 00 00 00 00 00 00 00 00 00 3d 16 06 00 01 ...........=.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 7f 08 00 00 00 00 00 00 00 40 dd 18 00 ............@... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 50 f2 02 01 01 88 00 03 a4 00 00 27 a4 00 00 42 P..........'...B DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 C^.b2/.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 7f 00 00 98 00 0b 00 00 0b 78 66 69 6e 69 74 ..........xfinit DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 79 77 69 66 69 01 08 82 84 8b 96 0c 12 18 24 03 ywifi.........$. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 06 05 04 00 01 00 00 07 06 55 53 20 01 0b 1e ..........US ... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2a 01 00 32 04 30 48 60 6c 2d 1a ad 01 1b ff ff ..2.0Hl-...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 3d 16 06 00 01 00 00 00 00 00 00 .....=.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 88 [email protected]..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f .....'...BC^.b2/ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 dd 09 00 03 7f 01 01 00 00 ff 7f 0c 00 03 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 5e 98 dc 2c c5 00 00 00 06 00 04 00 64 00 00 00 ^..,........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 21 04 00 00 08 00 02 00 85 09 00 00 ....!........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 36 06 00 00 08 00 07 00 58 e9 ff ff ....6.......X... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f52c: Allocated new message, maxlen=692 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 692 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 672 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 90 02 2f 00 0a 00 01 00 10 86 8c 4b 68 44 00 00 ../........KhD.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 62 01 06 00 00 04 46 69 74 7a 01 08 82 84 8b 96 b.....Fitz...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 8c 12 98 24 03 01 06 07 06 55 53 20 01 0b 1e 2a ...$.....US ...* DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff ff ..2..Hl-....... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 3d 16 06 00 01 00 00 00 00 00 00 00 ....=........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 7f 08 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 88 00 [email protected]...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 ....'...BC^.b2/. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: dd 09 00 03 7f 01 01 00 00 ff 7f 30 18 01 00 00 ...........0.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 02 02 00 00 0f ac 04 00 0f ac 02 01 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 02 00 00 dd 1a 00 50 f2 01 01 00 00 50 f2 ........P.....P. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 02 00 00 50 f2 04 00 50 f2 02 01 00 00 50 f2 ....P...P.....P. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 dd 9f 00 50 f2 04 10 4a 00 01 10 10 44 00 01 ....P...J....D.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 10 3b 00 01 03 10 47 00 10 5e c9 0b e6 f3 70 ..;....G..^....p DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 57 cb a7 38 59 d6 4d 33 a3 c3 10 21 00 1c 41 74 W..8Y.M3...!..At DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 68 65 72 6f 73 20 43 6f 6d 6d 75 6e 69 63 61 74 heros Communicat DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 69 6f 6e 73 2c 20 49 6e 63 2e 10 23 00 04 41 50 ions, Inc..#..AP DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 78 78 10 24 00 08 41 50 78 78 2d 78 78 78 10 42 xx.$..APxx-xxx.B DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 12 53 65 72 69 61 6c 20 4e 75 6d 62 65 72 20 ..Serial Number DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 48 65 72 65 10 54 00 08 00 06 00 50 f2 04 00 01 Here.T.....P.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 10 11 00 09 41 74 68 65 72 6f 73 41 50 10 08 00 ....AtherosAP... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 00 04 10 3c 00 01 02 10 49 00 06 00 37 2a 00 ....<....I...7. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 20 00 00 e6 00 0b 00 00 04 46 69 74 7a 01 08 . ........Fitz.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 82 84 8b 96 8c 12 98 24 03 01 06 05 04 00 01 00 .......$........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 07 06 55 53 20 01 0b 1e 2a 01 00 32 04 b0 48 ...US .....2..H DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 60 6c 2d 1a ad 01 1b ff ff ff 00 00 00 00 00 00l-............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 01 00 00 00 00 00 00 00 00 00 00 3d 16 ..............=. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 7f 08 00 00 00 00 00 00 00 40 ...............@ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: dd 18 00 50 f2 02 01 01 88 00 03 a4 00 00 27 a4 ...P..........'. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 42 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 ..BC^.b2/....... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 00 ff 7f 30 18 01 00 00 0f ac 02 02 00 00 .....0.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 04 00 0f ac 02 01 00 00 0f ac 02 00 00 dd ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 1a 00 50 f2 01 01 00 00 50 f2 02 02 00 00 50 f2 ..P.....P.....P. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 00 50 f2 02 01 00 00 50 f2 02 dd 1d 00 50 f2 ..P.....P.....P. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 10 4a 00 01 10 10 44 00 01 02 10 3c 00 01 02 ..J....D....<... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 10 49 00 06 00 37 2a 00 01 20 00 00 0c 00 03 00 .I...7_.. ...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 80 91 dc 2c c5 00 00 00 06 00 04 00 64 00 00 00 ...,........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 31 04 00 00 08 00 02 00 85 09 00 00 ....1........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 7c 06 00 00 08 00 07 00 f4 e8 ff ff ....|........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:393 recvmsgs: Attempting to read from 0xb7341aec DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:398 recvmsgs: recvmsgs(0xb7341aec): Read 3436 bytes DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f5ac: Allocated new message, maxlen=844 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 844 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 824 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 28 03 2f 00 0a 00 01 00 94 10 3e 88 b1 31 00 00 (./.......>..1.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: a7 01 06 00 00 09 46 72 61 67 61 6e 69 6f 6c 01 ......Fraganiol. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 82 84 8b 96 0c 12 18 24 03 01 06 2a 01 00 32 ........$..._..2 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 30 48 60 6c 30 14 01 00 00 0f ac 02 01 00 00 .0Hl0.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 04 01 00 00 0f ac 02 00 00 2d 1a 6f 00 17 ...........-.o.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff ff ff 00 01 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 1f ff 07 18 00 3d 16 06 07 05 00 00 00 00 .......=........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a ...............J DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0e 14 00 0a 00 b4 00 c8 00 14 00 05 00 19 00 7f ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 01 00 00 00 00 00 00 00 bf 0c 30 79 9b 33 ea ...........0y.3. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 00 00 ea ff 00 00 c0 05 00 00 00 c0 ff dd 1e ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 90 4c 33 6e 00 17 ff ff ff 00 01 00 00 00 00 ..L3n........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 1f ff 07 18 00 dd 1a ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 90 4c 34 06 07 00 00 00 00 00 00 00 00 00 00 ..L4............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 dd 06 00 50 43 03 .............PC. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 .....P.....P.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 50 f2 02 01 00 00 50 f2 02 dd 18 00 50 f2 02 .P.....P.....P.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 01 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 ........'...BC^. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 62 32 2f 00 dd 91 00 50 f2 04 10 4a 00 01 10 10 b2/....P...J.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 44 00 01 02 10 3b 00 01 03 10 47 00 10 e0 2e 4f D....;....G....O DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: c8 49 d3 15 5a 1e 03 2b 84 3a e9 3e f8 10 21 00 .I..Z..+.:.>..!. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0c 4c 69 6e 6b 73 79 73 2c 20 4c 4c 43 10 23 00 .Linksys, LLC.#. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 09 57 52 54 31 39 30 30 41 43 10 24 00 09 57 52 .WRT1900AC.$..WR DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 54 31 39 30 30 41 43 10 42 00 0e 31 33 4a 31 30 T1900AC.B..13J10 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 36 30 41 34 30 30 36 39 35 10 54 00 08 00 06 00 60A400695.T..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 50 f2 04 00 01 10 11 00 09 46 72 61 67 61 6e 69 P........Fragani DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 6f 6c 10 08 00 02 20 0c 10 3c 00 01 01 10 49 00 ol.... ..<....I. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 37 2a 00 01 20 00 39 01 0b 00 00 09 46 72 ..7.. .9.....Fr DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 61 67 61 6e 69 6f 6c 01 08 82 84 8b 96 0c 12 18 aganiol......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 24 03 01 06 05 04 00 01 00 00 2a 01 00 32 04 30 $.........*..2.0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 48 60 6c 30 14 01 00 00 0f ac 02 01 00 00 0f ac Hl0............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 04 01 00 00 0f ac 02 00 00 2d 1a 6f 00 17 ff ff .........-.o.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 1f ff 07 18 00 3d 16 06 07 05 00 00 00 00 00 00 .....=.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 .............J.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 0a 00 b4 00 c8 00 14 00 05 00 19 00 7f 08 01 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 bf 0c 30 79 9b 33 ea ff 00 .........0y.3... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 ea ff 00 00 c0 05 00 00 00 c0 ff dd 1e 00 90 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 4c 33 6e 00 17 ff ff ff 00 01 00 00 00 00 00 00 L3n............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 1f ff 07 18 00 dd 1a 00 90 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 4c 34 06 07 00 00 00 00 00 00 00 00 00 00 00 00 L4.............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 dd 06 00 50 43 03 00 00 ...........PC... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 ...P.....P.....P DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: f2 02 01 00 00 50 f2 02 dd 18 00 50 f2 02 01 01 .....P.....P.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 80 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 ......'...BC^.b2 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2f 00 dd 1d 00 50 f2 04 10 4a 00 01 10 10 44 00 /....P...J....D. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 02 10 3c 00 01 01 10 49 00 06 00 37 2a 00 01 ...<....I...7_.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 20 00 00 00 0c 00 03 00 8a d1 06 44 ea 06 00 00 ..........D.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 04 00 64 00 00 00 06 00 05 00 31 04 00 00 ....d.......1... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 02 00 85 09 00 00 08 00 0a 00 86 06 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 07 00 e8 ea ff ff ........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734856c: Allocated new message, maxlen=436 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 436 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 416 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 90 01 2f 00 0a 00 01 00 d8 97 ba b3 ca 1a 00 00 ../............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: a2 00 06 00 00 0b 78 66 69 6e 69 74 79 77 69 66 ......xfinitywif DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 69 01 08 82 84 8b 96 8c 12 98 24 03 01 0b 07 06 i.........$..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 55 53 20 01 0b 1e 2a 01 00 32 04 b0 48 60 6c 2d US ..._..2..Hl- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 1a ad 01 1b ff ff ff 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 00 00 00 00 00 00 00 00 00 3d 16 0b 00 01 ...........=.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 4a 0e 14 00 0a 00 2c 01 c8 00 14 00 05 ...J.....,...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 19 00 7f 08 01 00 00 00 00 00 00 40 dd 18 00 ............@... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 50 f2 02 01 01 80 00 03 a4 00 00 27 a4 00 00 42 P..........'...B DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 43 5e 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 C^.b2/.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 7f 00 00 a8 00 0b 00 00 0b 78 66 69 6e 69 74 ..........xfinit DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 79 77 69 66 69 01 08 82 84 8b 96 8c 12 98 24 03 ywifi.........$. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 0b 05 04 00 01 00 00 07 06 55 53 20 01 0b 1e ..........US ... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 2a 01 00 32 04 b0 48 60 6c 2d 1a ad 01 1b ff ff *..2..Hl-...... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff 00 00 00 00 00 00 00 00 00 01 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 3d 16 0b 00 01 00 00 00 00 00 00 .....=.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 4a 0e 14 .............J.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 0a 00 2c 01 c8 00 14 00 05 00 19 00 7f 08 01 ...,............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 40 dd 18 00 50 f2 02 01 01 80 [email protected]..... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f .....'...BC^.b2/ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 dd 09 00 03 7f 01 01 00 00 ff 7f 0c 00 03 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: c8 c5 d0 70 b7 00 00 00 06 00 04 00 64 00 00 00 ...p........d... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 06 00 05 00 21 04 00 00 08 00 02 00 9e 09 00 00 ....!........... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 0a 00 9c 04 00 00 08 00 07 00 4c eb ff ff ............L... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:684 nl_msg_dump: --------------------------- END NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/nl.py:402 recvmsgs: recvmsgs(0xb7341aec): Processing valid message... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:204 nlmsg_alloc: msg 0xb734f56c: Allocated new message, maxlen=508 DBG<0>/usr/lib/python2.7/site-packages/libnl/handlers.py:109 nl_msg_in_handler_debug: -- Debug: Received Message: DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:674 nl_msg_dump: -------------------------- BEGIN NETLINK MESSAGE --------------------------- DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:676 nl_msg_dump: [NETLINK HEADER] 16 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:502 print_hdr: .nlmsg_len = 508 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:513 print_hdr: .type = 20 <0x14> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:514 print_hdr: .flags = 2 <MULTI> DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:515 print_hdr: .seq = 1440544975 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:516 print_hdr: .port = 880 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:527 print_genl_hdr: [GENERIC NETLINK HEADER] 4 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:528 print_genl_hdr: .cmd = 34 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:529 print_genl_hdr: .version = 1 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:530 print_genl_hdr: .unused = 0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:654 print_msg: [PAYLOAD] 488 octets DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 00 2e 00 98 03 00 00 08 00 03 00 03 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: d8 01 2f 00 0a 00 01 00 e8 94 f6 4b b4 ce 00 00 ../........K.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: e0 00 06 00 00 09 41 6d 6d 6f 64 79 74 65 73 01 ......Ammodytes. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 82 84 8b 96 0c 12 18 24 03 01 09 2a 01 00 30 ........$..._..0 DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 14 01 00 00 0f ac 04 01 00 00 0f ac 04 01 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 02 00 00 32 04 30 48 60 6c 2d 1a ef 11 1b .....2.0Hl-.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: ff ff 00 00 00 00 00 00 00 00 00 00 80 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 33 1a ef 11 1b ff ff 00 00 .......3........ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 80 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 3d 16 09 0f 06 00 00 00 00 00 00 00 00 ...=............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 34 16 09 0f 06 ...........4.... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 00 dd 16 00 50 f2 01 01 00 00 50 f2 04 01 ......P.....P... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 50 f2 04 01 00 00 50 f2 02 dd 18 00 50 f2 ..P.....P.....P. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 02 01 01 89 00 03 a4 00 00 27 a4 00 00 42 43 5e .........'...BC^ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 62 32 2f 00 dd 09 00 03 7f 01 01 00 00 ff 7f .b2/............ DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: b2 00 0b 00 00 09 41 6d 6d 6f 64 79 74 65 73 01 ......Ammodytes. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 08 82 84 8b 96 0c 12 18 24 03 01 09 05 04 00 01 ........$....... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 01 00 2a 01 00 30 14 01 00 00 0f ac 04 01 00 00 .._..0.......... DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f ac 04 01 00 00 0f ac 02 00 00 32 04 30 48 60 ...........2.0H` DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 6c 2d 1a ef 11 1b ff ff 00 00 00 00 00 00 00 00 l-.............. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 00 00 80 00 00 00 00 00 00 00 00 00 00 3d 16 09 .............=.. DBG<0>/usr/lib/python2.7/site-packages/libnl/msg.py:489 dump_hex: 0f 06 00 00 00 00 00 00 00 00

dclaffey avatar Oct 14 '15 14:10 dclaffey