Thomas Hermansson
Forum Replies Created
-
AuthorPosts
-
Thomas Hermansson
ParticipantDo you mean the lorawan_version device stuff? The doc is inconsistent with the “-x devices” or “-x device list json” lists, which don’t show any lorawan_version key for any device.
Also it’s a bit late to set the lorawan version per device *after* a device has joined – by then the JoinAccept has already been sent out.. Is there no way to get the lora-network-server to treat *all* joining devices as “modern” devices?
February 11, 2021 at 9:30 am in reply to: How to send a multicast msg through lora-network-server #31575Thomas Hermansson
ParticipantHi again Jason, I now have the latest mLinux5 with lora-network-server 2.4.4 and lora-query -x help does list these options now so I should be good ๐
But if I may ask, I’m a bit confused about the various app keys and crypto keys etc possible… In the session add we have this example:
example: session add ‘{“deveui”:”00-80-00-00-00-00-e1-9c”,”dev_addr”:”00112233″,”appeui”:”00-88-88-88-00-00-e1-9c”,”joineui”:”00-99-99-99-00-00-e1-9c”,”net_id”:”000017″,”app_senc_key”:”531bd9c5ec5d8ba5ef3b262cebfb3e66″,”fnwk_sint_key”:”531bd9c5ec5d8ba5ef3b262cebfb3e66″}’
fields: deveui, appeui, joineui, dev_addr, net_id, app_senc_key, fnwk_sint_key, multicast (B or C)In my end device (I use an STM32 with the Semtech lora stack), it seems I can set these parameters for a multicast reception:
if( address == curMulticastParams->Address ) {
multicast = 1;
nwkSKey = curMulticastParams->NwkSKey;
appSKey = curMulticastParams->AppSKey;
}So an address, which I assume maps to the fake “deveui” for the session, and two session keys – which I hope maps to one or more of the arguments above ๐ Maybe the app_senc_key, fnwk_sint_key pair?
Btw (and sorry for being a bit rusty on the lora security model as it was a year since I worked on this…) for the normal unicast I think we use “over the air” activation – have a hardcoded appkey and network address in the devices, and set these with matching values in the lora-network-server.conf on the gateway.
February 9, 2021 at 3:34 pm in reply to: How to send a multicast msg through lora-network-server #31574Thomas Hermansson
ParticipantHi Jason, thanks for this hint! I didn’t know lora-query and lora-network-server could do that (the documentation on the page you linked probably hasn’t been updated for many many years, it’s on 2.0.19 and I can’t see any multicast option in the session setup there). But I’ll certainly look for it in my version using the -x help option.
Running mLinux 4 and lora-network-server 2.2.30 currently (I tried to find the mLinux 5 factory-images for MTCDT, but they aren’t available yet so had to go with the older mLinux 4). Actually I’m starting to wonder if they never will come up as they are not there for any of the 5.xxx releases at http://www.multitech.net/mlinux/images/mtcdt/
January 3, 2018 at 1:37 pm in reply to: Simultaneous JOIN REQ => ACCEPT to more than one node? #22227Thomas Hermansson
ParticipantYes, some sort of higher-level protocol ping after the join would work, it’s just that radio bandwidth is so rare in some of these networks, that it’s a shame to have to do 2 extra packets for something that should have been included in the join handshake to begin with :/
Can the Multitech Conduit use separate appkeys for every node? In the .conf file there seem to be a network-wide AppKey.
Thomas Hermansson
ParticipantI am ashamed for my bad log reading skills. ๐
Thanks Jason!Thomas Hermansson
ParticipantHi Jason!
Yes we have solved the duplicated nonce error by upgrading the lora stack to a later version in our newer releases.
However even after a fresh start of the network server I see that some of the first join attempts that are made are considered to be “duplicated nonce”. See the following loong log. The failing joinreq is at the last 10 lines.
How is it possible that the join fails due to a duplicate token. I can not find it at all anywhere else in the log.
Kind Regards
Thomas20:36:11:106|INFO| LoRa Network Server started, version 1.0.43 20:36:11:114|INFO| Loaded default global_conf.json from /var/config/lora/ 20:36:11:125|WARNING| Setting for beacon interval not found. Beacon is disabled. 20:36:11:126|INFO| LoRa Card AP 1: MTAC-LORA-915 MTAC-LORA-1.0 20:36:11:126|INFO| LoRa Card AP 2: 20:36:11:130|INFO| Network Server Config --------------------- { "addressRange" : { "end" : "FF:FF:FF:FE", "start" : "00:00:00:01" }, "db" : "/var/config/lora/lora-network-server.db", "log" : { "console" : false, "level" : 100, "path" : "/var/log/lora-network-server.log", "syslog" : false }, "lora" : { "ADRStep" : 30, "beaconDelay" : 0, "beaconInterval" : 0, "beaconPower" : 27, "dutyCyclePeriod" : 60, "eui_1" : "00:80:00:00:A0:00:03:89", "frequencyBand" : "US915", "frequencySubBand" : 1, "joinByteOrder" : "LSB", "joinDelay" : 5, "lbtEnabled" : false, "lbtScanTime" : 5000, "lbtSxOffset" : -4, "maxDatarate" : null, "maxDatarateEU" : 5, "maxDatarateUS" : 4, "maxTxPower" : 26, "minDatarate" : null, "minDatarateEU" : 0, "minDatarateUS" : 0, "netID" : "010203", "nodeQueueSize" : 200, "rx1DatarateOffset" : 0, "rx1Delay" : 1, "rx2Datarate" : 8, "rx2Frequency" : 923300000, "sxOffset" : -162 }, "mqtt" : { "enabled" : true }, "network" : { "eui" : "fa2a54729c8acb3b", "key" : "55334f48ad122be413518a051ad3c462", "leasetime" : 0, "public" : true }, "test" : { "disableDutyCycle" : false, "disableRxJoin1" : false, "disableRxJoin2" : false, "disableRxWindow1" : false, "disableRxWindow2" : false }, "udp" : { "appPortDown" : 1786, "appPortUp" : 1784, "downstreamPort" : 1782, "upstreamPort" : 1780 }, "whitelist" : null } 20:36:11:130|INFO| ------------------------------------------- 20:36:11:130|INFO| Nodes leases will not expire. 20:36:11:131|TRACE| Connect to db 20:36:11:131|DEBUG| Open db in /var/run/lora/lora-network-server.db 20:36:11:135|DEBUG| Load db /var/config/lora/lora-network-server.db into /var/run/lora/lora-network-server.db 20:36:11:138|INFO| DB loading... 20:36:11:166|INFO| Database version: 6 20:36:11:166|INFO| Latest version: 6 20:36:11:168|DEBUG| NC Read 20:36:11:171|TRACE| Connect to MQTT 20:36:11:232|TRACE| Start Command Thread 20:36:11:233|TRACE| Initialize Lists 20:36:11:238|TRACE| MQTT - connected with server 20:36:11:241|TRACE| MQTT - subscribed id: 1 qos_count: 1 granted_qos: 2 20:36:11:257|DEBUG| load node class C authkey: 5fdcd1372a8301c46b42457401e5c88d 20:36:11:258|DEBUG| load node class C authkey: 755024231a61476bd26e67d7716acb1a 20:36:11:259|DEBUG| load node class C authkey: 7d6b5d332afb60c95dc481a75574c4d6 20:36:11:260|DEBUG| load node class C authkey: 56bd8f79cd49467653e4b08ebc18150a 20:36:11:261|DEBUG| load node class C authkey: 190b312f37931704a52f88e162c98e45 20:36:11:262|DEBUG| load node class C authkey: 95c010befe97406f3712295dece08f01 20:36:11:264|DEBUG| load node class C authkey: 4ad6119750528159e6fe9727066f0bd2 20:36:11:265|DEBUG| load node class C authkey: 3cc6b7805f78e8b75eba929064084448 20:36:11:266|DEBUG| load node class C authkey: de8baf9a719932db53cfb9ecbc2cc462 20:36:11:267|DEBUG| load node class C authkey: 0d998b9d64faa71ef13f4a556eaf1239 20:36:11:268|DEBUG| load node class C authkey: 0a56f831decf30b3940a07f857d8529d 20:36:11:269|DEBUG| load node class C authkey: 1769b03fd043a840c10c2a7f50dc88c1 20:36:11:270|DEBUG| load node class C authkey: f7a402ca90372a75c376eb5b90907dae 20:36:11:271|DEBUG| load node class C authkey: f8e6ee4e2c7dde3ad9c80fdf2edeb4bb 20:36:11:272|DEBUG| load node class C authkey: 75e3fb66aa1c077a01714f131f33a5f4 20:36:11:273|DEBUG| load node class C authkey: 98bf34e7b484543c8b2051b8baf86c58 20:36:11:274|DEBUG| load node class C authkey: eabdc74de88baea4401280a09112ec8d 20:36:11:275|DEBUG| load node class C authkey: ced6e9896d2c1f60278c4e6697c992f8 20:36:11:276|DEBUG| load node class C authkey: f1e4e63fded2df13a3dc4264fa49558b 20:36:11:280|DEBUG| load node class C authkey: 68dbb5ec9c067b89d0b3356c938e44c9 20:36:11:281|INFO| ED:18-43-4b-4b-3c-b2-5b-20|QUEUE-TX|DATA SIZE: 40 20:36:11:283|TRACE| ED:18-43-4b-4b-3c-b2-5b-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:285|DEBUG| Node '03-43-4B-4B-44-33-62-20' is not available 20:36:11:288|DEBUG| load node class C authkey: 5fea47573a3e6258bac68fe1d93d62eb 20:36:11:289|DEBUG| load node class C authkey: 797b168fe53ebc37409e20073af18616 20:36:11:290|DEBUG| load node class C authkey: f986de70bf0656f495abf94b3ad1c8a6 20:36:11:291|DEBUG| load node class C authkey: 325f262819ee76fe6d4a5ad580841a32 20:36:11:292|DEBUG| load node class C authkey: 5ef94d019645436b4b3bbf7041c59814 20:36:11:293|DEBUG| load node class C authkey: 04fdadefe8a32a6b35deecff6c58e272 20:36:11:295|DEBUG| load node class C authkey: e88f66474c11b84161f034c173a24c8d 20:36:11:296|DEBUG| load node class C authkey: 47510fdcf0d805064a6e3a69ee1734da 20:36:11:297|DEBUG| load node class C authkey: 07f37a9de4fce0b122d048e48e1ef46c 20:36:11:298|TRACE| ED:03-43-4b-4b-44-33-62-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:300|INFO| ED:18-43-4b-4b-37-32-4b-20|QUEUE-TX|DATA SIZE: 21 20:36:11:302|TRACE| ED:18-43-4b-4b-37-32-4b-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:304|TRACE| ED:18-43-4b-4b-3f-b2-44-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:306|INFO| ED:18-43-4b-4b-3f-b2-44-20|QUEUE-TX|DATA SIZE: 46 20:36:11:308|DEBUG| load node class C authkey: 8071aadaae5ab05e625343997cfb9f5a 20:36:11:309|DEBUG| load node class C authkey: 5804f296ed793ec86e5a7454128a693a 20:36:11:310|DEBUG| load node class C authkey: c43301c774e0d251e14a49340ca77efc 20:36:11:311|DEBUG| load node class C authkey: e5a8fa9c2e48eda42235ad8991e80852 20:36:11:312|DEBUG| load node class C authkey: ce8d700c0e581e298f9a5412e38abc24 20:36:11:313|DEBUG| load node class C authkey: c862a22ed3878c358091405e5df414d9 20:36:11:314|DEBUG| load node class C authkey: fe2438f8f8b1e52c432971813d944bba 20:36:11:315|DEBUG| load node class C authkey: 03b709ff256e75904f361d94fb172a12 20:36:11:316|DEBUG| load node class C authkey: a412fcfbe45aba4ebf8c6034c2fbe189 20:36:11:320|TRACE| ED:18-43-4b-4b-39-b2-40-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:322|INFO| ED:18-43-4b-4b-39-b2-40-20|QUEUE-TX|DATA SIZE: 19 20:36:11:324|TRACE| ED:03-43-4b-4b-53-33-3e-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:326|INFO| ED:03-43-4b-4b-53-33-3e-20|QUEUE-TX|DATA SIZE: 19 20:36:11:327|TRACE| Testing Upstream UDP Port 20:36:11:328|TRACE| Start Command Receive thread 20:36:11:329|TRACE| Start Time thread 20:36:11:329|TRACE| Start Db Backup thread 20:36:11:330|TRACE| Start Mqtt thread 20:36:11:330|TRACE| Start Beacon thread 20:36:11:331|TRACE| Start appData thread 20:36:11:332|TRACE| Start GatewayDownstreamReceive thread 20:36:11:332|TRACE| Start GatewayReceive thread 20:36:11:333|DEBUG| AppData thread started 20:36:11:335|INFO| Beacon is disabled 20:36:11:339|INFO| ED:18-43-4b-4b-39-b2-44-20|QUEUE-TX|DATA SIZE: 46 20:36:11:341|TRACE| ED:18-43-4b-4b-39-b2-44-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:344|INFO| ED:18-43-4b-4b-4a-32-4a-20|QUEUE-TX|DATA SIZE: 46 20:36:11:346|TRACE| ED:18-43-4b-4b-4a-32-4a-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:348|INFO| ED:18-43-4b-4b-5b-32-4c-20|QUEUE-TX|DATA SIZE: 40 20:36:11:350|TRACE| ED:18-43-4b-4b-5b-32-4c-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:353|TRACE| ED:18-43-4b-4b-5b-32-50-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:355|INFO| ED:18-43-4b-4b-5b-32-50-20|QUEUE-TX|DATA SIZE: 34 20:36:11:356|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:358|DEBUG| Schedule Class C downlink packet 20:36:11:358|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:359|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:359|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:359|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:359|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:360|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:360|TRACE| ED:18-43-4b-4b-3b-32-63-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:362|TRACE| ED:03-43-4b-4b-39-b3-3b-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:364|INFO| ED:03-43-4b-4b-39-b3-3b-20|QUEUE-TX|DATA SIZE: 40 20:36:11:367|TRACE| ED:18-43-4b-4b-37-32-60-20|QUEUE-CLEAR|Downstream queue cleared 20:36:11:369|INFO| ED:18-43-4b-4b-37-32-60-20|QUEUE-TX|DATA SIZE: 34 20:36:11:377|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:377|DEBUG| Schedule Class C downlink packet 20:36:11:398|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:399|DEBUG| Schedule Class C downlink packet 20:36:11:409|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:409|DEBUG| Schedule Class C downlink packet 20:36:11:410|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:410|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:410|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:410|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:411|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:411|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:452|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:452|DEBUG| Schedule Class C downlink packet 20:36:11:452|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:453|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:453|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:494|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:494|DEBUG| Schedule Class C downlink packet 20:36:11:626|DEBUG| pull port unknown, cannot transmit 20:36:11:626|WARNING| Unschedule frame 20:36:11:641|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:641|DEBUG| Schedule Class C downlink packet 20:36:11:662|DEBUG| pull port unknown, cannot transmit 20:36:11:662|WARNING| Unschedule frame 20:36:11:686|DEBUG| pull port unknown, cannot transmit 20:36:11:686|WARNING| Unschedule frame 20:36:11:699|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:700|DEBUG| Schedule Class C downlink packet 20:36:11:700|DEBUG| pull port unknown, cannot transmit 20:36:11:700|WARNING| Unschedule frame 20:36:11:734|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:734|DEBUG| Schedule Class C downlink packet 20:36:11:734|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:735|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:735|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:745|DEBUG| pull port unknown, cannot transmit 20:36:11:746|WARNING| Unschedule frame 20:36:11:779|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:779|DEBUG| Schedule Class C downlink packet 20:36:11:780|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:780|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:780|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:791|DEBUG| pull port unknown, cannot transmit 20:36:11:791|WARNING| Unschedule frame 20:36:11:825|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:825|DEBUG| Schedule Class C downlink packet 20:36:11:826|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:826|TRACE| TransmitQueue found conflicting item: 0 0 20:36:11:826|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:11:867|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:867|DEBUG| Schedule Class C downlink packet 20:36:11:949|DEBUG| pull port unknown, cannot transmit 20:36:11:949|WARNING| Unschedule frame 20:36:11:982|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:11:983|DEBUG| Schedule Class C downlink packet 20:36:12:13|DEBUG| pull port unknown, cannot transmit 20:36:12:14|WARNING| Unschedule frame 20:36:12:38|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:38|DEBUG| Schedule Class C downlink packet 20:36:12:48|DEBUG| pull port unknown, cannot transmit 20:36:12:49|WARNING| Unschedule frame 20:36:12:62|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:62|DEBUG| Schedule Class C downlink packet 20:36:12:104|DEBUG| pull port unknown, cannot transmit 20:36:12:104|WARNING| Unschedule frame 20:36:12:148|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:148|DEBUG| Schedule Class C downlink packet 20:36:12:149|DEBUG| pull port unknown, cannot transmit 20:36:12:149|WARNING| Unschedule frame 20:36:12:192|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:193|DEBUG| Schedule Class C downlink packet 20:36:12:203|DEBUG| pull port unknown, cannot transmit 20:36:12:203|WARNING| Unschedule frame 20:36:12:237|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:237|DEBUG| Schedule Class C downlink packet 20:36:12:319|DEBUG| pull port unknown, cannot transmit 20:36:12:319|WARNING| Unschedule frame 20:36:12:352|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:353|DEBUG| Schedule Class C downlink packet 20:36:12:383|DEBUG| pull port unknown, cannot transmit 20:36:12:383|WARNING| Unschedule frame 20:36:12:407|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:407|DEBUG| Schedule Class C downlink packet 20:36:12:408|DEBUG| pull port unknown, cannot transmit 20:36:12:408|WARNING| Unschedule frame 20:36:12:431|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:432|DEBUG| Schedule Class C downlink packet 20:36:12:452|DEBUG| pull port unknown, cannot transmit 20:36:12:453|WARNING| Unschedule frame 20:36:12:456|DEBUG| pull port unknown, cannot transmit 20:36:12:456|WARNING| Unschedule frame 20:36:12:479|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:480|DEBUG| Schedule Class C downlink packet 20:36:12:490|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:490|DEBUG| Schedule Class C downlink packet 20:36:12:501|DEBUG| pull port unknown, cannot transmit 20:36:12:501|WARNING| Unschedule frame 20:36:12:535|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:535|DEBUG| Schedule Class C downlink packet 20:36:12:616|DEBUG| pull port unknown, cannot transmit 20:36:12:617|WARNING| Unschedule frame 20:36:12:640|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:640|DEBUG| Schedule Class C downlink packet 20:36:12:681|DEBUG| pull port unknown, cannot transmit 20:36:12:681|WARNING| Unschedule frame 20:36:12:695|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:695|DEBUG| Schedule Class C downlink packet 20:36:12:706|DEBUG| pull port unknown, cannot transmit 20:36:12:706|WARNING| Unschedule frame 20:36:12:729|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:730|DEBUG| Schedule Class C downlink packet 20:36:12:760|DEBUG| pull port unknown, cannot transmit 20:36:12:761|WARNING| Unschedule frame 20:36:12:774|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:774|DEBUG| Schedule Class C downlink packet 20:36:12:775|DEBUG| pull port unknown, cannot transmit 20:36:12:775|WARNING| Unschedule frame 20:36:12:819|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:819|DEBUG| Schedule Class C downlink packet 20:36:12:830|DEBUG| pull port unknown, cannot transmit 20:36:12:830|WARNING| Unschedule frame 20:36:12:863|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:864|DEBUG| Schedule Class C downlink packet 20:36:12:935|DEBUG| pull port unknown, cannot transmit 20:36:12:935|WARNING| Unschedule frame 20:36:12:979|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:12:979|DEBUG| Schedule Class C downlink packet 20:36:13:0|DEBUG| pull port unknown, cannot transmit 20:36:13:1|WARNING| Unschedule frame 20:36:13:34|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:34|DEBUG| Schedule Class C downlink packet 20:36:13:35|DEBUG| pull port unknown, cannot transmit 20:36:13:35|WARNING| Unschedule frame 20:36:13:60|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:60|DEBUG| Schedule Class C downlink packet 20:36:13:91|DEBUG| pull port unknown, cannot transmit 20:36:13:91|WARNING| Unschedule frame 20:36:13:105|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:105|DEBUG| Schedule Class C downlink packet 20:36:13:136|DEBUG| pull port unknown, cannot transmit 20:36:13:136|WARNING| Unschedule frame 20:36:13:180|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:180|DEBUG| Schedule Class C downlink packet 20:36:13:211|DEBUG| pull port unknown, cannot transmit 20:36:13:212|WARNING| Unschedule frame 20:36:13:226|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:227|DEBUG| Schedule Class C downlink packet 20:36:13:446|DEBUG| pull port unknown, cannot transmit 20:36:13:447|WARNING| Unschedule frame 20:36:13:490|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:491|DEBUG| Schedule Class C downlink packet 20:36:13:511|DEBUG| pull port unknown, cannot transmit 20:36:13:512|WARNING| Unschedule frame 20:36:13:535|DEBUG| pull port unknown, cannot transmit 20:36:13:535|WARNING| Unschedule frame 20:36:13:549|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:549|DEBUG| Schedule Class C downlink packet 20:36:13:570|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:570|DEBUG| Schedule Class C downlink packet 20:36:13:591|DEBUG| pull port unknown, cannot transmit 20:36:13:591|WARNING| Unschedule frame 20:36:13:624|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:625|DEBUG| Schedule Class C downlink packet 20:36:13:666|DEBUG| pull port unknown, cannot transmit 20:36:13:666|WARNING| Unschedule frame 20:36:13:689|DEBUG| pull port unknown, cannot transmit 20:36:13:690|WARNING| Unschedule frame 20:36:13:713|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:713|DEBUG| Schedule Class C downlink packet 20:36:13:714|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:714|TRACE| TransmitQueue found conflicting item: 0 0 20:36:13:714|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:13:755|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:755|DEBUG| Schedule Class C downlink packet 20:36:13:756|DEBUG| pull port unknown, cannot transmit 20:36:13:756|WARNING| Unschedule frame 20:36:13:790|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:790|DEBUG| Schedule Class C downlink packet 20:36:13:811|DEBUG| pull port unknown, cannot transmit 20:36:13:811|WARNING| Unschedule frame 20:36:13:844|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:845|DEBUG| Schedule Class C downlink packet 20:36:13:845|DEBUG| pull port unknown, cannot transmit 20:36:13:845|WARNING| Unschedule frame 20:36:13:871|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:873|DEBUG| Schedule Class C downlink packet 20:36:13:908|DEBUG| pull port unknown, cannot transmit 20:36:13:908|WARNING| Unschedule frame 20:36:13:964|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:13:965|DEBUG| Schedule Class C downlink packet 20:36:14:71|DEBUG| pull port unknown, cannot transmit 20:36:14:72|WARNING| Unschedule frame 20:36:14:143|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:143|DEBUG| Schedule Class C downlink packet 20:36:14:143|DEBUG| pull port unknown, cannot transmit 20:36:14:143|WARNING| Unschedule frame 20:36:14:199|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:199|DEBUG| Schedule Class C downlink packet 20:36:14:203|DEBUG| pull port unknown, cannot transmit 20:36:14:203|WARNING| Unschedule frame 20:36:14:287|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:288|DEBUG| Schedule Class C downlink packet 20:36:14:308|DEBUG| pull port unknown, cannot transmit 20:36:14:309|WARNING| Unschedule frame 20:36:14:343|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:344|DEBUG| Schedule Class C downlink packet 20:36:14:344|DEBUG| pull port unknown, cannot transmit 20:36:14:345|WARNING| Unschedule frame 20:36:14:372|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:373|DEBUG| Schedule Class C downlink packet 20:36:14:444|DEBUG| pull port unknown, cannot transmit 20:36:14:444|WARNING| Unschedule frame 20:36:14:458|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:458|DEBUG| Schedule Class C downlink packet 20:36:14:631|DEBUG| pull port unknown, cannot transmit 20:36:14:631|WARNING| Unschedule frame 20:36:14:664|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:665|DEBUG| Schedule Class C downlink packet 20:36:14:685|DEBUG| pull port unknown, cannot transmit 20:36:14:686|WARNING| Unschedule frame 20:36:14:709|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:709|DEBUG| Schedule Class C downlink packet 20:36:14:781|DEBUG| pull port unknown, cannot transmit 20:36:14:781|WARNING| Unschedule frame 20:36:14:814|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:815|DEBUG| Schedule Class C downlink packet 20:36:14:846|DEBUG| pull port unknown, cannot transmit 20:36:14:846|WARNING| Unschedule frame 20:36:14:869|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:870|DEBUG| Schedule Class C downlink packet 20:36:14:880|DEBUG| pull port unknown, cannot transmit 20:36:14:880|WARNING| Unschedule frame 20:36:14:904|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:904|DEBUG| Schedule Class C downlink packet 20:36:14:945|DEBUG| pull port unknown, cannot transmit 20:36:14:945|WARNING| Unschedule frame 20:36:14:949|DEBUG| pull port unknown, cannot transmit 20:36:14:949|WARNING| Unschedule frame 20:36:14:972|DEBUG| pull port unknown, cannot transmit 20:36:14:973|WARNING| Unschedule frame 20:36:14:996|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:996|DEBUG| Schedule Class C downlink packet 20:36:14:997|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:997|TRACE| TransmitQueue found conflicting item: 0 0 20:36:14:997|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:14:998|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:14:998|TRACE| TransmitQueue found conflicting item: 0 0 20:36:14:998|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:15:39|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:39|DEBUG| Schedule Class C downlink packet 20:36:15:40|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:40|TRACE| TransmitQueue found conflicting item: 0 0 20:36:15:40|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:15:81|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:81|DEBUG| Schedule Class C downlink packet 20:36:15:82|DEBUG| pull port unknown, cannot transmit 20:36:15:82|WARNING| Unschedule frame 20:36:15:115|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:116|DEBUG| Schedule Class C downlink packet 20:36:15:146|DEBUG| pull port unknown, cannot transmit 20:36:15:147|WARNING| Unschedule frame 20:36:15:170|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:171|DEBUG| Schedule Class C downlink packet 20:36:15:181|DEBUG| pull port unknown, cannot transmit 20:36:15:181|WARNING| Unschedule frame 20:36:15:194|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:195|DEBUG| Schedule Class C downlink packet 20:36:15:286|DEBUG| pull port unknown, cannot transmit 20:36:15:287|WARNING| Unschedule frame 20:36:15:320|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:321|DEBUG| Schedule Class C downlink packet 20:36:15:331|DEBUG| pull port unknown, cannot transmit 20:36:15:331|WARNING| Unschedule frame 20:36:15:365|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:365|DEBUG| Schedule Class C downlink packet 20:36:15:376|DEBUG| pull port unknown, cannot transmit 20:36:15:376|WARNING| Unschedule frame 20:36:15:410|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:410|DEBUG| Schedule Class C downlink packet 20:36:15:410|DEBUG| pull port unknown, cannot transmit 20:36:15:411|WARNING| Unschedule frame 20:36:15:444|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:444|DEBUG| Schedule Class C downlink packet 20:36:15:475|DEBUG| pull port unknown, cannot transmit 20:36:15:476|WARNING| Unschedule frame 20:36:15:499|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:499|DEBUG| Schedule Class C downlink packet 20:36:15:500|DEBUG| pull port unknown, cannot transmit 20:36:15:500|WARNING| Unschedule frame 20:36:15:533|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:534|DEBUG| Schedule Class C downlink packet 20:36:15:635|DEBUG| pull port unknown, cannot transmit 20:36:15:636|WARNING| Unschedule frame 20:36:15:659|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:659|DEBUG| Schedule Class C downlink packet 20:36:15:680|DEBUG| pull port unknown, cannot transmit 20:36:15:680|WARNING| Unschedule frame 20:36:15:704|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:704|DEBUG| Schedule Class C downlink packet 20:36:15:735|DEBUG| pull port unknown, cannot transmit 20:36:15:735|WARNING| Unschedule frame 20:36:15:748|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:749|DEBUG| Schedule Class C downlink packet 20:36:15:769|DEBUG| pull port unknown, cannot transmit 20:36:15:770|WARNING| Unschedule frame 20:36:15:783|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:783|DEBUG| Schedule Class C downlink packet 20:36:15:834|DEBUG| pull port unknown, cannot transmit 20:36:15:835|WARNING| Unschedule frame 20:36:15:868|DEBUG| pull port unknown, cannot transmit 20:36:15:869|WARNING| Unschedule frame 20:36:15:882|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:882|DEBUG| Schedule Class C downlink packet 20:36:15:903|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:15:903|DEBUG| Schedule Class C downlink packet 20:36:16:4|DEBUG| pull port unknown, cannot transmit 20:36:16:5|WARNING| Unschedule frame 20:36:16:28|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:29|DEBUG| Schedule Class C downlink packet 20:36:16:39|DEBUG| pull port unknown, cannot transmit 20:36:16:39|WARNING| Unschedule frame 20:36:16:42|DEBUG| pull port unknown, cannot transmit 20:36:16:43|WARNING| Unschedule frame 20:36:16:46|DEBUG| pull port unknown, cannot transmit 20:36:16:46|WARNING| Unschedule frame 20:36:16:69|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:70|DEBUG| Schedule Class C downlink packet 20:36:16:80|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:81|DEBUG| Schedule Class C downlink packet 20:36:16:81|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:81|TRACE| TransmitQueue found conflicting item: 0 0 20:36:16:82|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:16:122|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:123|DEBUG| Schedule Class C downlink packet 20:36:16:153|DEBUG| pull port unknown, cannot transmit 20:36:16:154|WARNING| Unschedule frame 20:36:16:167|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:167|DEBUG| Schedule Class C downlink packet 20:36:16:178|DEBUG| pull port unknown, cannot transmit 20:36:16:178|WARNING| Unschedule frame 20:36:16:201|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:202|DEBUG| Schedule Class C downlink packet 20:36:16:303|DEBUG| pull port unknown, cannot transmit 20:36:16:304|WARNING| Unschedule frame 20:36:16:317|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:317|DEBUG| Schedule Class C downlink packet 20:36:16:348|DEBUG| pull port unknown, cannot transmit 20:36:16:348|WARNING| Unschedule frame 20:36:16:361|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:362|DEBUG| Schedule Class C downlink packet 20:36:16:372|DEBUG| pull port unknown, cannot transmit 20:36:16:373|WARNING| Unschedule frame 20:36:16:406|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:406|DEBUG| Schedule Class C downlink packet 20:36:16:417|DEBUG| pull port unknown, cannot transmit 20:36:16:417|WARNING| Unschedule frame 20:36:16:451|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:451|DEBUG| Schedule Class C downlink packet 20:36:16:461|DEBUG| pull port unknown, cannot transmit 20:36:16:462|WARNING| Unschedule frame 20:36:16:505|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:506|DEBUG| Schedule Class C downlink packet 20:36:16:506|DEBUG| pull port unknown, cannot transmit 20:36:16:506|WARNING| Unschedule frame 20:36:16:530|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:530|DEBUG| Schedule Class C downlink packet 20:36:16:622|DEBUG| pull port unknown, cannot transmit 20:36:16:622|WARNING| Unschedule frame 20:36:16:656|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:656|DEBUG| Schedule Class C downlink packet 20:36:16:677|DEBUG| pull port unknown, cannot transmit 20:36:16:677|WARNING| Unschedule frame 20:36:16:690|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:691|DEBUG| Schedule Class C downlink packet 20:36:16:721|DEBUG| pull port unknown, cannot transmit 20:36:16:722|WARNING| Unschedule frame 20:36:16:745|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:745|DEBUG| Schedule Class C downlink packet 20:36:16:776|DEBUG| pull port unknown, cannot transmit 20:36:16:776|WARNING| Unschedule frame 20:36:16:790|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:790|DEBUG| Schedule Class C downlink packet 20:36:16:831|DEBUG| pull port unknown, cannot transmit 20:36:16:831|WARNING| Unschedule frame 20:36:16:865|DEBUG| pull port unknown, cannot transmit 20:36:16:865|WARNING| Unschedule frame 20:36:16:878|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:879|DEBUG| Schedule Class C downlink packet 20:36:16:899|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:16:900|DEBUG| Schedule Class C downlink packet 20:36:16:991|DEBUG| pull port unknown, cannot transmit 20:36:16:992|WARNING| Unschedule frame 20:36:17:25|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:25|DEBUG| Schedule Class C downlink packet 20:36:17:36|DEBUG| pull port unknown, cannot transmit 20:36:17:36|WARNING| Unschedule frame 20:36:17:70|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:70|DEBUG| Schedule Class C downlink packet 20:36:17:91|DEBUG| pull port unknown, cannot transmit 20:36:17:91|WARNING| Unschedule frame 20:36:17:114|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:115|DEBUG| Schedule Class C downlink packet 20:36:17:135|DEBUG| pull port unknown, cannot transmit 20:36:17:136|WARNING| Unschedule frame 20:36:17:139|DEBUG| pull port unknown, cannot transmit 20:36:17:139|WARNING| Unschedule frame 20:36:17:162|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:163|DEBUG| Schedule Class C downlink packet 20:36:17:163|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:163|TRACE| TransmitQueue found conflicting item: 0 0 20:36:17:164|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:17:164|DEBUG| pull port unknown, cannot transmit 20:36:17:164|WARNING| Unschedule frame 20:36:17:198|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:198|DEBUG| Schedule Class C downlink packet 20:36:17:208|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:209|TRACE| TransmitQueue found conflicting item: 0 0 20:36:17:209|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:17:250|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:250|DEBUG| Schedule Class C downlink packet 20:36:17:291|DEBUG| pull port unknown, cannot transmit 20:36:17:292|WARNING| Unschedule frame 20:36:17:326|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:327|DEBUG| Schedule Class C downlink packet 20:36:17:348|DEBUG| pull port unknown, cannot transmit 20:36:17:348|WARNING| Unschedule frame 20:36:17:362|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:362|DEBUG| Schedule Class C downlink packet 20:36:17:400|DEBUG| pull port unknown, cannot transmit 20:36:17:400|WARNING| Unschedule frame 20:36:17:457|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:457|DEBUG| Schedule Class C downlink packet 20:36:17:490|DEBUG| pull port unknown, cannot transmit 20:36:17:490|WARNING| Unschedule frame 20:36:17:504|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:504|DEBUG| Schedule Class C downlink packet 20:36:17:536|DEBUG| pull port unknown, cannot transmit 20:36:17:536|WARNING| Unschedule frame 20:36:17:677|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:678|DEBUG| Schedule Class C downlink packet 20:36:17:699|DEBUG| pull port unknown, cannot transmit 20:36:17:699|WARNING| Unschedule frame 20:36:17:733|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:734|DEBUG| Schedule Class C downlink packet 20:36:17:786|DEBUG| pull port unknown, cannot transmit 20:36:17:786|WARNING| Unschedule frame 20:36:17:820|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:822|DEBUG| Schedule Class C downlink packet 20:36:17:833|DEBUG| pull port unknown, cannot transmit 20:36:17:833|WARNING| Unschedule frame 20:36:17:877|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:880|DEBUG| Schedule Class C downlink packet 20:36:17:959|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PULL-DATA|127.0.0.1:45680 20:36:17:961|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:17:965|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:17:965|INFO| TransmitQueue find 2157640 2157687 20:36:17:966|INFO| TransmitQueue cannot increase duration 20:36:17:966|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:17:966|WARNING| Unschedule frame 20:36:17:984|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:17:986|DEBUG| Schedule Class C downlink packet 20:36:18:18|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:18:22|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:18:23|INFO| TransmitQueue find 2157687 2157860 20:36:18:25|INFO| TransmitQueue cannot increase duration 20:36:18:26|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:18:26|WARNING| Unschedule frame 20:36:18:42|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:42|DEBUG| Schedule Class C downlink packet 20:36:18:224|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:18:230|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:18:230|INFO| TransmitQueue find 2157860 2157917 20:36:18:230|INFO| TransmitQueue cannot increase duration 20:36:18:231|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:18:231|WARNING| Unschedule frame 20:36:18:245|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:246|DEBUG| Schedule Class C downlink packet 20:36:18:287|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:18:291|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:18:291|INFO| TransmitQueue find 2157917 2158005 20:36:18:291|INFO| TransmitQueue cannot increase duration 20:36:18:292|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:18:292|WARNING| Unschedule frame 20:36:18:305|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:306|DEBUG| Schedule Class C downlink packet 20:36:18:392|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:18:400|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:18:400|INFO| TransmitQueue find 2158005 2158062 20:36:18:401|INFO| TransmitQueue cannot increase duration 20:36:18:401|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:18:401|WARNING| Unschedule frame 20:36:18:426|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:426|DEBUG| Schedule Class C downlink packet 20:36:18:468|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:18:472|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:18:473|INFO| TransmitQueue find 2158062 2158168 20:36:18:473|INFO| TransmitQueue cannot increase duration 20:36:18:474|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:18:474|WARNING| Unschedule frame 20:36:18:482|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:18:486|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:18:486|INFO| TransmitQueue find 2158168 2158225 20:36:18:486|INFO| TransmitQueue cannot increase duration 20:36:18:487|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:18:487|WARNING| Unschedule frame 20:36:18:496|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:18:500|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:18:500|INFO| TransmitQueue find 2158225 2158428 20:36:18:501|INFO| TransmitQueue cannot increase duration 20:36:18:501|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:18:501|WARNING| Unschedule frame 20:36:18:515|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:516|DEBUG| Schedule Class C downlink packet 20:36:18:516|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:517|TRACE| TransmitQueue found conflicting item: 0 0 20:36:18:517|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:18:538|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:18:542|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:18:543|INFO| TransmitQueue find 2158428 2158488 20:36:18:543|INFO| TransmitQueue cannot increase duration 20:36:18:544|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:18:544|WARNING| Unschedule frame 20:36:18:563|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:564|DEBUG| Schedule Class C downlink packet 20:36:18:564|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:566|TRACE| TransmitQueue found conflicting item: 0 0 20:36:18:566|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:18:578|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:578|DEBUG| Schedule Class C downlink packet 20:36:18:612|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:613|DEBUG| Schedule Class C downlink packet 20:36:18:624|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:18:628|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:18:629|INFO| TransmitQueue find 2158488 2158609 20:36:18:629|INFO| TransmitQueue cannot increase duration 20:36:18:629|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:18:630|WARNING| Unschedule frame 20:36:18:678|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:679|DEBUG| Schedule Class C downlink packet 20:36:18:763|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:18:767|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:18:768|INFO| TransmitQueue find 2158609 2158699 20:36:18:768|INFO| TransmitQueue cannot increase duration 20:36:18:769|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:18:769|WARNING| Unschedule frame 20:36:18:799|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:799|DEBUG| Schedule Class C downlink packet 20:36:18:874|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:18:878|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:18:878|INFO| TransmitQueue find 2158699 2158746 20:36:18:878|INFO| TransmitQueue cannot increase duration 20:36:18:879|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:18:879|WARNING| Unschedule frame 20:36:18:893|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:894|DEBUG| Schedule Class C downlink packet 20:36:18:938|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:18:946|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:18:946|INFO| TransmitQueue find 2158746 2158761 20:36:18:947|INFO| TransmitQueue cannot increase duration 20:36:18:947|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:18:947|WARNING| Unschedule frame 20:36:18:973|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:18:976|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:18:977|INFO| TransmitQueue find 2158761 2158795 20:36:18:978|INFO| TransmitQueue cannot increase duration 20:36:18:978|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:18:978|WARNING| Unschedule frame 20:36:18:998|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:18:998|DEBUG| Schedule Class C downlink packet 20:36:19:11|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:12|DEBUG| Schedule Class C downlink packet 20:36:19:28|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:19:32|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:19:33|INFO| TransmitQueue find 2158795 2158861 20:36:19:33|INFO| TransmitQueue cannot increase duration 20:36:19:33|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:19:34|WARNING| Unschedule frame 20:36:19:58|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:59|DEBUG| Schedule Class C downlink packet 20:36:19:113|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:19:117|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:19:118|INFO| TransmitQueue find 2158861 2158982 20:36:19:118|INFO| TransmitQueue cannot increase duration 20:36:19:119|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:19:119|WARNING| Unschedule frame 20:36:19:174|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:175|DEBUG| Schedule Class C downlink packet 20:36:19:258|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:19:262|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:19:262|INFO| TransmitQueue find 2158982 2159076 20:36:19:262|INFO| TransmitQueue cannot increase duration 20:36:19:263|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:19:263|WARNING| Unschedule frame 20:36:19:286|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:287|DEBUG| Schedule Class C downlink packet 20:36:19:362|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:19:369|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:19:370|INFO| TransmitQueue find 2159076 2159181 20:36:19:370|INFO| TransmitQueue cannot increase duration 20:36:19:370|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:19:371|WARNING| Unschedule frame 20:36:19:385|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:385|DEBUG| Schedule Class C downlink packet 20:36:19:405|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:19:406|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:19:408|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 4055010006c066000223daed94e5f4c9e1a294a4cf890b 20:36:19:408|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.700000 MHz DR1 RSSI: -109 dB SNR: 68 cB 20:36:19:409|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Unconfirmed Up 20:36:19:414|WARNING| GW:00:80:00:00:a0:00:03:89|FRAME-RX|REJECTED|REASON: Message received from unknown node 06:00:01:55 VALUE: 58 20:36:19:496|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:19:500|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:19:501|INFO| TransmitQueue find 2159181 2159195 20:36:19:501|INFO| TransmitQueue cannot increase duration 20:36:19:501|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:19:502|WARNING| Unschedule frame 20:36:19:515|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:516|DEBUG| Schedule Class C downlink packet 20:36:19:517|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:19:521|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:19:521|INFO| TransmitQueue find 2159195 2159241 20:36:19:522|INFO| TransmitQueue cannot increase duration 20:36:19:522|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:19:522|WARNING| Unschedule frame 20:36:19:536|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:537|DEBUG| Schedule Class C downlink packet 20:36:19:578|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:19:583|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:19:583|INFO| TransmitQueue find 2159241 2159357 20:36:19:586|INFO| TransmitQueue cannot increase duration 20:36:19:586|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:19:588|WARNING| Unschedule frame 20:36:19:613|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:614|DEBUG| Schedule Class C downlink packet 20:36:19:711|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:19:717|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:19:717|INFO| TransmitQueue find 2159357 2159470 20:36:19:718|INFO| TransmitQueue cannot increase duration 20:36:19:718|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:19:718|WARNING| Unschedule frame 20:36:19:763|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:764|DEBUG| Schedule Class C downlink packet 20:36:19:765|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:19:772|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:19:772|INFO| TransmitQueue find 2159470 2159568 20:36:19:773|INFO| TransmitQueue cannot increase duration 20:36:19:773|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:19:773|WARNING| Unschedule frame 20:36:19:778|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:19:786|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:19:786|INFO| TransmitQueue find 2159568 2159699 20:36:19:787|INFO| TransmitQueue cannot increase duration 20:36:19:787|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:19:788|WARNING| Unschedule frame 20:36:19:802|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:19:806|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:19:806|INFO| TransmitQueue find 2159699 2159719 20:36:19:807|INFO| TransmitQueue cannot increase duration 20:36:19:810|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:19:812|WARNING| Unschedule frame 20:36:19:826|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:826|DEBUG| Schedule Class C downlink packet 20:36:19:837|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:837|DEBUG| Schedule Class C downlink packet 20:36:19:838|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:838|TRACE| TransmitQueue found conflicting item: 0 0 20:36:19:839|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:19:839|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:19:842|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:19:843|INFO| TransmitQueue find 2159719 2159796 20:36:19:843|INFO| TransmitQueue cannot increase duration 20:36:19:843|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:19:844|WARNING| Unschedule frame 20:36:19:887|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:888|DEBUG| Schedule Class C downlink packet 20:36:19:888|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:890|TRACE| TransmitQueue found conflicting item: 0 0 20:36:19:890|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:19:923|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:19:927|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:19:930|INFO| TransmitQueue find 2159796 2159946 20:36:19:930|INFO| TransmitQueue cannot increase duration 20:36:19:932|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:19:932|WARNING| Unschedule frame 20:36:19:946|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:947|DEBUG| Schedule Class C downlink packet 20:36:19:978|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:19:978|DEBUG| Schedule Class C downlink packet 20:36:20:94|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:20:101|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:20:102|INFO| TransmitQueue find 2159946 2160009 20:36:20:102|INFO| TransmitQueue cannot increase duration 20:36:20:102|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:20:103|WARNING| Unschedule frame 20:36:20:127|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:128|DEBUG| Schedule Class C downlink packet 20:36:20:181|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:20:186|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:20:187|INFO| TransmitQueue find 2160009 2160020 20:36:20:188|INFO| TransmitQueue cannot increase duration 20:36:20:188|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:20:188|WARNING| Unschedule frame 20:36:20:202|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:203|DEBUG| Schedule Class C downlink packet 20:36:20:203|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:20:207|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:20:210|INFO| TransmitQueue find 2160020 2160070 20:36:20:211|INFO| TransmitQueue cannot increase duration 20:36:20:212|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:20:212|WARNING| Unschedule frame 20:36:20:259|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:260|DEBUG| Schedule Class C downlink packet 20:36:20:271|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:20:274|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:20:275|INFO| TransmitQueue find 2160070 2160130 20:36:20:275|INFO| TransmitQueue cannot increase duration 20:36:20:276|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:20:276|WARNING| Unschedule frame 20:36:20:314|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:314|DEBUG| Schedule Class C downlink packet 20:36:20:345|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:20:353|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:20:353|INFO| TransmitQueue find 2160130 2160161 20:36:20:353|INFO| TransmitQueue cannot increase duration 20:36:20:354|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:20:354|WARNING| Unschedule frame 20:36:20:368|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:369|DEBUG| Schedule Class C downlink packet 20:36:20:392|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:20:397|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:20:397|INFO| TransmitQueue find 2160161 2160310 20:36:20:398|INFO| TransmitQueue cannot increase duration 20:36:20:398|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:20:398|WARNING| Unschedule frame 20:36:20:412|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:413|DEBUG| Schedule Class C downlink packet 20:36:20:560|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:20:565|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:20:566|INFO| TransmitQueue find 2160310 2160385 20:36:20:566|INFO| TransmitQueue cannot increase duration 20:36:20:566|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:20:567|WARNING| Unschedule frame 20:36:20:597|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:20:598|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:20:599|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa2057b2384b4b43185a9a8d4a46d1 20:36:20:600|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.100000 MHz DR0 RSSI: -119 dB SNR: -20 cB 20:36:20:600|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request 20:36:20:601|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa2057b2384b4b43185a9a 20:36:20:601|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-38-b2-57-20 20:36:20:601|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b 20:36:20:602|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|9a5a 20:36:20:603|DEBUG| ED:18-43-4b-4b-38-b2-57-20|CHECK-KEY|MIC Valid 20:36:20:603|DEBUG| ED:18-43-4b-4b-38-b2-57-20|APP-NONCE|43ad22 20:36:20:606|INFO| ED:18-43-4b-4b-38-b2-57-20|DEV-ADDR|Found End Device in DB 6000024 20:36:20:611|INFO| ED:18-43-4b-4b-38-b2-57-20|QUEUE-TX|JOIN SIZE: 17 20:36:20:612|INFO| ED:18-43-4b-4b-38-b2-57-20|JOINREQ-OK|JOINS: 1675 UP: 3077 20:36:20:612|DEBUG| ED:18-43-4b-4b-38-b2-57-20|PACKET-RX|GW:00:80:00:00:a0:00:03:89 Time_us:6704308 20:36:20:612|DEBUG| ED:18-43-4b-4b-38-b2-57-20|PACKET-RX|Downlink Packets Queued: 1 20:36:20:639|INFO| ED:18-43-4b-4b-38-b2-57-20|JOIN-ACCEPT|DevAddr: 06000024 20:36:20:639|INFO| ED:18-43-4b-4b-38-b2-57-20|SCHED-TX|Use RX1 TOA:92 ms 20:36:20:642|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {"chan":4,"codr":"4/5","data":"ADvLipxyVCr6IFeyOEtLQxhamo1KRtE=","datr":"SF10BW125","freq":903.10000000000002,"lsnr":-2,"modu":"LORA","rfch":1,"rssi":-119,"size":23,"stat":1,"time":"2017-12-03T20:36:20.595790Z","tmst":6704308} 20:36:20:653|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:653|DEBUG| Schedule Class C downlink packet 20:36:20:694|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:20:698|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:20:698|INFO| TransmitQueue find 2160385 2160442 20:36:20:699|INFO| TransmitQueue cannot increase duration 20:36:20:699|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:20:699|WARNING| Unschedule frame 20:36:20:725|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:726|DEBUG| Schedule Class C downlink packet 20:36:20:732|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:20:734|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:20:734|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 406f010006805f0502b46e43f978ed356567bc 20:36:20:735|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.700000 MHz DR0 RSSI: -88 dB SNR: 65 cB 20:36:20:735|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Unconfirmed Up 20:36:20:739|WARNING| GW:00:80:00:00:a0:00:03:89|FRAME-RX|REJECTED|REASON: Message received from unknown node 06:00:01:6f VALUE: 58 20:36:20:771|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:20:774|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:20:775|INFO| TransmitQueue find 2160442 2160497 20:36:20:775|INFO| TransmitQueue cannot increase duration 20:36:20:776|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:20:776|WARNING| Unschedule frame 20:36:20:821|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:821|DEBUG| Schedule Class C downlink packet 20:36:20:842|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:20:847|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:20:847|INFO| TransmitQueue find 2160497 2160552 20:36:20:848|INFO| TransmitQueue cannot increase duration 20:36:20:848|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:20:848|WARNING| Unschedule frame 20:36:20:874|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:874|DEBUG| Schedule Class C downlink packet 20:36:20:908|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:20:912|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:20:913|INFO| TransmitQueue find 2160552 2160595 20:36:20:915|INFO| TransmitQueue cannot increase duration 20:36:20:915|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:20:916|WARNING| Unschedule frame 20:36:20:931|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:20:932|DEBUG| Schedule Class C downlink packet 20:36:20:966|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:20:973|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:20:974|INFO| TransmitQueue find 2160595 2160836 20:36:20:974|INFO| TransmitQueue cannot increase duration 20:36:20:975|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:20:975|WARNING| Unschedule frame 20:36:21:19|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:20|DEBUG| Schedule Class C downlink packet 20:36:21:84|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:21:89|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:21:90|INFO| TransmitQueue find 2160836 2160908 20:36:21:90|INFO| TransmitQueue cannot increase duration 20:36:21:90|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:21:91|WARNING| Unschedule frame 20:36:21:99|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:21:103|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:21:104|INFO| TransmitQueue find 2160908 2161004 20:36:21:104|INFO| TransmitQueue cannot increase duration 20:36:21:104|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:21:105|WARNING| Unschedule frame 20:36:21:112|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:21:117|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:21:117|INFO| TransmitQueue find 2161004 2161057 20:36:21:118|INFO| TransmitQueue cannot increase duration 20:36:21:118|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:21:118|WARNING| Unschedule frame 20:36:21:132|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:133|DEBUG| Schedule Class C downlink packet 20:36:21:143|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:144|TRACE| TransmitQueue found conflicting item: 0 0 20:36:21:144|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:21:155|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:155|DEBUG| Schedule Class C downlink packet 20:36:21:178|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:178|DEBUG| Schedule Class C downlink packet 20:36:21:179|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:21:186|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:21:187|INFO| TransmitQueue find 2161057 2161114 20:36:21:187|INFO| TransmitQueue cannot increase duration 20:36:21:187|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:21:188|WARNING| Unschedule frame 20:36:21:202|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:202|DEBUG| Schedule Class C downlink packet 20:36:21:244|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:21:248|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:21:248|INFO| TransmitQueue find 2161114 2161202 20:36:21:249|INFO| TransmitQueue cannot increase duration 20:36:21:249|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:21:252|WARNING| Unschedule frame 20:36:21:288|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:21:289|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:21:290|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa203eb3354b4b43039b6b43cca5e9 20:36:21:290|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.700000 MHz DR0 RSSI: -113 dB SNR: 32 cB 20:36:21:291|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request 20:36:21:291|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa203eb3354b4b43039b6b 20:36:21:292|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|03-43-4b-4b-35-b3-3e-20 20:36:21:292|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b 20:36:21:292|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|6b9b 20:36:21:293|DEBUG| ED:03-43-4b-4b-35-b3-3e-20|CHECK-KEY|MIC Valid 20:36:21:293|DEBUG| ED:03-43-4b-4b-35-b3-3e-20|APP-NONCE|43ab28 20:36:21:295|INFO| ED:03-43-4b-4b-35-b3-3e-20|DEV-ADDR|Found End Device in DB 6000007 20:36:21:300|INFO| ED:03-43-4b-4b-35-b3-3e-20|QUEUE-TX|JOIN SIZE: 17 20:36:21:300|INFO| ED:03-43-4b-4b-35-b3-3e-20|JOINREQ-OK|JOINS: 1676 UP: 3078 20:36:21:301|DEBUG| ED:03-43-4b-4b-35-b3-3e-20|PACKET-RX|GW:00:80:00:00:a0:00:03:89 Time_us:7407372 20:36:21:301|DEBUG| ED:03-43-4b-4b-35-b3-3e-20|PACKET-RX|Downlink Packets Queued: 1 20:36:21:322|INFO| ED:03-43-4b-4b-35-b3-3e-20|JOIN-ACCEPT|DevAddr: 06000007 20:36:21:323|INFO| ED:03-43-4b-4b-35-b3-3e-20|SCHED-TX|Use RX1 TOA:92 ms 20:36:21:324|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {"chan":2,"codr":"4/5","data":"ADvLipxyVCr6ID6zNUtLQwOba0PMpek=","datr":"SF10BW125","freq":902.70000000000005,"lsnr":3.2000000000000002,"modu":"LORA","rfch":0,"rssi":-113,"size":23,"stat":1,"time":"2017-12-03T20:36:21.287384Z","tmst":7407372} 20:36:21:349|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:349|DEBUG| Schedule Class C downlink packet 20:36:21:401|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:21:404|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:21:405|INFO| TransmitQueue find 2161202 2161316 20:36:21:405|INFO| TransmitQueue cannot increase duration 20:36:21:405|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:21:405|WARNING| Unschedule frame 20:36:21:420|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:422|DEBUG| Schedule Class C downlink packet 20:36:21:538|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:21:542|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:21:543|INFO| TransmitQueue find 2161316 2161338 20:36:21:545|INFO| TransmitQueue cannot increase duration 20:36:21:546|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:21:547|WARNING| Unschedule frame 20:36:21:561|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:562|DEBUG| Schedule Class C downlink packet 20:36:21:574|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:21:579|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:21:580|INFO| TransmitQueue find 2161338 2161361 20:36:21:580|INFO| TransmitQueue cannot increase duration 20:36:21:580|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:21:581|WARNING| Unschedule frame 20:36:21:606|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:21:610|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:21:611|INFO| TransmitQueue find 2161361 2161385 20:36:21:611|INFO| TransmitQueue cannot increase duration 20:36:21:611|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:21:612|WARNING| Unschedule frame 20:36:21:630|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:631|DEBUG| Schedule Class C downlink packet 20:36:21:643|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:644|DEBUG| Schedule Class C downlink packet 20:36:21:660|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:21:664|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:21:665|INFO| TransmitQueue find 2161385 2161532 20:36:21:665|INFO| TransmitQueue cannot increase duration 20:36:21:665|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:21:666|WARNING| Unschedule frame 20:36:21:696|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:696|DEBUG| Schedule Class C downlink packet 20:36:21:821|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:21:829|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:21:829|INFO| TransmitQueue find 2161532 2161604 20:36:21:830|INFO| TransmitQueue cannot increase duration 20:36:21:830|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:21:830|WARNING| Unschedule frame 20:36:21:867|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:868|DEBUG| Schedule Class C downlink packet 20:36:21:913|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:21:916|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:21:917|INFO| TransmitQueue find 2161604 2161744 20:36:21:918|INFO| TransmitQueue cannot increase duration 20:36:21:918|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:21:918|WARNING| Unschedule frame 20:36:21:958|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:21:958|DEBUG| Schedule Class C downlink packet 20:36:22:74|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:22:81|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:22:82|INFO| TransmitQueue find 2161744 2161814 20:36:22:82|INFO| TransmitQueue cannot increase duration 20:36:22:82|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:22:83|WARNING| Unschedule frame 20:36:22:130|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:130|DEBUG| Schedule Class C downlink packet 20:36:22:163|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:22:167|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:22:168|INFO| TransmitQueue find 2161814 2161826 20:36:22:168|INFO| TransmitQueue cannot increase duration 20:36:22:168|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:22:169|WARNING| Unschedule frame 20:36:22:188|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:190|DEBUG| Schedule Class C downlink packet 20:36:22:203|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:22:208|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:22:208|INFO| TransmitQueue find 2161826 2161879 20:36:22:209|INFO| TransmitQueue cannot increase duration 20:36:22:209|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:22:209|WARNING| Unschedule frame 20:36:22:256|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:256|DEBUG| Schedule Class C downlink packet 20:36:22:267|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:22:274|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:22:275|INFO| TransmitQueue find 2161879 2162051 20:36:22:276|INFO| TransmitQueue cannot increase duration 20:36:22:276|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:22:276|WARNING| Unschedule frame 20:36:22:301|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:301|DEBUG| Schedule Class C downlink packet 20:36:22:414|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:22:419|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:22:420|INFO| TransmitQueue find 2162051 2162141 20:36:22:420|INFO| TransmitQueue cannot increase duration 20:36:22:421|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:22:421|WARNING| Unschedule frame 20:36:22:425|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:22:433|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:22:434|INFO| TransmitQueue find 2162141 2162313 20:36:22:434|INFO| TransmitQueue cannot increase duration 20:36:22:434|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:22:435|WARNING| Unschedule frame 20:36:22:439|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:22:447|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:22:448|INFO| TransmitQueue find 2162313 2162372 20:36:22:448|INFO| TransmitQueue cannot increase duration 20:36:22:448|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:22:449|WARNING| Unschedule frame 20:36:22:463|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:463|DEBUG| Schedule Class C downlink packet 20:36:22:481|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:22:482|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:22:483|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 40ed01000680000202404ce8ed4b044e689d78 20:36:22:483|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.100000 MHz DR0 RSSI: -106 dB SNR: 70 cB 20:36:22:484|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Unconfirmed Up 20:36:22:487|WARNING| GW:00:80:00:00:a0:00:03:89|FRAME-RX|REJECTED|REASON: Message received from unknown node 06:00:01:ed VALUE: 58 20:36:22:489|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:22:493|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:22:494|INFO| TransmitQueue find 2162372 2162439 20:36:22:494|INFO| TransmitQueue cannot increase duration 20:36:22:494|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:22:495|WARNING| Unschedule frame 20:36:22:509|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:509|DEBUG| Schedule Class C downlink packet 20:36:22:509|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:510|TRACE| TransmitQueue found conflicting item: 0 0 20:36:22:510|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:22:511|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:511|TRACE| TransmitQueue found conflicting item: 0 0 20:36:22:511|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:22:552|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:553|DEBUG| Schedule Class C downlink packet 20:36:22:553|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:553|TRACE| TransmitQueue found conflicting item: 0 0 20:36:22:554|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:22:575|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:22:579|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:22:579|INFO| TransmitQueue find 2162439 2162484 20:36:22:580|INFO| TransmitQueue cannot increase duration 20:36:22:580|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:22:580|WARNING| Unschedule frame 20:36:22:604|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:605|DEBUG| Schedule Class C downlink packet 20:36:22:615|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:616|DEBUG| Schedule Class C downlink packet 20:36:22:626|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:22:631|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:22:631|INFO| TransmitQueue find 2162484 2162646 20:36:22:631|INFO| TransmitQueue cannot increase duration 20:36:22:632|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:22:632|WARNING| Unschedule frame 20:36:22:661|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:662|DEBUG| Schedule Class C downlink packet 20:36:22:808|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:22:812|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:22:812|INFO| TransmitQueue find 2162646 2162692 20:36:22:813|INFO| TransmitQueue cannot increase duration 20:36:22:813|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:22:813|WARNING| Unschedule frame 20:36:22:830|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:830|DEBUG| Schedule Class C downlink packet 20:36:22:872|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:22:880|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:22:880|INFO| TransmitQueue find 2162692 2162735 20:36:22:880|INFO| TransmitQueue cannot increase duration 20:36:22:881|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:22:881|WARNING| Unschedule frame 20:36:22:917|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:918|DEBUG| Schedule Class C downlink packet 20:36:22:931|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:22:937|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:22:937|INFO| TransmitQueue find 2162735 2162787 20:36:22:937|INFO| TransmitQueue cannot increase duration 20:36:22:938|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:22:938|WARNING| Unschedule frame 20:36:22:974|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:22:975|DEBUG| Schedule Class C downlink packet 20:36:22:998|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:23:5|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:6|INFO| TransmitQueue find 2162787 2162798 20:36:23:6|INFO| TransmitQueue cannot increase duration 20:36:23:7|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:23:7|WARNING| Unschedule frame 20:36:23:31|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:32|DEBUG| Schedule Class C downlink packet 20:36:23:32|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:23:36|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:36|INFO| TransmitQueue find 2162798 2162844 20:36:23:36|INFO| TransmitQueue cannot increase duration 20:36:23:37|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:23:37|WARNING| Unschedule frame 20:36:23:51|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:52|DEBUG| Schedule Class C downlink packet 20:36:23:86|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:23:91|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:23:92|INFO| TransmitQueue find 2162844 2163013 20:36:23:92|INFO| TransmitQueue cannot increase duration 20:36:23:92|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:23:93|WARNING| Unschedule frame 20:36:23:138|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:138|DEBUG| Schedule Class C downlink packet 20:36:23:275|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:23:279|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:23:280|INFO| TransmitQueue find 2163013 2163100 20:36:23:282|INFO| TransmitQueue cannot increase duration 20:36:23:282|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:23:283|WARNING| Unschedule frame 20:36:23:310|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:312|DEBUG| Schedule Class C downlink packet 20:36:23:386|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:23:393|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:23:394|INFO| TransmitQueue find 2163100 2163158 20:36:23:395|INFO| TransmitQueue cannot increase duration 20:36:23:395|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:23:396|WARNING| Unschedule frame 20:36:23:441|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:441|DEBUG| Schedule Class C downlink packet 20:36:23:462|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:23:465|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:23:466|INFO| TransmitQueue find 2163158 2163214 20:36:23:466|INFO| TransmitQueue cannot increase duration 20:36:23:466|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:23:467|WARNING| Unschedule frame 20:36:23:496|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:497|DEBUG| Schedule Class C downlink packet 20:36:23:531|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:23:535|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:535|INFO| TransmitQueue find 2163214 2163234 20:36:23:536|INFO| TransmitQueue cannot increase duration 20:36:23:539|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:23:540|WARNING| Unschedule frame 20:36:23:554|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:555|DEBUG| Schedule Class C downlink packet 20:36:23:567|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:23:572|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:572|INFO| TransmitQueue find 2163234 2163321 20:36:23:573|INFO| TransmitQueue cannot increase duration 20:36:23:573|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:23:574|WARNING| Unschedule frame 20:36:23:622|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:622|DEBUG| Schedule Class C downlink packet 20:36:23:674|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:23:682|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:23:682|INFO| TransmitQueue find 2163321 2163494 20:36:23:683|INFO| TransmitQueue cannot increase duration 20:36:23:683|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:23:683|WARNING| Unschedule frame 20:36:23:709|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:709|DEBUG| Schedule Class C downlink packet 20:36:23:710|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:23:714|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:23:714|INFO| TransmitQueue find 2163494 2163624 20:36:23:715|INFO| TransmitQueue cannot increase duration 20:36:23:715|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:23:716|WARNING| Unschedule frame 20:36:23:723|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:23:728|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:23:728|INFO| TransmitQueue find 2163624 2163679 20:36:23:729|INFO| TransmitQueue cannot increase duration 20:36:23:729|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:23:730|WARNING| Unschedule frame 20:36:23:770|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:771|DEBUG| Schedule Class C downlink packet 20:36:23:781|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:782|DEBUG| Schedule Class C downlink packet 20:36:23:782|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:23:786|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:23:787|INFO| TransmitQueue find 2163679 2163737 20:36:23:787|INFO| TransmitQueue cannot increase duration 20:36:23:788|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:23:788|WARNING| Unschedule frame 20:36:23:827|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:828|DEBUG| Schedule Class C downlink packet 20:36:23:859|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:23:866|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:867|INFO| TransmitQueue find 2163737 2163805 20:36:23:867|INFO| TransmitQueue cannot increase duration 20:36:23:868|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:23:868|WARNING| Unschedule frame 20:36:23:882|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:883|DEBUG| Schedule Class C downlink packet 20:36:23:947|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:23:952|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:23:952|INFO| TransmitQueue find 2163805 2163892 20:36:23:952|INFO| TransmitQueue cannot increase duration 20:36:23:953|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:23:953|WARNING| Unschedule frame 20:36:23:977|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:23:978|DEBUG| Schedule Class C downlink packet 20:36:24:51|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:24:57|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:24:58|INFO| TransmitQueue find 2163892 2163953 20:36:24:59|INFO| TransmitQueue cannot increase duration 20:36:24:59|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:24:60|WARNING| Unschedule frame 20:36:24:105|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:105|DEBUG| Schedule Class C downlink packet 20:36:24:127|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:24:132|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:24:132|INFO| TransmitQueue find 2163953 2163964 20:36:24:133|INFO| TransmitQueue cannot increase duration 20:36:24:133|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:24:134|WARNING| Unschedule frame 20:36:24:151|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:151|DEBUG| Schedule Class C downlink packet 20:36:24:152|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:24:160|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:24:160|INFO| TransmitQueue find 2163964 2164010 20:36:24:161|INFO| TransmitQueue cannot increase duration 20:36:24:161|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:24:161|WARNING| Unschedule frame 20:36:24:175|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:176|DEBUG| Schedule Class C downlink packet 20:36:24:207|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:24:214|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:24:214|INFO| TransmitQueue find 2164010 2164065 20:36:24:215|INFO| TransmitQueue cannot increase duration 20:36:24:215|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:24:215|WARNING| Unschedule frame 20:36:24:262|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:263|DEBUG| Schedule Class C downlink packet 20:36:24:284|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:24:289|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:24:289|INFO| TransmitQueue find 2164065 2164160 20:36:24:290|INFO| TransmitQueue cannot increase duration 20:36:24:290|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:24:291|WARNING| Unschedule frame 20:36:24:318|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:319|DEBUG| Schedule Class C downlink packet 20:36:24:391|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:24:396|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:24:397|INFO| TransmitQueue find 2164160 2164288 20:36:24:397|INFO| TransmitQueue cannot increase duration 20:36:24:397|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:24:398|WARNING| Unschedule frame 20:36:24:412|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:412|DEBUG| Schedule Class C downlink packet 20:36:24:538|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:24:541|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:24:541|INFO| TransmitQueue find 2164288 2164334 20:36:24:542|INFO| TransmitQueue cannot increase duration 20:36:24:542|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:24:542|WARNING| Unschedule frame 20:36:24:576|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:576|DEBUG| Schedule Class C downlink packet 20:36:24:601|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:24:609|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:24:609|INFO| TransmitQueue find 2164334 2164358 20:36:24:610|INFO| TransmitQueue cannot increase duration 20:36:24:610|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:24:610|WARNING| Unschedule frame 20:36:24:624|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:625|DEBUG| Schedule Class C downlink packet 20:36:24:635|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:24:640|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:24:641|INFO| TransmitQueue find 2164358 2164445 20:36:24:641|INFO| TransmitQueue cannot increase duration 20:36:24:641|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:24:642|WARNING| Unschedule frame 20:36:24:691|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:691|DEBUG| Schedule Class C downlink packet 20:36:24:744|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:24:750|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:24:750|INFO| TransmitQueue find 2164445 2164502 20:36:24:750|INFO| TransmitQueue cannot increase duration 20:36:24:751|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:24:751|WARNING| Unschedule frame 20:36:24:775|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:776|DEBUG| Schedule Class C downlink packet 20:36:24:818|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:24:822|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:24:822|INFO| TransmitQueue find 2164502 2164595 20:36:24:823|INFO| TransmitQueue cannot increase duration 20:36:24:823|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:24:823|WARNING| Unschedule frame 20:36:24:864|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:24:865|DEBUG| Schedule Class C downlink packet 20:36:24:896|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:24:897|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:24:898|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa2068323a4b4b431893e199c09e56 20:36:24:898|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.700000 MHz DR1 RSSI: -90 dB SNR: 88 cB 20:36:24:899|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request 20:36:24:899|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa2068323a4b4b431893e1 20:36:24:900|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-3a-32-68-20 20:36:24:900|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b 20:36:24:900|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|e193 20:36:24:901|DEBUG| ED:18-43-4b-4b-3a-32-68-20|CHECK-KEY|MIC Valid 20:36:24:901|DEBUG| ED:18-43-4b-4b-3a-32-68-20|APP-NONCE|a37ff4 20:36:24:903|INFO| ED:18-43-4b-4b-3a-32-68-20|DEV-ADDR|Found End Device in DB 600001d 20:36:24:908|INFO| ED:18-43-4b-4b-3a-32-68-20|QUEUE-TX|JOIN SIZE: 17 20:36:24:908|INFO| ED:18-43-4b-4b-3a-32-68-20|JOINREQ-OK|JOINS: 1677 UP: 3079 20:36:24:909|DEBUG| ED:18-43-4b-4b-3a-32-68-20|PACKET-RX|GW:00:80:00:00:a0:00:03:89 Time_us:11003468 20:36:24:909|DEBUG| ED:18-43-4b-4b-3a-32-68-20|PACKET-RX|Downlink Packets Queued: 1 20:36:24:933|INFO| ED:18-43-4b-4b-3a-32-68-20|JOIN-ACCEPT|DevAddr: 0600001D 20:36:24:934|INFO| ED:18-43-4b-4b-3a-32-68-20|SCHED-TX|Use RX1 TOA:51 ms 20:36:24:935|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {"chan":2,"codr":"4/5","data":"ADvLipxyVCr6IGgyOktLQxiT4ZnAnlY=","datr":"SF9BW125","freq":902.70000000000005,"lsnr":8.8000000000000007,"modu":"LORA","rfch":0,"rssi":-90,"size":23,"stat":1,"time":"2017-12-03T20:36:24.895051Z","tmst":11003468} 20:36:24:968|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:24:971|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:24:971|INFO| TransmitQueue find 2164595 2164759 20:36:24:972|INFO| TransmitQueue cannot increase duration 20:36:24:972|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:24:972|WARNING| Unschedule frame 20:36:25:6|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:6|DEBUG| Schedule Class C downlink packet 20:36:25:17|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:25:21|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:25:22|INFO| TransmitQueue find 2164759 2164807 20:36:25:22|INFO| TransmitQueue cannot increase duration 20:36:25:22|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:25:23|WARNING| Unschedule frame 20:36:25:27|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:25:31|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:25:32|INFO| TransmitQueue find 2164807 2164874 20:36:25:32|INFO| TransmitQueue cannot increase duration 20:36:25:32|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:25:33|WARNING| Unschedule frame 20:36:25:36|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:25:41|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:25:41|INFO| TransmitQueue find 2164874 2164958 20:36:25:41|INFO| TransmitQueue cannot increase duration 20:36:25:41|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:25:42|WARNING| Unschedule frame 20:36:25:56|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:57|DEBUG| Schedule Class C downlink packet 20:36:25:58|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:25:65|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:25:65|INFO| TransmitQueue find 2164958 2165047 20:36:25:66|INFO| TransmitQueue cannot increase duration 20:36:25:66|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:25:66|WARNING| Unschedule frame 20:36:25:81|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:82|DEBUG| Schedule Class C downlink packet 20:36:25:82|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:82|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:83|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:83|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:83|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:84|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:125|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:126|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:126|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:126|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:127|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:128|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:172|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:172|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:172|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:173|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:176|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:177|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:178|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:25:182|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:25:182|INFO| TransmitQueue find 2165047 2165189 20:36:25:183|INFO| TransmitQueue cannot increase duration 20:36:25:183|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:25:184|WARNING| Unschedule frame 20:36:25:224|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:224|DEBUG| Schedule Class C downlink packet 20:36:25:235|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:235|DEBUG| Schedule Class C downlink packet 20:36:25:235|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:236|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:236|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:280|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:280|DEBUG| Schedule Class C downlink packet 20:36:25:342|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:25:345|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:25:346|INFO| TransmitQueue find 2165189 2165239 20:36:25:346|INFO| TransmitQueue cannot increase duration 20:36:25:346|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:25:347|WARNING| Unschedule frame 20:36:25:374|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:376|DEBUG| Schedule Class C downlink packet 20:36:25:411|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:25:415|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:25:415|INFO| TransmitQueue find 2165239 2165264 20:36:25:418|INFO| TransmitQueue cannot increase duration 20:36:25:418|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:25:420|WARNING| Unschedule frame 20:36:25:441|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:25:442|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:25:443|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 404501000680f20102fe149462727cb1b042b2a3c6c2ba 20:36:25:443|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.500000 MHz DR0 RSSI: -113 dB SNR: 18 cB 20:36:25:444|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Unconfirmed Up 20:36:25:447|WARNING| GW:00:80:00:00:a0:00:03:89|FRAME-RX|REJECTED|REASON: Message received from unknown node 06:00:01:45 VALUE: 58 20:36:25:459|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:459|DEBUG| Schedule Class C downlink packet 20:36:25:460|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:25:464|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:25:464|INFO| TransmitQueue find 2165264 2165281 20:36:25:464|INFO| TransmitQueue cannot increase duration 20:36:25:465|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:25:465|WARNING| Unschedule frame 20:36:25:490|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC5 NODE: 06:00:00:24 FCNT: 00000000 REPEAT: 0 20:36:25:493|INFO| ED:18-43-4b-4b-38-b2-57-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 17 PKT-ROOM: 242 20:36:25:494|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-TX|DATA: 209f897be553a0a6fa32afad5bb6d69fea 20:36:25:495|DEBUG| GW:00:80:00:00:a0:00:03:89|PACKET-TX|RX1 OFFSET: 5000000 20:36:25:497|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-TX|JSON: {"txpk":{"appeui":"fa-2a-54-72-9c-8a-cb-3b","codr":"4/5","data":"IJ+Je+VToKb6Mq+tW7bWn+o","datr":"SF10BW500","deveui":"18-43-4b-4b-38-b2-57-20","freq":925.70000000000005,"ipol":true,"modu":"LORA","ncrc":true,"powe":26,"rfch":0,"size":17,"tmst":11704308}} 20:36:25:497|INFO| GW:00:80:00:00:a0:00:03:89|UDP-TX|JSON-SIZE:255 20:36:25:538|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:539|DEBUG| Schedule Class C downlink packet 20:36:25:651|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:25:658|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:25:658|INFO| TransmitQueue find 2165407 2165418 20:36:25:659|INFO| TransmitQueue cannot increase duration 20:36:25:659|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:25:659|WARNING| Unschedule frame 20:36:25:680|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:681|DEBUG| Schedule Class C downlink packet 20:36:25:682|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:25:686|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:25:687|INFO| TransmitQueue find 2165418 2165463 20:36:25:687|INFO| TransmitQueue cannot increase duration 20:36:25:688|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:25:688|WARNING| Unschedule frame 20:36:25:704|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:705|DEBUG| Schedule Class C downlink packet 20:36:25:746|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:25:755|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:25:755|INFO| TransmitQueue find 2165463 2165559 20:36:25:756|INFO| TransmitQueue cannot increase duration 20:36:25:756|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:25:756|WARNING| Unschedule frame 20:36:25:802|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:803|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:804|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:837|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:838|TRACE| TransmitQueue found conflicting item: 0 0 20:36:25:838|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:25:863|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:25:868|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:25:868|INFO| TransmitQueue find 2165559 2165642 20:36:25:869|INFO| TransmitQueue cannot increase duration 20:36:25:869|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:25:869|WARNING| Unschedule frame 20:36:25:893|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:894|DEBUG| Schedule Class C downlink packet 20:36:25:904|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:25:906|DEBUG| Schedule Class C downlink packet 20:36:25:971|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:25:979|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:25:979|INFO| TransmitQueue find 2165642 2165721 20:36:25:979|INFO| TransmitQueue cannot increase duration 20:36:25:980|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:25:980|WARNING| Unschedule frame 20:36:26:27|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:27|DEBUG| Schedule Class C downlink packet 20:36:26:73|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:26:78|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:26:78|INFO| TransmitQueue find 2165721 2165863 20:36:26:79|INFO| TransmitQueue cannot increase duration 20:36:26:79|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:26:79|WARNING| Unschedule frame 20:36:26:114|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:114|DEBUG| Schedule Class C downlink packet 20:36:26:231|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:26:234|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:26:235|INFO| TransmitQueue find 2165863 2165887 20:36:26:235|INFO| TransmitQueue cannot increase duration 20:36:26:235|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:26:236|WARNING| Unschedule frame 20:36:26:244|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:26:245|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:26:246|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa2057b2384b4b43180bb27fb37364 20:36:26:246|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.500000 MHz DR0 RSSI: -117 dB SNR: -10 cB 20:36:26:247|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request 20:36:26:248|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa2057b2384b4b43180bb2 20:36:26:248|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-38-b2-57-20 20:36:26:249|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b 20:36:26:249|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|b20b 20:36:26:250|DEBUG| ED:18-43-4b-4b-38-b2-57-20|CHECK-KEY|MIC Valid 20:36:26:250|DEBUG| ED:18-43-4b-4b-38-b2-57-20|APP-NONCE|4aa49f 20:36:26:254|INFO| ED:18-43-4b-4b-38-b2-57-20|DEV-ADDR|Found End Device in DB 6000024 20:36:26:260|INFO| ED:18-43-4b-4b-38-b2-57-20|QUEUE-TX|JOIN SIZE: 17 20:36:26:260|INFO| ED:18-43-4b-4b-38-b2-57-20|JOINREQ-OK|JOINS: 1678 UP: 3080 20:36:26:261|DEBUG| ED:18-43-4b-4b-38-b2-57-20|PACKET-RX|GW:00:80:00:00:a0:00:03:89 Time_us:12346404 20:36:26:261|DEBUG| ED:18-43-4b-4b-38-b2-57-20|PACKET-RX|Downlink Packets Queued: 1 20:36:26:285|INFO| ED:18-43-4b-4b-38-b2-57-20|JOIN-ACCEPT|DevAddr: 06000024 20:36:26:286|INFO| ED:18-43-4b-4b-38-b2-57-20|SCHED-TX|Use RX1 TOA:92 ms 20:36:26:288|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {"chan":1,"codr":"4/5","data":"ADvLipxyVCr6IFeyOEtLQxgLsn+zc2Q=","datr":"SF10BW125","freq":902.5,"lsnr":-1,"modu":"LORA","rfch":0,"rssi":-117,"size":23,"stat":1,"time":"2017-12-03T20:36:26.243410Z","tmst":12346404} 20:36:26:299|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:299|DEBUG| Schedule Class C downlink packet 20:36:26:310|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:26:314|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:26:314|INFO| TransmitQueue find 2165887 2165972 20:36:26:314|INFO| TransmitQueue cannot increase duration 20:36:26:315|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:26:315|WARNING| Unschedule frame 20:36:26:351|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:352|DEBUG| Schedule Class C downlink packet 20:36:26:383|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC3 NODE: 06:00:00:07 FCNT: 00000000 REPEAT: 0 20:36:26:389|INFO| ED:03-43-4b-4b-35-b3-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 17 PKT-ROOM: 242 20:36:26:389|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-TX|DATA: 20e39c90a8752a491792f6617efba965ea 20:36:26:390|DEBUG| GW:00:80:00:00:a0:00:03:89|PACKET-TX|RX1 OFFSET: 5000000 20:36:26:392|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-TX|JSON: {"txpk":{"appeui":"fa-2a-54-72-9c-8a-cb-3b","codr":"4/5","data":"IOOckKh1KkkXkvZhfvupZeo","datr":"SF10BW500","deveui":"03-43-4b-4b-35-b3-3e-20","freq":924.5,"ipol":true,"modu":"LORA","ncrc":true,"powe":26,"rfch":0,"size":17,"tmst":12407372}} 20:36:26:393|INFO| GW:00:80:00:00:a0:00:03:89|UDP-TX|JSON-SIZE:242 20:36:26:410|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:26:413|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:26:414|INFO| TransmitQueue find 2166076 2166087 20:36:26:414|INFO| TransmitQueue cannot increase duration 20:36:26:414|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:26:414|WARNING| Unschedule frame 20:36:26:430|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:26:433|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:26:433|INFO| TransmitQueue find 2166087 2166210 20:36:26:434|INFO| TransmitQueue cannot increase duration 20:36:26:434|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:26:434|WARNING| Unschedule frame 20:36:26:445|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:26:448|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:26:449|INFO| TransmitQueue find 2166210 2166297 20:36:26:451|INFO| TransmitQueue cannot increase duration 20:36:26:451|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:26:455|WARNING| Unschedule frame 20:36:26:462|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:26:472|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:26:472|INFO| TransmitQueue find 2166297 2166482 20:36:26:473|INFO| TransmitQueue cannot increase duration 20:36:26:473|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:26:473|WARNING| Unschedule frame 20:36:26:486|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:487|DEBUG| Schedule Class C downlink packet 20:36:26:498|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:498|DEBUG| Schedule Class C downlink packet 20:36:26:520|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:520|DEBUG| Schedule Class C downlink packet 20:36:26:520|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:522|TRACE| TransmitQueue found conflicting item: 0 0 20:36:26:524|WARNING| Node has not checked in, or packet is already scheduled, cannot schedule packet 20:36:26:569|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:569|DEBUG| Schedule Class C downlink packet 20:36:26:669|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:26:673|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:26:673|INFO| TransmitQueue find 2166482 2166534 20:36:26:673|INFO| TransmitQueue cannot increase duration 20:36:26:674|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:26:674|WARNING| Unschedule frame 20:36:26:714|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:715|DEBUG| Schedule Class C downlink packet 20:36:26:736|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:26:741|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:26:742|INFO| TransmitQueue find 2166534 2166669 20:36:26:742|INFO| TransmitQueue cannot increase duration 20:36:26:742|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:26:743|WARNING| Unschedule frame 20:36:26:768|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:768|DEBUG| Schedule Class C downlink packet 20:36:26:893|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:26:897|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:26:898|INFO| TransmitQueue find 2166669 2166681 20:36:26:898|INFO| TransmitQueue cannot increase duration 20:36:26:899|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|DEFER-TX 06000014 RX-WND:2 Scheduling conflict 20:36:26:899|WARNING| Unschedule frame 20:36:26:918|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:18 FCNT: 00000000 REPEAT: 0 20:36:26:924|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:26:924|INFO| TransmitQueue find 2166681 2166703 20:36:26:925|INFO| TransmitQueue cannot increase duration 20:36:26:925|INFO| ED:18-43-4b-4b-39-b2-40-20|SCHED-TX|DEFER-TX 06000018 RX-WND:2 Scheduling conflict 20:36:26:925|WARNING| Unschedule frame 20:36:26:950|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:950|DEBUG| Schedule Class C downlink packet 20:36:26:951|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:09 FCNT: 00000099 REPEAT: 0 20:36:26:955|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:26:955|INFO| TransmitQueue find 2166703 2166752 20:36:26:956|INFO| TransmitQueue cannot increase duration 20:36:26:956|INFO| ED:18-43-4b-4b-37-32-60-20|SCHED-TX|DEFER-TX 06000009 RX-WND:2 Scheduling conflict 20:36:26:956|WARNING| Unschedule frame 20:36:26:974|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:976|DEBUG| Schedule Class C downlink packet 20:36:26:999|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:26:999|DEBUG| Schedule Class C downlink packet 20:36:27:20|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0b FCNT: 0000032b REPEAT: 0 20:36:27:24|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 46 PKT-ROOM: 242 20:36:27:25|INFO| TransmitQueue find 2166752 2166897 20:36:27:25|INFO| TransmitQueue cannot increase duration 20:36:27:25|INFO| ED:18-43-4b-4b-3f-b2-44-20|SCHED-TX|DEFER-TX 0600000b RX-WND:2 Scheduling conflict 20:36:27:26|WARNING| Unschedule frame 20:36:27:54|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:27:55|DEBUG| Schedule Class C downlink packet 20:36:27:188|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:0d FCNT: 0000005f REPEAT: 0 20:36:27:191|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 19 PKT-ROOM: 242 20:36:27:192|INFO| TransmitQueue find 2166897 2166951 20:36:27:192|INFO| TransmitQueue cannot increase duration 20:36:27:192|INFO| ED:03-43-4b-4b-53-33-3e-20|SCHED-TX|DEFER-TX 0600000d RX-WND:2 Scheduling conflict 20:36:27:192|WARNING| Unschedule frame 20:36:27:216|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:27:216|DEBUG| Schedule Class C downlink packet 20:36:27:247|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:11 FCNT: 0000000e REPEAT: 0 20:36:27:251|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 34 PKT-ROOM: 242 20:36:27:251|INFO| TransmitQueue find 2166951 2167133 20:36:27:251|INFO| TransmitQueue cannot increase duration 20:36:27:252|INFO| ED:18-43-4b-4b-5b-32-50-20|SCHED-TX|DEFER-TX 06000011 RX-WND:2 Scheduling conflict 20:36:27:252|WARNING| Unschedule frame 20:36:27:276|DEBUG| Node::ScheduleSendApplication Class: 2 20:36:27:276|DEBUG| Schedule Class C downlink packet 20:36:27:309|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:27:310|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:27:311|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa203eb3354b4b43039b6b43cca5e9 20:36:27:311|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.300000 MHz DR0 RSSI: -115 dB SNR: 30 cB 20:36:27:312|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request 20:36:27:312|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa203eb3354b4b43039b6b 20:36:27:312|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|03-43-4b-4b-35-b3-3e-20 20:36:27:313|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b 20:36:27:313|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|6b9b 20:36:27:313|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce 20:36:27:314|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {"chan":0,"codr":"4/5","data":"ADvLipxyVCr6ID6zNUtLQwOba0PMpek=","datr":"SF10BW125","freq":902.29999999999995,"lsnr":3,"modu":"LORA","rfch":0,"rssi":-115,"size":23,"stat":1,"time":"2017-12-03T20:36:27.308167Z","tmst":13415116} 20:36:27:438|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:59280 20:36:27:439|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets 20:36:27:440|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 40df010006802b000239e60b6439591a43db9205596060 20:36:27:440|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.300000 MHz DR0 RSSI: -107 dB SNR: 52 cB 20:36:27:441|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Unconfirmed Up 20:36:27:444|WARNING| GW:00:80:00:00:a0:00:03:89|FRAME-RX|REJECTED|REASON: Message received from unknown node 06:00:01:df VALUE: 58 20:36:27:445|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-TX|IP: 127.0.0.1:45680 CH: LC1 NODE: 06:00:00:14 FCNT: 00000046 REPEAT: 0 20:36:27:449|INFO| ED:03-43-4b-4b-39-b3-3b-20|SCHED-TX|Q-SIZE: 1 PKT-SIZE: 40 PKT-ROOM: 242 20:36:27:450|INFO| TransmitQueue find 2167133 2167159
Thomas Hermansson
ParticipantHi again Jason!
The node-leastime expired and all the sudden we get lots of Join Requests with a duplicate nonce.
Is all old join requests stored in some database or how does lora-network-server identify that it is a duplicate? And most important. How can I reset the network-server so it can accept all these Join requests – as they should be valid. The nodes have joined ok earlier and is running the same software.
See logs below. And please advice me if there is any way we can accept these joins.
Kind Regards
Thomas9:34:23:451|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa206532354b4b43188743af5d9d31
9:34:23:452|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.500000 MHz DR1 RSSI: -111 dB SNR: 48 cB
9:34:23:452|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:23:453|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa206532354b4b43188743
9:34:23:453|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-35-32-65-20
9:34:23:454|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:23:454|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|4387
9:34:23:454|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:23:456|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:6,”codr”:”4/5″,”data”:”ADvLipxyVCr6IGUyNUtLQxiHQ69dnTE=”,”datr”:”SF9BW125″,”freq”:903.5,”lsnr”:4.7999999999999998,”modu”:”LORA”,”rfch”:1,”rssi”:-111,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:23.446766Z”,”tmst”:1449115276}
9:34:23:457|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa205b32374b4b43185b68ff65bbc6
9:34:23:457|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.300000 MHz DR1 RSSI: -117 dB SNR: 2 cB
9:34:23:458|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:23:459|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa205b32374b4b43185b68
9:34:23:459|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-37-32-5b-20
9:34:23:460|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:23:460|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|685b
9:34:23:460|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:23:462|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:0,”codr”:”4/5″,”data”:”ADvLipxyVCr6IFsyN0tLQxhbaP9lu8Y=”,”datr”:”SF9BW125″,”freq”:902.29999999999995,”lsnr”:0.20000000000000001,”modu”:”LORA”,”rfch”:0,”rssi”:-117,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:23.446766Z”,”tmst”:1449154188}
9:34:23:799|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:23:800|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets
9:34:23:801|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa206332344b4b43180140b9219b7d
9:34:23:802|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.700000 MHz DR1 RSSI: -103 dB SNR: 100 cB
9:34:23:802|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:23:803|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa206332344b4b43180140
9:34:23:803|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-34-32-63-20
9:34:23:804|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:23:804|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|4001
9:34:23:805|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:23:806|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:7,”codr”:”4/5″,”data”:”ADvLipxyVCr6IGMyNEtLQxgBQLkhm30=”,”datr”:”SF9BW125″,”freq”:903.70000000000005,”lsnr”:10,”modu”:”LORA”,”rfch”:1,”rssi”:-103,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:23.797499Z”,”tmst”:1449532484}
9:34:23:971|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:23:972|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets
9:34:23:973|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa203bb3394b4b4303fb5b88149eb8
9:34:23:974|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.300000 MHz DR1 RSSI: -113 dB SNR: -5 cB
9:34:23:974|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:23:975|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa203bb3394b4b4303fb5b
9:34:23:975|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|03-43-4b-4b-39-b3-3b-20
9:34:23:976|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:23:976|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|5bfb
9:34:23:977|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:23:978|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:5,”codr”:”4/5″,”data”:”ADvLipxyVCr6IDuzOUtLQwP7W4gUnrg=”,”datr”:”SF9BW125″,”freq”:903.29999999999995,”lsnr”:-0.5,”modu”:”LORA”,”rfch”:1,”rssi”:-113,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:23.969762Z”,”tmst”:1449705012}
9:34:24:169|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:24:170|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets
9:34:24:171|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa205932494b4b4318e7494a17cbfa
9:34:24:172|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.900000 MHz DR1 RSSI: -111 dB SNR: 60 cB
9:34:24:172|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:24:173|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa205932494b4b4318e749
9:34:24:173|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-49-32-59-20
9:34:24:174|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:24:174|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|49e7
9:34:24:175|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:24:176|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:3,”codr”:”4/5″,”data”:”ADvLipxyVCr6IFkySUtLQxjnSUoXy/o=”,”datr”:”SF9BW125″,”freq”:902.89999999999998,”lsnr”:6,”modu”:”LORA”,”rfch”:0,”rssi”:-111,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:24.167760Z”,”tmst”:1449909044}
9:34:24:314|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:24:315|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets
9:34:24:316|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa2054b23b4b4b431878cfa492617e
9:34:24:316|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 903.500000 MHz DR1 RSSI: -106 dB SNR: 70 cB
9:34:24:317|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:24:317|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa2054b23b4b4b431878cf
9:34:24:318|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-3b-b2-54-20
9:34:24:318|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:24:319|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|cf78
9:34:24:319|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:24:321|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:6,”codr”:”4/5″,”data”:”ADvLipxyVCr6IFSyO0tLQxh4z6SSYX4=”,”datr”:”SF9BW125″,”freq”:903.5,”lsnr”:7,”modu”:”LORA”,”rfch”:1,”rssi”:-106,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:24.312611Z”,”tmst”:1450047892}
9:34:24:534|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:24:536|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packets
9:34:24:537|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|DATA: 003bcb8a9c72542afa2040b2394b4b4318da5bf5c4c19e
9:34:24:537|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|FREQ: 902.300000 MHz DR1 RSSI: -96 dB SNR: 120 cB
9:34:24:538|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|TYPE: Join Request
9:34:24:539|DEBUG| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|003bcb8a9c72542afa2040b2394b4b4318da5b
9:34:24:539|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-EUI|18-43-4b-4b-39-b2-40-20
9:34:24:539|DEBUG| GW:00:80:00:00:a0:00:03:89|APP-EUI|fa-2a-54-72-9c-8a-cb-3b
9:34:24:540|DEBUG| GW:00:80:00:00:a0:00:03:89|DEV-NONCE|5bda
9:34:24:540|WARNING| GW:00:80:00:00:a0:00:03:89|JOINREQ-RX|Tossing join request with duplicate nonce
9:34:24:542|DEBUG| GW:00:80:00:00:a0:00:03:89|FRAME-RX|JSON: {“chan”:0,”codr”:”4/5″,”data”:”ADvLipxyVCr6IECyOUtLQxjaW/XEwZ4=”,”datr”:”SF9BW125″,”freq”:902.29999999999995,”lsnr”:12,”modu”:”LORA”,”rfch”:0,”rssi”:-96,”size”:23,”stat”:1,”time”:”2017-12-03T09:34:24.533507Z”,”tmst”:1450275300}
9:34:24:856|TRACE| GW:00:80:00:00:a0:00:03:89|SEEN|PUSH-DATA|127.0.0.1:32796
9:34:24:858|INFO| GW:00:80:00:00:a0:00:03:89|FRAME-RX|Parsing 1 packetsThomas Hermansson
ParticipantThanks for your reply!
Hmm I see from our implementation that we did not set the “ack” to either false or true. So I guess it depends on how the mosquito server defaults. Do you know?
We are happy to beta-test your improved lora-network-server to see if it solves our problem.
Kind Regards
ThomasThomas Hermansson
ParticipantHi Jason!
There must be a bug in Lora Network Server related to the scheduling conflicts when having nodes in Class C.
1. We can repeat this error in two ways. Our first setup – we only have one or two nodes online and connected. If we send packets (size 40 bytes) rapidly to the mosquito server the scheduling conflicts occur – we then know that there is no uplink traffic in the area that is stealing bandwith.
Problem dissapears if we instead send the packets with aprox 1-2s delay to mosquitto.2. Second setup. We have aprox 30 units. We pretend that all nodes are Class A – I.e we remove all nordes with lora-query so the joined list is blank. Then we wait for them to join. And we do NOT change them to Class C. Then we start sending packet to the Mosqito server and according to the Lora Spec, no packets should be sent until a node reports in. So far so good. Everything works as expected. BUT when changing the nodes to class C with lora-query (we change all 30 nodes instantly with a script). Then the scheduling conflicts occur directly. And NO PACKETS is transmitted at all.
This must be a but in the lora network server! We are happy to provide you assistance to get this solved.
Kind Regards
ThomasThomas Hermansson
ParticipantThat seems like a probable cause! – However – does that mean that if I have a lease-time set to 0 – my nodes will fail to Join every time it is restarted. And without a Join Accept the node will never know it has succeded and will never start sending any uplink.
So will this problem “go away” if I either change the leasetime to say 1h – or if I remove the node manually in the gateway? then then next join (with the same nonce) would succeed I guess?
Thomas Hermansson
ParticipantAre these printout added in the lora-network-server v 1.0.42? We have no logs with this print from earlier versions. Iยดm thinking of the Scheduling conflict and the cannot increase duration.
5. Does “Scheduling conflict” only mean anything to us – or is it only a debug for the developers of the lora network server. I am having problems to understand what you mean by “Two transmissions want to use the same time..”. According to your comment above the network server will not get this problems due to that we feed the gw with lots of packets to transmit to the nodes….as they will be handled one by one you say.
Kind Regards
ThomasThomas Hermansson
ParticipantBut can you give me one example that would generate a “Scheduling conflict”. Is this just a printout saying that the network-server does a bad scheduling? ๐ Or is this due to us generating to much traffic, to large data packets?
Would it be possible to request a default lora-network-server.conf file for the 915 band? Just to make sure we have not messed up somethign there?
Thomas Hermansson
ParticipantHi!
The units join via OTA. Most traffic is uplink, but once a week there is significant traffic downlink.
We have several different installations. Nodes range from 30 items to 400 items (and up to 1000 units are planned).
The nodes report back (uplink) every 15 minutes sending a short status of aproximately 10 bytes.
Once a week aprox 300 bytes of data is transmitted to each unit. data is splitted into packages of size 50 bytes.
if something goes wrong with the 300 bytes of data (it is not all received) a new attempt is done at every 15 minutes when the node sends its status. We then resend the 300 bytes (as 6 packets).
We are using a STM lora chip and your gateway. The lora stack beeing used is obtained from STM.
1. “It may be possible work around by incrementing the uplink counter to 1” – how can this be done?
4. “Cannot increase duration mean a packet was scheduled but the payload cannot be added in the available downlink slot. The payload will wait in the queue until a downlink slot is found.”
This is very interesting, but would need some more explanation. We just noticed that the limitation of payload is different between Europe and US.
11 โ 242 bytes US
51 โ 242 bytes EU
Does this mean that we have a packet of 50 bytes that we try to send to a unit that transmits on a very low datarate so that the data does not fit in the 400ms window?
Or what do you mean with a downlink slot? What is regulating the downlink slots? Will many uplink data packages make it harder to find a downlink slot?
Please elaborate more as I think I might miss some vital part here. ๐5 b.) “Scheduling conflict means two transmissions want to use the same time. Only one can be transmitted. Some guard time is added in scheduling, we will have this timing tightened in a coming release. It should reduce conflicts.”
If our serverprogram sends lots of packets (6 packets of 50 bytes) for each node instantly to the mqtt server. Will the network server not just transmit them one by one in the same order as we transmitted them to mqtt?I am very greatful for your help.
Thanks
Thomas Hermansson
ร F Technology
Sweden. -
AuthorPosts