diff --git a/.vscode/settings.json b/.vscode/settings.json index 8ecd93d..8096668 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "aliosStudio.sdkPath": "/Users/miaogs/.aos/AliOS-Things", + "aliosStudio.sdkPath": "C:\\Users\\Administrator\\.aos\\AliOS-Things", "files.associations": { "emh_api.h": "c", "atcmdparser.h": "c" diff --git a/README.md b/README.md index bf597ea..1b368cd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## 1. 简介 -本 sdk 提供一个基于 Linux,通过与 Wi-Fi 模块进行 AT 指令串口通信,实现与阿里云 ILOP 和 sds 直连的 IoT 物联网典型开发应用示例源代码。 +本 sdk 提供一个基于 Linux和STM32F411RE,通过与 Wi-Fi 模块进行 AT 指令串口通信,实现与阿里云 ILOP 和 sds 以及中国移动杭研平台 直连的 IoT 物联网典型开发应用示例源代码,master分支是基于linux平台,NUCLEOF411RE分支是基于IAR和GCC平台。 ## 2. 目录结构 @@ -11,6 +11,7 @@ | |---ilopicaapp /*ilop平台 ica标准数据格式的demo*/ | |---iloprawapp /*ilop平台 自定义数据格式的demo*/ | |---sdsapp /*sds平台的demo*/ +| |---qlinkapp /*杭研平台的demo*/ | |---test /*测试demo*/ | |---platform @@ -89,6 +90,166 @@ open at uart succeed ### 4.2 阿里 ilop 平台的透传demo -## 4. 移植SDK +### 4.3 杭研 qlink 平台的demo + +#### 4.3.1 使用流程 + +(1) 获取客户在杭研申请账号密码 + +(2) 商务洽谈后,提交资料,完成后台产品创建,后台地址:[https://open.home.komect.com/partner/](https://open.home.komect.com/partner/) + +(3) 搭建虚拟网关开发环境(详见examples/qlink中materials文件夹) + +(4) 进行本地能网关环境下验证(使用虚拟网关开发调试) + +(5) 杭研现场验收 + +(6) 项目入库 + +(7) 厂家提交配网相关资料,杭研配置成XML文件集成到H5开发的和家亲APP(此步奏或许可以提前,需要厂商和杭研沟通) + +(8) 使用materials/下的和家亲APP测试(开发环境获取到的mqtt服务器地址以.199结尾,测试环境以.207结尾,生产环境以205结尾) + +(8) 杭研云网关验证 + +#### 4.3.2 使用方法 + +* (1) 庆科wifi模块烧录杭研qlink最新[AT固件](http://developer.mxchip.com/downloads/22/) + + +固件烧录具体方法可以参考resource/common/烧录路径下相关文档。 + +* (2) 修改产品信息 + + +新建产品后,可以获得product_token,andlink_token,product_id,豪恩报警盒子产品信息如下: +![30531](./resource/qlink/image/产品资料.png) +``` +初始化产品参数 +const emh_qlink_config_t config = { + .product_info = { + .product_id = "30531", + .product_token = "PXmsE6kQmxEgc0e3", + .andlink_token = "ZxMo0zJvvZMWP3Az", + .format = EMH_ARG_QLINK_FORMAT_JSON, + }, + .version_info = { + .firmware_version = "1.4.3", + .software_version = "1.0.1", + } +}; + +``` + +* (3) 编译运行demo + + +* make clean +``` +wumingju@ubuntu:/mnt/hgfs/Work/project/AT_demo/at_host_qlink$ make clean +cleaning... +done +``` + +* make qlinkapp + +``` +mkdir build +compiling platform/linux/mx_serial.c +compiling platform/linux/mx_stdio.c +compiling platform/linux/mx_tick.c +compiling platform/linux/mx_uart.c +compiling src/helper/cli/mx_cli.c +compiling src/helper/emhost/ATCmdParser/ATCmdParser.c +compiling src/helper/emhost/emh_alisds.c +compiling src/helper/emhost/emh_arg.c +compiling src/helper/emhost/emh_ilop.c +compiling src/helper/emhost/emh_qlink.c +generating build/iot-qlinkapp.elf + text data bss dec hex filename + 22826 1168 3696 27690 6c2a build/iot-qlinkapp.elf +``` + +* 运行 sudo ./build/iot-qlinkapp.elf + +``` +dev[/dev/ttyUSB0] +[APP: main.c: 150] open cli function +open at uart succeed +[QLINK: cloud_qlink.c: 119] FW version: basic_AT_v2.1.2 +[APP: main.c: 30] WiFi config in AP mode...... +[APP: main.c: 30] WiFi config in AP mode...... +[APP: main.c: 34] Wi-Fi connected +[APP: main.c: 42] Cloud connected +``` + +* (4) 基于虚拟网关使用说明 + + +* 按照4.3.1使用流程中说明搭建好本地虚拟网关开发环境 + +* 测试本地环境是否OK + + 如果本地环境OK,点击配网andlinkdemo1.0.apk 开始连接按钮,会有如下页面: + ![环境OK](./resource/qlink/image/环境OK.png) + +* 配网操作 + + 通过cli串口发送 raw start命令 或者 按键触发调用qlink_raw_start()接口使设备进入本地网关一键配网模式, + + 同时手机APP点击开始连接按钮,绑定成功后APP提示添加成功,后台虚拟网关下面会显示出设备,如下: + ![bind_ok](./resource/qlink/image/bind_ok.png) + +* 数据下发 + + 通过后台获取所有字段,操作如下所示: + ![request_all_data](./resource/qlink/image/request_all_data.png) + + 通过后台获取部分字段,操作如下所示: + ![request_some_data](./resource/qlink/image/request_some_data.png) + + 通过后台下发命令,操作如下所示: + ![control_data](./resource/qlink/image/control_data.png) + + 设备收到云端获取字段指令后,需要调用mx_status emh_qlink_send_json_to_cloud( char *type, uint8_t *data, uint32_t len ) 函数将数据发送到云端 + +* 数据上传 + + mx_status qlink_send_data(char *type, uint8_t *data, uint32_t len),通过此函数 即可完成发送数据的功能 + +``` +type: 为发送数据的类型,注意主动上报和响应要选择不同类型 + + 设备主动上报: type = Inform + 人为触发的数据上报: type = ParamChange + 云端请求上报: type = Data + 文件操作: type = File +data:上传具体内容 + +``` + 也可通过cli串口输入send type 发送数据 + +* (5) 基于云网关使用说明 + +* 提交XML配网资料 + + 完成本地网关验证后,可以提交配网引导界面相关资料,杭研配置XML到手机APP,之后方可进行云网关验证操作, + 提交配网资料可以提交本地网关+云网关方式资料或者仅通过云网关配网资料,建议提供只用云网关配网资料, + 如此一来,上线验证只需要验证云网关部分即可,减少验证流程,提高上线时间 + +* 配网操作 + + 通过cli串口发送 user start命令 或者 按键触发调用qlink_user_start()接口使设备进入云网关用户配网模式, + + 同时手机APP(resource/qlink/2.云网关/app路径)进入添加设备页面,扫描到如下页面,说明设备进入了配网页面: + ![user_config](.resource/qlink/image/user_config.png) + 点击弹出来的添加按钮即可进行配网操作 + + +#### 4.3.3 注意事项 + + + +## 5. 移植SDK - 只需要实现platform/mx_hal.h文件中的函数即可 diff --git a/examples/qlinkapp/main.c b/examples/qlinkapp/main.c index cd3299d..2aa15da 100644 --- a/examples/qlinkapp/main.c +++ b/examples/qlinkapp/main.c @@ -4,21 +4,21 @@ const emh_qlink_config_t config = { .product_info = { .product_token = "PXmsE6kQmxEgc0e3", .andlink_token = "ZxMo0zJvvZMWP3Az", - .device_type = "30531", + .product_id = "30531", .format = EMH_ARG_QLINK_FORMAT_JSON, }, - // .product_info = { - // .product_token = "38Szyd6i1240elbV", - // .andlink_token = "wWppJIdROfQkcsMW", - // .device_type = "30413", - // .format = EMH_ARG_QLINK_FORMAT_JSON, - // }, .version_info = { .firmware_version = "1.4.3", .software_version = "1.0.1", } }; - + // .product_info = { + // .product_token = "38Szyd6i1240elbV", + // .andlink_token = "wWppJIdROfQkcsMW", + // .product_id = "30413", + // .format = EMH_ARG_QLINK_FORMAT_JSON, + // }, + void qlink_event_handler(qlink_event_t event) { switch (event) { @@ -118,6 +118,7 @@ static void handle_reboot_cmd(char* pwbuf, int blen, int argc, char** argv) } +// {"deviceId":"CMCC-30531-B0F89327CDF4","childDeviceId":"","eventType":"Inform","timestamp":0,"data":{"params":[{"paramCode":"permitJoining","paramValue":"0"},{"paramCode":"firmware","paramValue":"1.6.0"},{"paramCode":"softVersion","paramValue":"V1.0.6"}]}} static void handle_send_cmd(char* pwbuf, int blen, int argc, char** argv) { if (argc != 3) @@ -125,8 +126,9 @@ static void handle_send_cmd(char* pwbuf, int blen, int argc, char** argv) app_log("input param error!!!"); return; } - - emh_qlink_send_json_to_cloud( QLINK_EVENT_TYPE_INFORM, *argv[2], strlen(*argv[2]) ); + app_log("type is:%s\r\n data is:%s\r\ndata's length is:%d", argv[1], argv[2], strlen(argv[2]) ); + + qlink_send_data( argv[1], argv[2], strlen(argv[2]) ); } struct cli_command qlinkcmds[] = { diff --git "a/resource/common/\347\203\247\345\275\225/3080/EMW3080\344\275\277\347\224\250debug\347\203\247\345\275\225\346\226\271\346\263\225.pdf" "b/resource/common/\347\203\247\345\275\225/3080/EMW3080\344\275\277\347\224\250debug\347\203\247\345\275\225\346\226\271\346\263\225.pdf" new file mode 100644 index 0000000..741e268 Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/EMW3080\344\275\277\347\224\250debug\347\203\247\345\275\225\346\226\271\346\263\225.pdf" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_IMG_TOOL_RESET.exe" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_IMG_TOOL_RESET.exe" new file mode 100644 index 0000000..59831bb Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_IMG_TOOL_RESET.exe" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.exe" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.exe" new file mode 100644 index 0000000..529cebd Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.exe" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.lnk" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.lnk" new file mode 100644 index 0000000..a6712cc Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/MXCHIP_MP_TOOLS.lnk" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/README!!!.txt" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/README!!!.txt" new file mode 100644 index 0000000..dd13bfb --- /dev/null +++ "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/README!!!.txt" @@ -0,0 +1,5 @@ +ע⣺ +1. ԡԱݡд˳ +2. ޷У򿪡Windows 7ģʽ +3.ʹfactoryģʽ¼̼full binʱѾ棬ÿοĬϵfactory modeNormal Mode ,ִMXCHIP_IMG_TOOL_RESET򡣼ɻָ +4.ʹATE̼ҪȽCOMڸµ3ڡɶȡģ顣 \ No newline at end of file diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/horn@mx1290@moc.all.bin" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/horn@mx1290@moc.all.bin" new file mode 100644 index 0000000..c1a33c9 Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/horn@mx1290@moc.all.bin" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpate.dll" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpate.dll" new file mode 100644 index 0000000..875baa0 Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpate.dll" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpimg.dll" "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpimg.dll" new file mode 100644 index 0000000..70a5473 Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/MXCHIP_MP_TOOLS_V1.1/mpimg.dll" differ diff --git "a/resource/common/\347\203\247\345\275\225/3080/\345\233\272\344\273\266\347\203\247\345\275\225\346\263\250\346\204\217\344\272\213\351\241\271.docx" "b/resource/common/\347\203\247\345\275\225/3080/\345\233\272\344\273\266\347\203\247\345\275\225\346\263\250\346\204\217\344\272\213\351\241\271.docx" new file mode 100644 index 0000000..7fc49d9 Binary files /dev/null and "b/resource/common/\347\203\247\345\275\225/3080/\345\233\272\344\273\266\347\203\247\345\275\225\346\263\250\346\204\217\344\272\213\351\241\271.docx" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\346\234\254\345\234\260\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v3.1.docx" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\346\234\254\345\234\260\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v3.1.docx" new file mode 100644 index 0000000..9091299 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\346\234\254\345\234\260\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v3.1.docx" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/AndlinkDiagnotorIL_64_20180620.exe" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/AndlinkDiagnotorIL_64_20180620.exe" new file mode 100644 index 0000000..c524734 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/AndlinkDiagnotorIL_64_20180620.exe" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/Californium.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/Californium.properties" new file mode 100644 index 0000000..7511c12 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/Californium.properties" @@ -0,0 +1,48 @@ +#Californium CoAP Properties file +#Thu Jun 28 11:25:11 CST 2018 +HTTP_SERVER_SOCKET_BUFFER_SIZE=8192 +UDP_CONNECTOR_OUT_CAPACITY=2147483647 +CONGESTION_CONTROL_ALGORITHM=Cocoa +USE_CONGESTION_CONTROL=false +ACK_TIMEOUT=2000 +MAX_ACTIVE_PEERS=150000 +TCP_CONNECT_TIMEOUT=10000 +NOTIFICATION_CHECK_INTERVAL_COUNT=100 +MAX_MESSAGE_SIZE=1024 +DEDUPLICATOR=DEDUPLICATOR_MARK_AND_SWEEP +TCP_CONNECTION_IDLE_TIMEOUT=10 +COAP_PORT=5683 +ACK_TIMEOUT_SCALE=2.0 +PREFERRED_BLOCK_SIZE=512 +NETWORK_STAGE_RECEIVER_THREAD_COUNT=4 +PROTOCOL_STAGE_THREAD_COUNT=4 +MAX_TRANSMIT_WAIT=93000 +USE_STRICT_RESPONSE_MATCHING=false +UDP_CONNECTOR_RECEIVE_BUFFER=0 +EXCHANGE_LIFETIME=247000 +HTTP_SERVER_SOCKET_TIMEOUT=100000 +CROP_ROTATION_PERIOD=2000 +UDP_CONNECTOR_DATAGRAM_SIZE=2048 +MAX_RETRANSMIT=4 +MAX_PEER_INACTIVITY_PERIOD=600 +MAX_RESOURCE_BODY_SIZE=8192 +NOTIFICATION_CHECK_INTERVAL=86400000 +LEISURE=5000 +HTTP_CACHE_RESPONSE_MAX_AGE=86400 +BLOCKWISE_STATUS_LIFETIME=300000 +UDP_CONNECTOR_SEND_BUFFER=0 +TCP_WORKER_THREADS=1 +HEALTH_STATUS_PRINT_LEVEL=FINEST +NETWORK_STAGE_SENDER_THREAD_COUNT=4 +NON_LIFETIME=145000 +TOKEN_SIZE_LIMIT=8 +HTTP_PORT=8080 +MARK_AND_SWEEP_INTERVAL=10000 +HEALTH_STATUS_INTERVAL=60 +ACK_RANDOM_FACTOR=1.5 +NSTART=1 +USE_RANDOM_MID_START=true +HTTP_CACHE_SIZE=32 +PROBING_RATE=1.0 +NOTIFICATION_REREGISTRATION_BACKOFF=2000 +COAP_SECURE_PORT=5684 diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/conf/internetModelGWInfo.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/conf/internetModelGWInfo.json" new file mode 100644 index 0000000..e69de29 diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/conf/log4j.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/conf/log4j.properties" new file mode 100644 index 0000000..a2db01d --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/conf/log4j.properties" @@ -0,0 +1,13 @@ +#My customized log properties +#Thu Jun 28 11:25:11 CST 2018 +log4j.appender.Console=org.apache.log4j.ConsoleAppender +log4j.appender.File.layout.ConversionPattern=[%-5p] %d{yyyy-MM-dd HH\:mm\:ss,SSS} %l%n%m%n%n +log4j.appender.Console.layout.ConversionPattern=[%-5p] %d{yyyy-MM-dd HH\:mm\:ss,SSS} %l%n%m%n%n +log4j.appender.File=org.apache.log4j.DailyRollingFileAppender +log4j.rootLogger=INFO,Console,File +log4j.appender.File.File=D\:\\Work\\project\\factory\\onenet_hangzhou\\debug\\gateay_tool\\logs\\log.log +log4j.appender.Console.layout=org.apache.log4j.PatternLayout +log4j.appender.File.Append=true +log4j.appender.File.Threshold=DEBUG +log4j.appender.Console.Target=System.out +log4j.appender.File.layout=org.apache.log4j.PatternLayout diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/error.log" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/error.log" new file mode 100644 index 0000000..9ba2684 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/error.log" @@ -0,0 +1,8 @@ + 28, 2018 5:54:11 org.eclipse.californium.core.network.config.NetworkConfig load +Ϣ: loading properties from file D:\Work\project\factory\onenet_hangzhou\debug\gateay_tool\Californium.properties + 28, 2018 5:54:14 org.eclipse.californium.core.network.CoapEndpoint start +Ϣ: Starting endpoint at coap://0.0.0.0:0 + 28, 2018 5:54:15 org.eclipse.californium.core.network.CoapEndpoint start +Ϣ: Started endpoint at coap://0.0.0.0:62565 + 28, 2018 5:54:15 org.eclipse.californium.core.network.EndpointManager createDefaultEndpoint +Ϣ: Created implicit endpoint coap://0.0.0.0:62565 for coap diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/logs/log.log" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/logs/log.log" new file mode 100644 index 0000000..b7f2cd4 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\346\235\255\347\240\224\345\205\245\345\272\223\346\265\213\350\257\225\345\267\245\345\205\267/logs/log.log" @@ -0,0 +1,11642 @@ +[INFO ] 2018-06-28 11:25:15,451 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 11:25:15,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 11:25:15,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 11:25:15,536 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 11:25:15,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 11:25:15,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 11:25:15,821 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 11:25:15,853 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 11:25:15,937 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 11:25:20,511 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185124,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:20,580 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:21,150 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:25:23,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185127,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:23,472 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:25,179 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:25:26,366 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185130,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:26,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:29,249 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185133,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:29,433 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:30,602 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:25:30,687 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:25:32,372 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185136,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:32,619 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:32,972 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 11:25:33,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 11:25:33,572 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:25:33,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:25:34,477 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:25:34,562 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:25:34,809 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 11:25:35,157 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 11:25:35,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185139,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:36,066 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:25:36,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:25:36,482 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:25:37,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 11:25:39,487 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:25:39,549 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 11:25:40,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B","productToken":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????:","timestamp":1515870811} + +[INFO ] 2018-06-28 11:25:41,493 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"respCode":14,"respCont": "null"} + +[INFO ] 2018-06-28 11:25:42,458 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B","productToken":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????:","timestamp":1515870811} + +[INFO ] 2018-06-28 11:25:42,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"respCode":14,"respCont": "null"} + +[INFO ] 2018-06-28 11:25:43,561 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B","productToken":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????:","timestamp":1515870811} + +[INFO ] 2018-06-28 11:25:44,504 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"respCode":14,"respCont": "null"} + +[INFO ] 2018-06-28 11:25:46,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B","productToken":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????:","timestamp":1515870811} + +[INFO ] 2018-06-28 11:25:46,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"respCode":14,"respCont": "null"} + +[INFO ] 2018-06-28 11:25:47,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B","productToken":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????:","timestamp":1515870811} + +[INFO ] 2018-06-28 11:25:48,567 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"respCode":14,"respCont": "null"} + +[INFO ] 2018-06-28 11:25:49,884 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185155,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:25:49,970 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:00,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:26:00,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:26:04,133 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185169,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:04,465 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:07,169 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 11:26:07,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 11:26:07,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:26:07,574 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:26:07,967 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:08,014 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:08,784 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:08,884 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:09,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185175,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:10,053 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:10,470 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:10,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:11,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:11,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:11,370 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:26:11,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:26:12,339 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:12,386 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:12,817 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185178,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:12,887 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:13,525 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:13,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:15,004 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:15,080 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:15,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185181,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:15,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:16,513 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:16,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:17,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:17,714 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:18,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185184,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:18,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:19,086 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:19,117 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:20,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:20,238 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:21,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:21,501 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:22,538 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:22,617 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:23,754 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:23,839 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:24,438 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185190,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:24,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:24,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:25,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:27,370 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185193,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:27,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:28,939 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:28,985 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:29,638 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:26:29,717 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:26:30,117 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:30,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:30,239 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185196,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:30,501 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:31,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:31,355 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:32,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:32,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:33,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185199,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:33,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:33,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:33,947 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:36,068 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185202,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:36,700 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:36,969 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:26:37,016 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:26:37,716 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:37,801 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:38,918 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:39,055 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:39,433 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185205,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:39,549 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:40,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:40,143 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:41,290 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:41,375 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:42,457 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:42,510 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:43,626 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:43,711 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:44,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:44,912 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:47,444 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:47,513 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:47,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:47,730 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:48,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:48,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:50,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:50,100 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:51,184 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:51,247 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:52,387 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:52,449 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:54,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185220,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:54,550 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:56,472 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:56,987 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:57,072 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185223,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:57,119 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:26:57,590 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:57,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:58,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:26:58,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:26:59,143 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:26:59,213 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:26:59,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185226,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:26:59,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:00,029 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:00,098 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:01,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:01,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:02,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185229,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:02,449 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:05,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185232,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:05,451 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:05,504 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:05,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:06,367 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:06,436 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:07,554 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:07,654 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:08,055 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185235,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:08,139 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:08,508 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:27:08,609 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:27:08,969 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:09,009 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:10,155 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:10,456 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:10,972 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185238,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:11,424 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:11,540 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:11,955 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:12,693 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:12,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:13,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185241,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:14,125 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:14,510 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:14,573 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:15,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:15,212 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:16,360 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:16,430 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:16,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185244,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:16,941 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:17,999 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:18,077 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:19,132 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:19,201 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:20,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:20,448 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:21,934 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:22,697 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:22,803 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:23,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:23,981 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:25,134 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:25,203 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:26,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:26,350 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:27,934 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:28,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:28,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:28,750 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:27:28,950 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:27:29,003 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:29,868 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:29,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:31,067 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:31,152 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:31,521 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185258,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:31,951 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:32,220 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:32,936 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:33,405 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:33,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:34,936 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:34,983 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:35,767 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:35,836 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:36,967 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:37,036 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:38,020 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:27:38,067 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:27:38,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:38,442 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:39,421 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:39,483 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:40,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:40,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:52,022 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:53,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:53,438 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185273,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:27:53,501 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:27:53,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:53,617 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:53,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:53,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:54,471 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:54,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:55,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:55,287 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:56,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:56,457 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:57,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:27:57,649 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:27:58,180 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:27:58,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:27:58,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:00,413 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:00,482 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:00,714 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185289,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:00,969 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:01,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:01,500 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:02,355 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:02,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:03,504 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:03,558 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:04,692 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:04,761 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:05,940 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:05,979 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:07,050 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:07,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:07,545 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:28:07,598 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:28:08,419 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:08,472 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:09,457 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:09,504 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:10,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:10,978 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:11,842 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:11,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:12,996 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:13,043 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:14,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:14,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:14,901 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185303,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:15,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:15,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:15,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:16,688 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:16,750 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:17,821 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185306,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:18,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:18,521 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:19,121 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:19,174 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:20,304 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:20,355 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:20,696 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185309,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:20,943 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:21,498 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:21,560 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:22,700 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:22,762 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:23,918 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:23,987 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:25,051 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:25,105 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:26,223 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:26,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:27,440 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:27,509 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:27,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:28:27,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:28:28,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:29,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:29,830 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:30,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:31,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:31,133 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:32,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:32,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:33,438 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:33,484 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:34,586 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:34,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:35,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185324,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:36,029 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:36,091 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:37,003 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:37,047 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:37,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:28:37,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:28:38,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:38,498 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:39,352 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:39,421 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:40,554 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"?????????????????????????????????B0F89315BF4B"} + +[INFO ] 2018-06-28 11:28:40,638 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:28:43,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185333,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:44,030 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:46,854 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185336,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:46,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:49,778 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185339,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:49,963 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:52,686 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185342,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:28:53,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:28:57,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:28:57,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:29:06,574 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:29:06,621 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:29:07,205 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185357,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:07,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:21,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185372,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:21,927 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:26,720 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:29:26,770 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:29:36,103 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:29:36,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:29:36,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185387,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:36,537 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:45,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185395,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:45,523 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:47,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185398,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:47,985 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:50,800 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185392,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:50,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:53,705 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185395,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:53,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:56,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:29:56,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:29:56,656 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185398,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:56,971 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:29:59,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185401,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:29:59,580 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:02,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185404,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:02,553 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:05,625 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:30:05,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:30:05,957 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185407,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:06,088 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:20,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185422,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:20,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:22,855 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:25,676 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185427,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:25,792 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:25,961 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:30:26,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:30:28,608 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185430,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:28,740 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:31,495 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185433,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:31,611 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:34,445 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185436,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:34,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:35,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:30:35,470 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:30:37,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185439,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:37,418 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:40,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185442,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:40,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:43,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185445,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:43,258 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:46,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185448,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:46,128 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:48,943 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185450,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:49,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:51,859 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185453,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:51,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:54,759 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185456,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:30:54,875 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:30:55,282 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:30:55,329 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:31:00,563 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185462,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:00,665 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:03,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185465,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:03,621 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:05,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:31:05,491 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:31:06,422 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185468,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:06,491 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:09,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185471,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:09,392 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:12,211 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185474,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:12,327 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:24,408 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185486,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:24,471 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:24,871 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:31:24,902 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:31:26,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185489,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:26,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:29,651 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185492,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:29,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:32,583 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185495,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:32,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:34,452 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:31:34,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:31:35,483 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185498,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:35,936 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:38,452 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185501,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:38,568 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:41,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185503,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:41,415 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:44,226 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185506,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:44,426 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:47,136 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185508,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:47,236 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:50,002 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185511,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:50,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:52,919 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185514,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:53,019 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:54,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:31:54,372 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:31:55,803 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185517,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:55,888 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:31:58,718 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185520,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:31:58,818 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:01,612 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185523,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:01,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:03,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:32:04,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:32:04,550 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185526,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:04,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:07,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185529,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:07,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:22,032 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185544,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:22,117 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:23,820 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:32:23,867 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:32:33,490 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:32:33,552 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:32:36,553 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185559,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:36,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:50,481 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:32:50,850 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:32:51,035 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185572,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:32:51,082 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:32:53,353 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:32:53,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:32:54,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:32:57,343 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 11:32:57,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 11:32:57,931 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 11:32:58,003 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:32:58,294 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 11:32:58,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 11:33:03,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:33:03,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:33:03,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 11:33:03,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 11:33:03,933 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1515870811} + +[INFO ] 2018-06-28 11:33:04,839 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530156786,"deviceToken":"t2j0eN4cWhaxnERy","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 11:33:05,087 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530185586} + +[INFO ] 2018-06-28 11:33:05,187 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530156786} + +[INFO ] 2018-06-28 11:33:05,487 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530185586,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 11:33:06,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:33:06,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185587,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:33:07,469 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:33:07,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:33:08,416 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:33:20,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185602,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:33:20,449 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:33:22,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:33:22,888 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:33:32,532 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : heartbeat : {"deviceId":"CMCC-30729-0478632013B0"} : 5683 + +[INFO ] 2018-06-28 11:33:32,601 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:33:34,664 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185617,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:33:34,751 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:33:35,567 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:33:35,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:33:48,446 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.8/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 11:33:50,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185630,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:33:50,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:33:52,366 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:33:52,404 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:34:02,077 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:34:02,611 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:34:02,972 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:34:03,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185645,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:03,952 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:05,500 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 11:34:06,585 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185648,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:07,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:09,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185651,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:09,627 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:12,431 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185654,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:12,538 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:15,333 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185657,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:15,417 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:18,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185660,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:18,917 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:21,123 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185663,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:21,418 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:21,879 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:34:21,948 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:34:26,940 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185669,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:27,027 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:29,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.6 : inform/data : {"deviceId":"CMCC-30729-0478632013B0","childDeviceId":"","eventType":"Inform","timestamp":1530185672,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.5"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 11:34:29,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:34:51,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 11:34:51,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:35:44,695 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 11:35:44,858 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 11:35:44,858 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 11:35:44,874 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 11:35:44,874 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 11:35:44,874 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 11:35:45,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 11:35:45,375 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 11:35:45,460 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 11:35:54,410 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1515870811} + +[INFO ] 2018-06-28 11:35:54,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 11:35:55,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530185756} + +[INFO ] 2018-06-28 11:35:56,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530156957,"deviceToken":"HuCuYmZApfubLEOR","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 11:35:56,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530185757} + +[INFO ] 2018-06-28 11:35:56,585 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530156957} + +[INFO ] 2018-06-28 11:35:57,501 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:35:57,902 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:35:58,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530185758,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 11:35:58,502 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:36:27,972 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 11:36:28,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 11:36:29,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:36:29,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 11:36:29,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 11:36:34,186 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:36:34,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 11:36:34,915 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 11:36:35,408 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530185794} + +[INFO ] 2018-06-28 11:36:35,470 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:36:36,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530156997,"deviceToken":"HuCuYmZApfubLEOR","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 11:36:36,493 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530185795} + +[INFO ] 2018-06-28 11:36:36,955 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530156997} + +[INFO ] 2018-06-28 11:36:37,496 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530185795,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 11:36:37,559 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:36:37,940 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:36:37,986 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:36:39,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:36:39,630 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:37:09,764 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:37:09,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:37:22,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.8/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 11:37:22,952 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.8/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 11:37:39,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 11:41:15,005 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:41:15,390 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 11:41:19,326 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 11:41:27,060 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 11:41:27,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 11:41:27,398 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 11:41:27,476 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 11:41:27,940 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 11:41:27,999 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 11:41:32,922 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 11:41:33,006 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 11:41:33,623 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530186094} + +[INFO ] 2018-06-28 11:41:34,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530157295,"deviceToken":"7sxtXbP3m/Auo7M0","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 11:41:34,902 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530186096} + +[INFO ] 2018-06-28 11:41:35,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530157296} + +[INFO ] 2018-06-28 11:41:36,540 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:41:37,009 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:41:37,087 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530186096,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 11:41:37,441 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 11:42:07,988 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:42:08,035 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:42:37,509 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:42:37,556 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:43:07,038 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:43:07,086 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:43:36,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:43:36,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:44:06,132 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:44:06,176 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:44:35,654 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:44:35,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:45:05,189 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:45:34,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:45:34,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:46:04,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:46:04,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:46:33,716 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:46:33,768 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:47:03,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:47:03,278 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:47:32,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:47:32,813 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:48:02,237 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:48:02,305 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:48:31,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:48:31,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:49:01,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:49:01,331 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:49:30,788 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:49:30,832 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:50:00,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:50:00,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:50:29,810 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:50:29,870 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:50:59,394 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:50:59,914 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:51:28,832 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:51:28,880 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:51:58,342 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:51:58,391 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:52:27,851 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:52:27,899 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:52:57,372 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:52:57,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:53:26,906 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:53:26,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:53:56,389 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:53:56,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:54:26,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:54:26,447 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:54:55,418 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:54:55,474 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:55:24,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:55:24,974 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:55:54,444 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:55:54,492 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:56:23,960 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:56:24,036 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:56:53,474 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:56:53,530 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:57:22,986 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:57:23,034 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:57:52,508 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:57:52,552 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:58:22,381 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:58:22,428 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:58:51,900 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:58:51,944 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:59:21,062 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:59:21,115 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 11:59:50,565 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 11:59:50,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:00:20,087 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:00:20,228 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:00:49,608 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:00:49,652 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:01:19,121 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:01:19,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:01:48,687 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:02:18,153 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:02:18,201 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:02:47,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:03:17,188 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:03:17,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:03:46,695 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:03:46,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:04:16,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:04:16,279 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:04:45,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:04:45,869 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:05:15,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:05:15,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:05:44,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:05:44,837 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:06:14,295 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:06:14,347 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:06:43,793 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:06:43,865 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:07:13,315 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:07:13,391 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:07:42,824 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:07:42,869 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:08:12,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:08:12,387 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:08:41,877 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:08:41,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:09:11,396 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:09:11,442 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:09:40,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:09:41,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:10:10,445 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:10:10,495 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:10:39,939 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:10:39,992 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:11:09,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:11:09,503 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:11:38,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:11:39,020 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:12:08,492 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:12:08,538 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:12:38,064 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:12:38,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:13:07,529 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:13:07,575 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:13:37,045 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:13:37,093 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:14:06,554 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:14:06,604 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:14:36,092 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:14:36,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:15:05,598 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:15:05,669 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:15:35,142 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:15:35,206 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:16:04,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:16:04,675 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 12:16:34,152 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 12:16:34,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:23:49,253 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:24:05,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:24:05,979 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:24:07,435 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 13:24:07,488 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 13:24:07,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:24:07,815 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:24:08,431 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 13:24:08,486 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 13:24:13,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:24:13,295 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 13:24:14,977 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530163456} + +[INFO ] 2018-06-28 13:24:15,751 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530163457,"deviceToken":"7sxtXbP3m/Auo7M0","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 13:24:17,380 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530163458} + +[INFO ] 2018-06-28 13:24:18,252 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530163458} + +[INFO ] 2018-06-28 13:24:19,288 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530163460,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 13:24:19,374 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:24:47,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:24:47,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:27:51,885 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 13:27:51,931 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 13:27:52,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:27:52,359 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:27:53,423 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:27:53,471 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:27:54,768 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:27:54,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:27:55,951 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:27:56,018 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:27:59,897 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:27:59,955 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:28:01,002 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:28:01,305 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:28:02,775 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:28:02,821 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:35:18,886 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:35:19,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:35:28,812 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 13:35:28,862 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 13:35:29,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:35:29,321 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 13:35:29,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 13:35:29,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 13:35:34,581 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 13:35:34,638 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 13:35:36,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530164137} + +[INFO ] 2018-06-28 13:35:38,122 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530164139,"deviceToken":"aN5cron1r5kD1zUy","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 13:35:39,380 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530164140} + +[INFO ] 2018-06-28 13:35:39,487 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530164141} + +[INFO ] 2018-06-28 13:35:41,203 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530164142,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.7"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 13:35:41,732 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:36:14,966 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:36:15,345 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:36:29,008 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:36:34,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 13:36:34,727 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 13:36:38,159 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:36:39,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:36:39,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:37:00,499 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:37:00,816 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:37:08,895 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:37:08,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:37:10,542 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:37:10,946 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 13:37:10,966 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 13:37:13,603 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:37:38,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:37:38,433 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:37:53,155 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:37:53,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 13:37:59,047 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 13:37:59,062 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 13:37:59,502 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-B0F89315BF4B","fileType":"FIRM"} + +[INFO ] 2018-06-28 13:37:59,559 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 13:38:01,245 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:38:04,274 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:38:07,188 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530164288,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 13:38:07,306 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:38:10,254 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 13:38:18,466 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530164299,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 13:38:18,547 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:38:37,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530164319,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 13:38:37,842 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:38:39,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530164320} + +[INFO ] 2018-06-28 13:38:39,298 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530164320} + +[INFO ] 2018-06-28 13:38:40,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530164322,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 13:38:41,292 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:39:09,383 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:39:38,903 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530164380} + +[INFO ] 2018-06-28 13:39:39,220 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530164380} + +[INFO ] 2018-06-28 13:39:40,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530164382,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 13:39:40,768 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 13:40:09,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:40:09,319 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:40:38,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:40:38,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:41:08,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:41:08,245 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:41:37,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:41:37,753 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:42:07,125 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:42:07,155 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:42:36,584 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:42:36,629 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:43:06,051 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:43:06,097 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:43:35,538 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:43:35,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:44:05,002 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:44:05,084 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:44:34,440 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:44:34,488 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:45:03,903 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:45:03,948 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:45:33,368 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:45:33,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:46:02,836 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:46:02,884 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:46:32,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:46:32,353 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:47:04,610 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:47:04,662 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:47:33,976 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:47:34,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:48:03,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:48:03,414 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:48:32,715 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:48:32,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:49:02,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:49:02,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:49:31,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:49:31,507 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:50:00,817 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:50:00,865 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:50:30,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:50:30,232 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:50:59,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:50:59,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:51:29,095 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:51:29,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:51:58,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:51:58,644 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:52:28,067 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:52:28,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:52:57,496 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:52:57,542 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:53:29,805 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:53:29,851 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:53:59,176 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:53:59,252 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:54:28,552 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:54:28,612 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:54:57,899 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:54:57,945 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:55:27,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:55:27,317 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:55:56,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:55:56,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:56:26,010 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:56:26,056 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:56:55,469 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:57:24,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:57:24,995 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:57:54,407 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:57:54,454 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:58:23,875 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:58:23,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:58:53,338 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:58:53,377 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:59:22,826 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:59:22,894 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 13:59:52,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 13:59:52,312 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:00:21,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:00:21,841 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:00:51,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:00:51,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:01:20,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:01:20,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:01:50,145 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:01:50,196 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:02:19,627 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:02:19,693 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:02:49,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:02:49,116 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:03:18,546 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:03:18,594 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:03:48,020 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:03:48,066 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:04:17,482 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:04:17,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:04:46,970 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:04:47,051 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:05:16,401 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:05:16,452 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:05:45,886 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:05:45,943 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:06:15,346 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:06:15,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:06:44,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:06:44,866 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:07:14,265 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:07:14,313 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:07:43,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:07:43,776 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:08:04,544 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1515870811} + +[INFO ] 2018-06-28 14:08:04,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530166086} + +[INFO ] 2018-06-28 14:08:05,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:08:06,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:08:06,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:08:06,306 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:08:08,724 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.8/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 14:08:08,840 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.8/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:08:13,601 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:08:36,313 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:08:36,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:08:38,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:08:40,602 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:08:42,088 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 14:08:42,119 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:08:45,162 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:09:01,925 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:09:01,992 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:09:02,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:09:02,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:09:02,842 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:09:02,886 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:09:07,853 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:09:07,904 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:09:08,621 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530194949} + +[INFO ] 2018-06-28 14:09:09,270 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530166150,"deviceToken":"Hnz+oA73SKlIdUej","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:09:09,544 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530194951} + +[INFO ] 2018-06-28 14:09:09,762 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530166151} + +[INFO ] 2018-06-28 14:09:10,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194951,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:09:10,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:11,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:09:11,799 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:09:12,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194952,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"11"},{"paramCode":"relativeHumidity","paramValue":"83"},{"paramCode":"degC","paramValue":"270"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:12,327 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:26,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194967,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1871"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:26,442 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:31,009 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194972,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"270"},{"paramCode":"co2","paramValue":"1876"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:31,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:35,826 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194977,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1879"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:35,934 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:40,946 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194982,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1880"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:41,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:41,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:09:41,763 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:09:45,727 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194987,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1882"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:45,812 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:50,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194992,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"82"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1884"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:50,609 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:09:55,339 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530194997,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1890"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:09:55,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:00,468 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195002,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1896"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:00,572 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:05,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195007,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1897"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:05,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:10,058 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195011,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1896"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:10,142 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:13,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:10:13,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:10:14,843 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195016,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1892"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:15,172 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:19,955 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195021,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1888"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:20,075 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:24,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195026,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1881"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:24,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:29,561 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195031,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1878"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:29,656 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:34,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195036,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1870"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:34,787 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:39,460 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195041,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1862"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:39,534 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:43,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:10:43,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:10:44,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195046,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"19"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"271"},{"paramCode":"co2","paramValue":"1859"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:44,349 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:49,057 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195051,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1850"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:49,174 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:54,185 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195056,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1838"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:54,663 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:10:58,976 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195061,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1821"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:10:59,053 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:11:03,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195066,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1783"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:11:03,845 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:11:08,587 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195070,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"80"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1773"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:11:09,165 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:11:11,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632013BB","fileType":"FIRM"} + +[INFO ] 2018-06-28 14:11:11,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 14:11:19,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530195073,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 14:11:19,845 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:11:21,478 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:11:21,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:11:23,332 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530195075,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.6"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"81"},{"paramCode":"degC","paramValue":"272"},{"paramCode":"co2","paramValue":"1718"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:11:23,407 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:11:25,647 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530195076,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 14:11:25,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:03,883 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:16:03,923 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:16:04,245 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:16:04,314 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:16:04,833 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:16:04,883 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:16:09,884 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:16:09,965 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:16:11,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530166573} + +[INFO ] 2018-06-28 14:16:12,265 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530166573,"deviceToken":"Hnz+oA73SKlIdUej","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:16:13,504 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530166575} + +[INFO ] 2018-06-28 14:16:13,691 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530166575} + +[INFO ] 2018-06-28 14:16:15,393 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166576,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:16:15,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:19,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166580,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:19,381 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:24,389 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166585,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:24,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:29,164 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166590,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:29,249 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:33,998 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166595,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:34,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:38,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166600,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:38,863 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:43,866 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:16:43,956 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:16:44,190 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166605,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:44,247 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:16:45,382 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:16:59,802 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166621,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"78"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1390"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:16:59,897 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:03,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632013BB","fileType":"FIRM"} + +[INFO ] 2018-06-28 14:17:03,591 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 14:17:03,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166624,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"1390"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:17:03,775 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:12,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166634,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 14:17:12,871 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:19,367 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166640,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1412"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:17:19,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:20,377 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166641,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 14:17:20,378 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:36,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166657,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 14:17:36,390 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:37,632 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530166659} + +[INFO ] 2018-06-28 14:17:37,753 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530166659} + +[INFO ] 2018-06-28 14:17:39,521 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166661,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:17:39,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:41,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166662,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1454"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:17:41,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:45,980 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166667,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1457"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:17:46,047 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:17:55,923 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166677,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1459"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:17:56,011 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:00,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166682,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1458"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:18:01,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:06,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166687,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"76"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1454"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:18:06,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:08,296 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632013BB","fileType":"FIRM"} + +[INFO ] 2018-06-28 14:18:08,359 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 14:18:15,995 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:18:16,056 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:18:16,987 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166698,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 14:18:17,069 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:20,152 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166701,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"77"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1451"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:18:20,228 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:24,440 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166705,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 14:18:24,532 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:41,535 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"File","timestamp":1530166723,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 14:18:41,620 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:42,808 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530166724} + +[INFO ] 2018-06-28 14:18:42,908 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530166724} + +[INFO ] 2018-06-28 14:18:44,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166726,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:18:44,804 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:45,988 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166727,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"75"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1465"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:18:46,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:18:55,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166736,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"75"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1460"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:18:55,501 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:19:00,100 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530166741,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"75"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1455"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:19:00,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:19:03,024 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:19:03,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:19:13,853 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:24:20,757 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:24:20,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:24:21,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:24:21,810 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:24:21,860 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:24:26,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:24:26,801 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:24:28,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530167069} + +[INFO ] 2018-06-28 14:24:29,146 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530167070,"deviceToken":"bnWMIHWuliZjvEiu","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:24:30,329 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530167071} + +[INFO ] 2018-06-28 14:24:30,495 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530167072} + +[INFO ] 2018-06-28 14:24:32,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167073,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:24:32,349 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:24:36,293 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167077,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"303"},{"paramCode":"co2","paramValue":"1340"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:24:36,383 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:24:37,088 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:24:37,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:25:01,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:25:51,025 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:25:51,105 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:25:51,346 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:25:51,424 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:25:52,641 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:25:52,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:25:53,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:25:53,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:25:54,351 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:25:54,400 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:25:59,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:25:59,519 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:26:01,229 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530167162} + +[INFO ] 2018-06-28 14:26:02,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530167163,"deviceToken":"RfZUPCrWK6riZZn4","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:26:03,310 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530167164} + +[INFO ] 2018-06-28 14:26:03,670 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530167165} + +[INFO ] 2018-06-28 14:26:05,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167166,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:26:06,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:07,211 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167168,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1428"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:07,662 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:11,625 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167173,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1437"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:11,761 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:12,150 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:26:12,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:26:12,335 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:12,410 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:13,549 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:13,630 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:14,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:15,806 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:15,866 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:16,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167177,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"307"},{"paramCode":"co2","paramValue":"1464"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:16,491 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:16,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:16,997 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:18,072 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:18,145 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:19,229 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:19,313 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:20,378 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:20,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:21,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167182,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1496"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:21,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:21,695 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:21,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:22,805 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:22,866 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:25,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167187,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1512"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:26,073 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:26,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:26,870 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:27,948 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:28,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:29,104 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:29,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:30,221 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:30,650 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:31,097 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167192,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1545"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:31,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:32,165 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:32,225 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:32,877 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:32,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:33,768 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:26:33,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:26:34,006 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:26:34,073 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:35,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:26:35,895 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167197,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1563"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:35,974 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:40,709 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167202,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"309"},{"paramCode":"co2","paramValue":"1602"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:40,786 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:43,528 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"co2"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:26:43,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:26:45,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167207,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"309"},{"paramCode":"co2","paramValue":"1640"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:45,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:49,977 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"dataPM25"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:26:50,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:26:50,636 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167212,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1658"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:50,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:26:55,404 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167216,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1695"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:26:55,488 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:00,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167221,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1732"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:00,308 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:00,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"degC"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:27:00,874 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:27:03,640 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:27:03,741 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:27:05,362 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167226,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1749"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:05,494 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:08,914 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"firmware"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:27:09,161 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:27:10,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167231,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1774"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:10,278 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:14,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167236,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1785"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:15,027 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:18,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"mir.switchStatus"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:27:18,908 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:27:19,692 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167241,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1804"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:19,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:24,819 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167246,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"307"},{"paramCode":"co2","paramValue":"1823"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:24,918 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:28,581 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"relativeHumidity"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:27:28,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:27:29,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167251,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"307"},{"paramCode":"co2","paramValue":"1835"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:29,761 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:32,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:27:32,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:27:34,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"softVersion"}]},"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:27:34,416 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 14:27:34,640 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"ParamChange","timestamp":1530167255,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"307"},{"paramCode":"co2","paramValue":"1862"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:34,723 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:39,293 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167260,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1876"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:39,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:44,311 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167265,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1905"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:44,385 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:49,207 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167270,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:49,394 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:27:53,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530167275,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"308"},{"paramCode":"co2","paramValue":"1961"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:27:54,005 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:28:10,449 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:28:10,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:28:10,644 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:10,730 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:11,800 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:12,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:13,283 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:13,346 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:14,415 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:14,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:15,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:15,624 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:21,720 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:28:21,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:28:21,933 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:22,298 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:22,650 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30728-0478632013BB"} + +[INFO ] 2018-06-28 14:28:23,196 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:24,130 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:24,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:24,325 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:25,405 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:25,487 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:27,146 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:27,665 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:28,321 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:28,466 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:29,537 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:29,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:30,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:30,760 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:31,816 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:32,147 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:32,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:32,997 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:34,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:34,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:38,082 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:38,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:42,072 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:42,160 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:45,981 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:46,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:47,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:47,824 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:28:48,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:49,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:49,276 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:50,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:50,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:28:51,221 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:28:52,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:28:55,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:28:55,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:28:55,775 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:28:56,160 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:28:56,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530167338} + +[INFO ] 2018-06-28 14:28:57,699 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:29:00,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530167340,"deviceToken":"fpfDeLVFE9PO2hzh","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:29:00,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 14:29:01,252 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530167342} + +[INFO ] 2018-06-28 14:29:01,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530167342} + +[INFO ] 2018-06-28 14:29:03,132 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530167344,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:29:03,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:29:31,423 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:29:31,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:30:00,888 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:30:00,952 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:30:30,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:30:30,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:30:59,815 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:30:59,860 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:31:29,265 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:31:29,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:31:58,725 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:31:58,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:32:28,185 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:32:28,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:32:57,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:32:57,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:33:27,119 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:33:27,164 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:33:28,135 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:33:28,553 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 14:33:33,932 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:33:56,579 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:33:56,622 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:34:26,064 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:34:26,146 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:34:55,511 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:34:55,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:35:24,978 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:35:25,022 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:35:54,448 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:35:54,502 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:36:23,905 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:36:23,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:36:53,364 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:36:53,408 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:37:22,841 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:37:22,910 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:37:52,659 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:37:52,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:38:01,090 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:38:01,138 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:38:01,296 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 14:38:01,388 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:38:01,956 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:38:02,011 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:38:06,931 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 14:38:07,000 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:38:08,639 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530167890} + +[INFO ] 2018-06-28 14:38:09,456 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-B0F89315BF4B","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530167890,"deviceToken":"5yzi96jREK42LN85","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:38:10,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530167892} + +[INFO ] 2018-06-28 14:38:10,828 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530167892} + +[INFO ] 2018-06-28 14:38:12,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530167894,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:38:12,599 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:38:41,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:38:41,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:39:10,626 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:39:10,691 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:39:40,083 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:39:40,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:39:46,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/HczzZwcb4w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30729-B0F89315BF4B","fileType":"FIRM"} + +[INFO ] 2018-06-28 14:39:46,294 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 14:39:53,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530167995,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 14:39:54,042 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:40:05,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530168006,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 14:40:05,328 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:40:24,541 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530168026,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 14:40:24,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:40:25,872 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530168027} + +[INFO ] 2018-06-28 14:40:26,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168027} + +[INFO ] 2018-06-28 14:40:27,802 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530168029,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:40:28,615 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:40:55,945 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:40:56,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:41:25,387 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:41:25,430 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:41:54,848 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:41:54,911 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:41:55,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:41:55,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:41:55,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:41:56,182 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:42:10,482 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:42:11,415 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 14:42:15,345 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.8/device/command/unbind : +{"deviceId":"CMCC-30729-B0F89315BF4B"} + +[INFO ] 2018-06-28 14:42:15,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.8/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:42:16,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 14:42:19,581 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:42:19,649 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:42:20,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:42:20,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:42:21,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:42:21,612 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:42:23,671 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:42:24,696 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:42:25,960 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:42:26,025 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:42:28,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530168150} + +[INFO ] 2018-06-28 14:42:29,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530168151,"deviceToken":"SCEPaXCdNPYxpnmj","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:42:31,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168153} + +[INFO ] 2018-06-28 14:42:31,676 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168153} + +[INFO ] 2018-06-28 14:42:34,943 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530168156,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:42:35,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:43:12,873 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 14:43:13,211 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:43:59,380 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:45:00,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:00,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:01,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:01,601 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:02,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:02,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:03,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:03,876 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:04,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:05,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:06,086 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:06,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:07,225 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:07,287 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:08,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:08,484 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:09,541 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:09,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:10,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:10,741 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:11,813 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:11,870 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:12,950 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:13,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:14,116 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:14,203 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:15,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:15,308 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:16,380 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:16,440 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:17,519 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:17,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:18,692 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:18,760 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:19,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:19,905 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:20,945 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:21,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:22,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:22,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:23,221 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:23,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:24,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:24,449 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:25,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:25,617 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:26,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:26,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:28,113 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:28,156 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:28,941 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:29,019 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:30,078 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:30,201 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:31,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:31,328 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:32,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:33,566 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:33,652 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:34,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:34,759 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:35,838 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:35,927 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:36,980 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:37,085 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:38,104 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:38,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:39,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:39,355 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:40,428 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:40,483 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:41,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:41,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:42,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:42,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:43,867 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:43,952 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:44,975 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:45,048 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:46,125 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:46,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:47,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:47,351 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:48,391 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:48,459 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:49,553 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:49,608 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:50,669 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:50,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:51,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:51,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:53,104 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:53,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:54,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:54,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:55,239 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:55,306 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:56,373 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:56,444 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:57,515 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:57,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:58,650 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:58,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:45:59,863 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:45:59,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:00,983 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:01,043 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:02,122 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:02,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:03,270 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:03,867 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:04,393 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:04,486 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:06,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:06,754 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:08,122 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:08,203 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:09,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:09,326 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:10,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:10,447 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:11,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:11,584 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:12,670 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:12,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:14,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:14,148 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:14,948 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:15,034 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:40,092 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:46:45,417 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:46:51,318 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:51,392 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:46:51,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:46:51,874 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:46:56,700 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:46:56,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:46:59,063 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168420} + +[INFO ] 2018-06-28 14:46:59,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 14:47:01,462 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530168422} + +[INFO ] 2018-06-28 14:47:02,446 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530168424,"deviceToken":"hI7/6NUmpL/E5Jc+","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:47:18,007 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168439} + +[INFO ] 2018-06-28 14:47:18,053 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 14:47:20,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530168441} + +[INFO ] 2018-06-28 14:47:20,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530168442,"deviceToken":"hI7/6NUmpL/E5Jc+","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:47:22,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168444} + +[INFO ] 2018-06-28 14:47:23,009 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168444} + +[INFO ] 2018-06-28 14:47:26,431 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530168447,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:47:26,523 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:48:17,630 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168499} + +[INFO ] 2018-06-28 14:48:17,723 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168499} + +[INFO ] 2018-06-28 14:48:21,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530168502,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:48:21,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:49:15,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168557} + +[INFO ] 2018-06-28 14:49:15,587 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168557} + +[INFO ] 2018-06-28 14:49:18,939 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530168560,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:49:19,035 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:49:27,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 14:49:28,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:49:34,083 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:49:34,139 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:49:34,306 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:49:34,413 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:49:34,871 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:49:35,090 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:49:39,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:49:39,999 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:49:41,654 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530168583} + +[INFO ] 2018-06-28 14:49:42,725 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530168584,"deviceToken":"sUb9rC6nqqUX11Fg","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:49:43,891 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530168585} + +[INFO ] 2018-06-28 14:49:43,987 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168585} + +[INFO ] 2018-06-28 14:49:45,621 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530168587,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:49:45,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:50:05,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.8/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 14:50:05,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.8/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 14:50:14,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 14:50:20,044 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:50:20,120 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:50:20,341 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:20,620 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:21,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:50:21,324 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:50:21,461 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:22,172 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:22,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:22,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:23,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:23,339 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:23,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:23,660 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:24,430 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:24,519 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:24,636 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:25,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:25,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:25,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:25,791 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:25,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:25,992 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:50:26,736 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:27,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:27,296 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:27,625 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:28,084 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:28,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:28,247 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:28,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:29,249 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:29,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:29,632 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:29,695 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:30,398 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:30,631 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:30,690 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:30,770 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:31,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:32,115 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:32,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:33,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:34,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:34,741 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:50:35,246 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:35,610 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 14:50:36,096 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:50:36,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:36,308 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:50:37,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:50:37,275 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:50:37,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:50:37,714 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:50:39,782 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 14:50:39,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:50:40,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 14:50:40,780 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:50:41,556 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530168643} + +[INFO ] 2018-06-28 14:50:42,228 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530168643,"deviceToken":"XXLzBvY10Bb9B2CJ","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:50:43,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530168644} + +[INFO ] 2018-06-28 14:50:43,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530168645,"deviceToken":"rbAM7qeDX1YPzXOm","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:50:43,707 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.8","timestamp":1530168645} + +[INFO ] 2018-06-28 14:50:44,130 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168645} + +[INFO ] 2018-06-28 14:50:45,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.6","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530168646} + +[INFO ] 2018-06-28 14:50:45,321 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168647} + +[INFO ] 2018-06-28 14:50:45,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530168647,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:50:47,119 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:50:48,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530168650,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:50:48,906 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:00,125 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530168661} + +[INFO ] 2018-06-28 14:51:00,175 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 14:51:04,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530168665} + +[INFO ] 2018-06-28 14:51:04,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 14:51:06,139 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530168667} + +[INFO ] 2018-06-28 14:51:07,011 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530168668,"deviceToken":"DAdgD6xXhh6CZPVk","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:51:08,784 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530168670} + +[INFO ] 2018-06-28 14:51:08,868 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168670} + +[INFO ] 2018-06-28 14:51:14,147 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:51:14,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:51:14,380 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 14:51:14,425 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 14:51:14,629 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:51:14,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 14:51:15,291 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 14:51:15,341 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 14:51:20,367 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BB","deviceType":"30728"} + +[INFO ] 2018-06-28 14:51:20,456 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 14:51:22,160 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BB","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530168683} + +[INFO ] 2018-06-28 14:51:23,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632013BB","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530168684,"deviceToken":"DAdgD6xXhh6CZPVk","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 14:51:24,640 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30728-0478632013BB","deviceType":"30728","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530168685} + +[INFO ] 2018-06-28 14:51:24,720 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530168686} + +[INFO ] 2018-06-28 14:51:26,545 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168688,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 14:51:26,636 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:30,143 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168691,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"296"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:30,225 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:34,784 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168696,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"296"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:34,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:39,931 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168701,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:43,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:51:43,668 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:51:44,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168706,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:44,794 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:49,459 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168710,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:49,544 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:54,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168715,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:54,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:51:55,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:51:59,422 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168720,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:51:59,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:04,408 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168725,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:04,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:09,023 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168730,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"295"},{"paramCode":"co2","paramValue":"967"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:09,106 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:13,068 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:52:13,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:52:13,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168735,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"962"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:13,912 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:18,973 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168740,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"961"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:19,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:23,847 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168745,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"960"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:23,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:24,568 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:52:24,617 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:52:28,562 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168750,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"959"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:28,648 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:33,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168755,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"959"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:33,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:38,394 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168759,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"959"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:38,488 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:42,545 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:52:42,590 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:52:43,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168764,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"959"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:43,324 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:48,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168769,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"294"},{"paramCode":"co2","paramValue":"958"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:48,070 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:53,142 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168774,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"956"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:53,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:52:54,031 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:52:54,078 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:52:57,960 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168779,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"956"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:52:58,037 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:02,728 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168784,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:02,829 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:07,543 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168789,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:07,641 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:12,007 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:53:12,048 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:53:12,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168794,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:12,761 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:17,462 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168799,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:18,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:22,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168803,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:22,342 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:23,502 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:53:23,546 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:53:27,051 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168808,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:27,123 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:32,180 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168813,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:32,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:36,961 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168818,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:37,027 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:41,475 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:53:41,543 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:53:41,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168823,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:41,861 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:46,854 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168828,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:46,981 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:52,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168833,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"953"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:52,177 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:53:52,977 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:53:53,035 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:53:56,484 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168838,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"952"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:53:56,563 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:01,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168842,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"952"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:01,334 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:06,416 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168847,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"950"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:06,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:10,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:54:10,978 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:54:11,208 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168852,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"948"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:11,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:15,991 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168857,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"947"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:16,076 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:20,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168862,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:20,887 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:22,426 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:54:22,472 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:54:25,884 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168867,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:25,962 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:30,703 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168872,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:30,800 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:35,519 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168877,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:35,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:40,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168881,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:41,116 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:41,182 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:54:41,258 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:54:45,423 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168886,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:45,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:50,195 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168891,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:50,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:54:51,885 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:54:51,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:54:54,996 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168896,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:54:55,107 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:00,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168901,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:00,262 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:04,907 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168906,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:04,993 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:09,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168911,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:09,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:10,141 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:55:10,175 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:55:14,513 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168916,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:14,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:19,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168921,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:19,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:21,345 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:55:21,411 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:55:24,407 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168925,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:24,503 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:29,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168930,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:29,327 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:34,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168935,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:34,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:39,131 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168940,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:39,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:39,638 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:55:39,696 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:55:43,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168945,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:44,007 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:48,769 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168950,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:48,859 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:50,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:55:50,874 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:55:53,564 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168955,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:54,120 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:55:58,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168960,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:55:59,085 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:03,459 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168965,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:03,595 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:08,322 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168969,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:08,457 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:09,076 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:56:09,111 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:56:13,346 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168974,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:13,446 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:18,128 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168979,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:18,213 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:20,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:56:20,352 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:56:22,917 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168984,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:23,006 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:25,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168987,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:25,583 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:27,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168989,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:27,867 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:32,927 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168994,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:33,016 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:37,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530168999,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:37,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:38,535 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:56:38,579 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:56:47,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169008,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:47,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:49,782 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:56:49,853 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:56:52,348 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169013,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:52,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:56:57,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169018,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:56:57,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:02,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169023,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:02,130 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:06,797 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169028,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:06,913 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:07,995 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:57:08,048 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:57:11,904 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169033,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:11,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:16,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169038,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:16,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:19,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:57:19,310 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:57:21,568 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169043,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:21,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:26,647 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169048,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:26,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:31,392 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169052,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:31,488 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:36,223 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169057,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:36,308 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:37,471 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:57:37,549 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:57:40,991 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169062,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:41,069 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:46,067 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169067,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:46,578 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:48,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:57:48,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:57:50,897 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169072,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:50,963 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:57:55,697 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169077,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:57:55,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:00,558 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169082,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:00,641 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:05,649 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169087,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:05,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:06,924 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:58:06,970 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:58:10,429 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169091,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:10,522 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:15,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169096,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:15,631 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:18,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:58:18,188 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:58:19,979 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169101,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:20,134 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:30,032 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169111,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"74"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:30,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:35,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169117,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:36,101 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:36,393 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:58:36,438 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:58:39,844 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169121,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:39,900 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:44,651 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169126,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:44,717 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:47,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:58:47,657 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:58:49,484 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169131,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:49,610 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:58:54,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169135,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:58:54,350 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:05,572 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169147,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:05,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:06,135 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:59:06,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:59:08,969 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169150,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:09,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:13,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169155,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:13,841 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:17,085 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:59:17,153 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:59:18,816 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169160,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:18,901 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:33,317 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169174,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"73"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:33,429 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:35,530 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 14:59:35,576 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:59:38,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169180,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:38,871 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:43,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169184,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:43,301 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:46,540 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 14:59:46,586 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 14:59:48,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169189,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:48,583 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:53,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169194,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"945"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:53,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 14:59:57,902 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169199,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 14:59:58,068 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:02,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169204,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"948"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:02,803 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:04,998 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:00:05,062 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:00:07,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169209,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"948"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:07,704 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:12,534 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169214,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"950"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:12,634 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:16,007 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:00:16,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:00:17,421 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169218,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"951"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:17,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:22,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169223,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"951"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:23,569 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:27,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169228,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"952"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:27,074 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:32,103 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169233,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"952"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:32,211 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:34,468 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:00:34,536 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:00:36,951 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169238,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"953"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:37,049 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:41,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169243,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"952"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:41,782 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:45,481 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:00:45,548 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:00:46,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169248,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"950"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:46,603 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:51,569 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169253,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"948"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:51,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:00:56,414 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169257,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:00:56,522 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:01,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169262,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:01,348 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:03,919 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:01:03,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:01:06,828 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169268,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:06,945 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:11,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169272,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:11,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:14,944 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:01:14,989 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:01:15,950 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169277,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:16,088 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:20,685 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169282,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:20,786 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:25,546 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169287,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:25,648 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:27,095 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169288,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:27,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:30,656 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169292,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:30,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:33,378 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:01:33,425 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:01:35,470 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169297,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:35,618 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:40,205 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169301,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:40,287 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:44,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:01:44,485 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:01:45,335 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169306,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:45,413 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:50,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169311,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:50,261 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:54,948 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169316,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:55,031 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:01:59,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169321,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:01:59,851 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:02,862 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:02:02,915 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:02:04,910 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169326,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:05,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:09,660 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169331,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:09,809 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:13,912 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:02:13,961 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:02:14,577 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169336,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:15,082 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:19,579 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169341,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:19,642 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:24,388 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169345,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:24,490 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:29,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169350,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:29,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:32,317 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:02:32,363 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:02:34,014 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169355,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:34,115 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:39,120 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169360,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:39,200 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:43,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:02:43,413 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:02:43,923 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169365,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:44,025 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:48,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169370,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:48,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:53,498 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169375,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:53,593 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:02:59,026 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169380,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:02:59,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:01,776 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:03:01,837 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:03:03,424 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169384,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:03,545 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:12,845 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:03:12,891 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:03:13,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169394,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:13,176 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:18,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169399,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:18,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:22,911 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169404,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:23,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:27,707 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169409,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:27,769 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:31,237 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:03:31,281 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:03:32,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169414,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:32,614 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:37,628 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169419,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:37,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:42,308 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:03:42,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:03:42,574 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169423,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:42,649 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:47,265 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169428,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:47,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:52,433 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169433,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:52,555 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:03:57,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169438,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:03:57,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:00,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:04:00,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:04:01,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169443,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"929"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:02,072 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:06,714 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169448,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"929"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:06,790 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:11,787 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:04:11,870 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:04:12,083 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169453,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"928"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:12,154 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:27,888 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169469,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:27,965 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:30,164 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:04:30,211 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:04:31,355 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169472,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:31,438 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:36,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169477,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:36,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:40,993 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169482,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:41,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:41,687 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:04:41,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:04:45,808 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169487,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:46,071 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:50,891 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169492,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:50,952 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:55,685 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169497,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:04:55,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:04:59,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:04:59,691 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:05:00,474 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169502,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:00,558 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:05,595 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169507,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:05,682 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:10,378 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169511,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"930"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:10,597 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:11,066 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:05:11,124 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:05:15,206 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169516,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"929"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:15,315 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:20,026 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169521,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"928"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:20,127 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:25,141 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169526,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"927"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:25,236 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:29,101 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:05:29,146 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:05:29,917 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169531,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"926"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:30,004 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:34,701 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169536,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"926"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:34,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:39,522 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169541,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"926"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:39,609 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:40,525 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:05:40,576 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:05:44,604 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169546,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"926"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:45,115 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:49,473 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169550,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"925"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:49,561 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:54,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169555,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"924"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:05:54,350 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:05:59,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:05:59,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:05:59,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169560,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"924"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:00,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:09,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169570,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"923"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:09,224 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:09,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:06:10,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:06:13,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169575,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"923"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:14,095 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:18,846 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169580,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"922"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:18,913 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:23,661 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169585,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"922"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:23,751 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:25,042 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 15:06:25,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169587,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"922"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:25,716 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:26,311 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 15:06:28,031 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:06:28,075 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:06:28,442 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169589,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"923"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:28,586 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:33,262 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169594,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"925"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:06:33,573 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:06:33,729 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 15:06:33,780 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 15:06:34,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : request : {"deviceMac":"B0F8931120B9","deviceType":"30728"} + +[INFO ] 2018-06-28 15:06:35,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 15:06:35,740 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 15:06:35,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 15:07:13,462 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169633,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"931"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:16,848 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169638,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"932"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:17,097 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:20,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 15:07:21,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169643,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:22,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:26,629 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:07:27,104 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169648,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:27,177 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:31,553 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169653,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:32,056 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:46,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169668,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:46,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:51,195 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169673,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:51,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:56,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:07:56,162 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:07:56,720 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169678,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:07:56,767 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:07:58,020 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 15:07:58,200 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 15:08:00,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169682,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"282"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:00,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:06,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169687,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:06,138 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:07,586 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:08:07,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:08:10,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169692,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:13,687 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":4,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 15:08:15,544 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169697,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:15,685 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:18,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : success : {"deviceMac":"B0F8931120B9","deviceType":"30728"} + +[INFO ] 2018-06-28 15:08:18,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 15:08:20,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169702,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:20,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:21,750 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.10 : success : {"deviceMac":"B0F8931120B9","deviceType":"30728"} + +[INFO ] 2018-06-28 15:08:21,798 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 15:08:25,117 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169707,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:25,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:25,502 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:08:25,548 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:08:30,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169712,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:30,688 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:35,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169717,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:35,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:37,094 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:08:37,094 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:08:39,859 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169721,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:39,944 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:44,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169726,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:45,023 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:49,741 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169731,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:49,837 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:54,541 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169736,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:54,620 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:08:55,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:08:55,236 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:08:59,374 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169741,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"939"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:08:59,478 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:04,466 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169746,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:04,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:06,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:09:09,284 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169751,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"281"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:09,406 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:14,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169756,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"14"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:14,272 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:18,985 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:23,957 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169765,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:24,045 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:24,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.8 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 15:09:24,485 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:09:28,789 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169770,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"948"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:28,900 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 15:09:33,568 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169775,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"949"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:35,979 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30728-0478632013BB"} : 5683 + +[INFO ] 2018-06-28 15:09:36,018 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 15:09:38,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30728-0478632013BB","childDeviceId":"","eventType":"Inform","timestamp":1530169780,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.8"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"13"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"280"},{"paramCode":"co2","paramValue":"950"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 15:09:38,411 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:03:27,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 16:03:27,261 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 16:03:27,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 16:03:27,273 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 16:03:27,274 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 16:03:27,275 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 16:03:27,916 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 16:03:27,942 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 16:03:27,985 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 16:03:46,231 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:03:47,158 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:03:56,060 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"https://fogcloud.io/#/product/product_details.html?type=2&ID=e1e06ab6531b11e8b7ac00163e30fc50","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30729-B0F89315BF4B"} + +[INFO ] 2018-06-28 16:03:56,086 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 16:03:58,504 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:04:31,507 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:04:35,341 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:11:30,792 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:19:20,287 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 100_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 16:19:20,288 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 16:19:20,288 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 16:19:20,289 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 16:19:20,289 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : ر + +[INFO ] 2018-06-28 16:19:21,032 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:21:23,460 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:21:24,293 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:24:31,542 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:24:32,906 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:24:37,847 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:28:48,817 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:28:49,980 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:28:53,445 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:33:00,877 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:33:01,215 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:35:18,558 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:35:19,751 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:35:31,336 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 16:35:31,404 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 16:35:31,405 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 16:35:31,410 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 16:35:31,411 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 16:35:31,412 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 16:35:31,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 16:35:31,778 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 16:35:31,817 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 16:35:33,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:33,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:36,055 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:35:36,101 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:35:36,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:36,315 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:37,473 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:35:39,149 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:39,242 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:40,147 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:35:40,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:35:42,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:42,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:44,911 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:45,010 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:45,114 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:35:47,829 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:47,928 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:50,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:53,701 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:53,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:56,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:35:56,732 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:35:56,963 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/b2e7e1fe1dd711e8b7ac00163e30fc50/a44D6xn2mA.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 16:35:56,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 16:35:57,275 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/b2e7e1fe1dd711e8b7ac00163e30fc50/a44D6xn2mA.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30413-B0F89315BEED","fileType":"FIRM"} + +[INFO ] 2018-06-28 16:35:57,317 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 16:35:59,546 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:00,225 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:04,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530174965,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 16:36:04,774 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:09,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:36:14,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:14,150 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:15,820 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530174977,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 16:36:16,260 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:16,995 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:17,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:19,931 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:20,290 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:33,638 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530174995,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 16:36:33,744 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:34,474 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:34,543 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:34,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530174996} + +[INFO ] 2018-06-28 16:36:37,294 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:39,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:36:39,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:36:40,279 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:40,358 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:54,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:55,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:36:57,789 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:36:57,885 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:00,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:05,090 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:37:05,171 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:37:08,664 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:37:08,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:37:15,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:37:15,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:24,004 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":-1515870811,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 16:37:24,273 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:30,288 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":-1515870811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:37:30,361 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:30,849 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":-1515870811,"data":{"respCode":2000}} + +[INFO ] 2018-06-28 16:37:31,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:37:34,537 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:37:34,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:37:48,378 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 16:37:48,512 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:38:04,385 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:38:05,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175087} + +[INFO ] 2018-06-28 16:38:05,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 16:38:07,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530175089} + +[INFO ] 2018-06-28 16:38:08,914 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530175090,"deviceToken":"I+tu81yBOQWxCInj","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:38:10,215 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175091} + +[INFO ] 2018-06-28 16:38:10,778 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175091} + +[INFO ] 2018-06-28 16:39:58,313 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:39:58,373 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:39:58,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:39:59,456 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:39:59,500 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:40:04,150 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:40:04,196 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:40:05,947 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175207} + +[INFO ] 2018-06-28 16:40:06,226 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175207} + +[INFO ] 2018-06-28 16:40:07,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530175209,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:40:08,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:40:25,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 16:40:25,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:40:28,622 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:40:28,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:40:28,838 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:28,930 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:29,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:30,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:31,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:31,153 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:32,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:32,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:33,380 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:33,451 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:34,593 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:34,659 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:35,673 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:35,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:36,658 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:40:36,850 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:36,903 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:37,965 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:38,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:38,280 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175239} + +[INFO ] 2018-06-28 16:40:38,342 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 16:40:39,108 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:39,208 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:40,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530175241} + +[INFO ] 2018-06-28 16:40:40,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:41,283 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:42,259 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:42,330 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:42,818 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530175244,"deviceToken":"5lFsPPXiY+i4EtgO","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:40:42,962 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:43,046 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:44,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175245} + +[INFO ] 2018-06-28 16:40:44,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:45,386 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175245} + +[INFO ] 2018-06-28 16:40:45,837 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:45,909 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:46,221 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:40:46,293 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:40:46,371 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:40:49,350 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:40:51,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:40:51,404 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:40:53,326 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175255} + +[INFO ] 2018-06-28 16:40:55,261 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175256,"deviceToken":"9nfUavQ11YtS30aj","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:40:56,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175257} + +[INFO ] 2018-06-28 16:40:56,330 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175257} + +[INFO ] 2018-06-28 16:40:58,123 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175259,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:40:58,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:40:59,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175261,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:40:59,493 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:00,724 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175262,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:00,805 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:03,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175265,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:03,780 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:06,491 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175268,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:06,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:06,839 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"firmware"}]},"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:41:07,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 16:41:09,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"ParamChange","timestamp":1530175271,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:09,556 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:12,332 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175274,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:12,724 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:13,287 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"mir.existStatus"}]},"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:41:13,444 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 16:41:15,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"ParamChange","timestamp":1530175276,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:15,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:18,171 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175279,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:18,260 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:21,058 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175282,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:21,153 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:22,556 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"data":{"paramCodes":[{"paramCode":"softVersion"}]},"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:41:22,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 16:41:24,050 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"ParamChange","timestamp":1530175285,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:24,121 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:26,882 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:41:26,978 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:41:27,723 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175288,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:27,767 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:28,595 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/data : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:41:28,776 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/data resp : +{"respCode":"0"} + +[INFO ] 2018-06-28 16:41:42,911 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"ParamChange","timestamp":1530175304,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:43,225 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:44,431 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175306,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:44,511 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:47,279 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175309,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:47,361 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:50,166 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175311,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:50,253 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:53,106 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175314,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:53,228 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:56,020 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175317,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:56,101 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:41:56,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:41:56,494 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:41:58,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175320,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:41:59,274 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:01,872 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175323,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:42:01,944 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:04,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175326,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:42:04,851 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:07,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175329,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:42:07,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:10,615 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175332,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:42:10,754 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:25,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175346,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:42:25,224 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:25,918 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:42:25,962 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:42:39,812 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175361,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:42:39,903 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:54,297 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175376,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:42:54,718 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:42:55,379 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:42:55,426 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:43:09,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175390,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:43:09,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:43:11,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175393,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:43:24,887 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:43:24,953 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:43:26,322 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175408,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:43:26,396 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:43:40,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175422,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:43:41,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:43:52,595 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175434,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:43:53,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:43:54,312 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:43:54,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:44:07,171 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175448,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:44:07,255 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:22,253 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175463,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:44:22,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:23,782 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 16:44:23,823 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:44:36,298 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175478,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:44:36,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:39,180 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175480,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:44:39,251 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:42,048 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175483,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:44:42,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:45,029 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175486,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:44:45,245 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:47,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175489,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:44:47,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:44:50,823 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175492,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:44:50,913 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:46:22,754 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175584} + +[INFO ] 2018-06-28 16:46:22,821 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 16:46:24,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175586} + +[INFO ] 2018-06-28 16:46:25,858 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175586,"deviceToken":"7vqr/xy7m3/oYWYG","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:46:26,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175588} + +[INFO ] 2018-06-28 16:46:26,836 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175588} + +[INFO ] 2018-06-28 16:46:28,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175590,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 16:46:29,273 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:46:36,483 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:46:36,654 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:46:57,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:50:41,452 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:50:41,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:50:41,861 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:50:42,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:50:42,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:50:42,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:50:48,417 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:50:48,464 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:50:50,261 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175852} + +[INFO ] 2018-06-28 16:50:51,214 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175852,"deviceToken":"5q3Zxf5P9iJslE4K","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:50:52,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175854} + +[INFO ] 2018-06-28 16:50:53,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175854} + +[INFO ] 2018-06-28 16:50:54,356 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175856,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:50:54,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:50:56,936 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175858,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:50:57,272 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:50:59,543 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175861,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:50:59,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:51:00,958 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:51:01,093 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:51:12,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:51:12,981 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:51:13,206 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:13,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:14,290 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:14,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:15,431 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:15,483 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:16,570 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:16,618 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:17,789 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:18,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:18,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:19,042 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:20,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:20,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:21,288 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:51:21,892 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:51:22,310 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:22,793 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:23,260 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:51:23,305 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:51:23,578 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:51:23,725 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:51:24,118 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:51:24,215 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:51:24,867 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:51:27,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:28,050 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:51:28,900 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:51:28,951 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:51:29,877 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175891} + +[INFO ] 2018-06-28 16:51:31,224 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175892} + +[INFO ] 2018-06-28 16:51:31,598 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175893,"deviceToken":"058+kQ1dHYRYvtHG","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:51:31,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175892} + +[INFO ] 2018-06-28 16:51:33,246 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175894} + +[INFO ] 2018-06-28 16:51:34,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175894} + +[INFO ] 2018-06-28 16:51:35,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530175895,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:51:35,753 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:51:35,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175896,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:51:35,879 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:51:37,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175899,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:51:37,709 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:51:39,895 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:51:40,032 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:51:40,763 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530175902,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:51:40,824 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:51:59,295 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:51:59,385 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:51:59,727 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:51:59,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:52:00,778 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:52:00,834 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:52:01,979 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:52:02,024 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:52:05,312 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:52:05,362 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:52:07,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175928} + +[INFO ] 2018-06-28 16:52:07,769 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175929,"deviceToken":"EdTwRam6Fw5i+YjV","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:52:09,103 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175930} + +[INFO ] 2018-06-28 16:52:09,223 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175930} + +[INFO ] 2018-06-28 16:52:10,939 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175932,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:11,200 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:12,398 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175934,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:12,724 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:17,319 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:52:17,446 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:52:31,440 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:52:31,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:52:36,898 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:52:37,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:52:37,544 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:52:37,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:52:37,732 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 16:52:39,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 16:52:42,757 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 16:52:42,819 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:52:44,647 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530175966} + +[INFO ] 2018-06-28 16:52:45,547 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530175967,"deviceToken":"798qTpTp81BahLnG","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:52:47,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530175968} + +[INFO ] 2018-06-28 16:52:47,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175969} + +[INFO ] 2018-06-28 16:52:49,200 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175970,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:50,226 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:50,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 16:52:50,828 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:52:51,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175972,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:51,315 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:53,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175975,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:53,312 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:56,135 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530175977,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:56,238 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:52:58,496 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 16:52:58,631 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:52:59,424 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530175981,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:52:59,492 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:53:01,326 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:53:02,596 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175984} + +[INFO ] 2018-06-28 16:53:02,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 16:53:04,441 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530175986} + +[INFO ] 2018-06-28 16:53:05,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530175987,"deviceToken":"6kfoKuCz66oFW9IW","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:53:06,580 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530175988} + +[INFO ] 2018-06-28 16:53:06,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530175988} + +[INFO ] 2018-06-28 16:53:18,388 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:54:18,880 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 16:54:18,965 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 16:54:19,220 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:54:19,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:54:20,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:54:20,289 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 16:54:20,731 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:54:20,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 16:54:22,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 16:54:25,793 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 16:54:25,854 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 16:54:27,543 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530176069} + +[INFO ] 2018-06-28 16:54:27,625 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176069} + +[INFO ] 2018-06-28 16:54:29,314 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530176071,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 16:54:29,394 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 16:54:57,947 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:54:58,029 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:55:27,413 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:55:27,473 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:55:56,886 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:55:56,961 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:56:26,315 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 16:56:26,361 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 16:56:45,568 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 16:56:45,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 16:56:56,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 16:56:57,479 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530176219} + +[INFO ] 2018-06-28 16:56:57,539 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 16:56:59,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530176221} + +[INFO ] 2018-06-28 16:57:00,246 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530176221,"deviceToken":"NYQdFY1H7AsryZuH","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 16:57:01,397 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530176223} + +[INFO ] 2018-06-28 16:57:01,517 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176223} + +[INFO ] 2018-06-28 17:01:24,068 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:01:24,116 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:01:39,527 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:01:39,528 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:01:39,961 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:01:40,019 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:01:45,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:01:45,264 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:01:47,059 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530176508} + +[INFO ] 2018-06-28 17:01:47,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530176509,"deviceToken":"YUQDkz6Kc0DSnXq6","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:01:49,043 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530176510} + +[INFO ] 2018-06-28 17:01:49,207 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176510} + +[INFO ] 2018-06-28 17:01:51,730 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176512,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:01:52,191 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:01:55,883 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176517,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:01:56,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:01:59,345 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176521,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:01:59,705 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:04,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176526,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:04,740 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:09,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176531,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:09,327 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:14,003 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176535,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"75"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:14,087 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:18,844 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176540,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"75"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"966"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:18,934 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:19,608 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:02:19,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:02:23,946 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176545,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"72"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"967"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:24,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:29,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:33,525 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176555,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"974"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:33,640 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:38,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176560,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"976"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:38,707 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:43,503 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176565,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"978"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:43,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:48,220 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176570,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"978"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:48,322 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:49,078 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:02:49,140 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:02:53,669 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176575,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"979"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:53,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:02:57,870 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176579,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"979"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:02:57,938 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:02,949 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176584,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"978"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:18,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176600,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"977"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:18,913 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:21,466 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:03:21,529 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:03:22,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176604,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"976"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:22,591 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:27,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176609,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"70"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"975"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:27,383 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:32,036 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176613,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"974"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:32,127 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:37,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176618,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"971"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:37,271 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:41,989 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176623,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"970"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:42,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:46,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176628,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"970"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:47,693 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:50,964 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:03:51,037 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:03:51,626 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176633,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"971"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:51,739 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:03:56,679 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176638,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"973"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:03:56,776 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:01,493 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176643,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"973"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:01,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:06,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176648,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"974"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:06,625 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:20,443 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:04:20,490 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:04:21,801 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176663,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"971"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:21,888 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:37,673 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176679,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"963"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:37,748 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:40,784 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176682,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"15"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"961"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:40,862 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:50,434 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176692,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:50,521 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:04:51,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:04:51,253 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:04:55,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176697,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:04:55,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:01,291 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176703,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"951"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:01,703 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:04,861 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176706,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"950"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:05,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:09,945 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176711,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"947"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:09,997 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:14,757 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176716,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:15,223 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:19,530 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176721,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:19,615 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:20,686 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:05:20,740 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:05:24,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176726,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:24,688 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:29,540 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176731,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:29,692 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:34,238 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176736,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:34,347 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:39,221 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176740,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"941"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:39,292 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:44,403 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176746,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"286"},{"paramCode":"co2","paramValue":"940"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:45,190 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:48,956 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176750,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"938"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:49,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:50,165 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:05:50,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:05:53,768 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176755,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"937"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:53,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:05:58,590 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176760,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"936"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:05:58,672 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:03,655 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176765,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"934"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:03,765 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:08,548 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176770,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:08,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:13,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176775,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"933"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:13,592 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:18,118 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176779,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"285"},{"paramCode":"co2","paramValue":"935"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:18,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:19,605 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:06:19,651 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:06:27,962 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176789,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"942"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:28,208 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:32,814 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176794,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"943"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:32,897 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:37,628 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176799,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"946"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:37,723 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:42,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176804,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"947"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:42,790 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:47,604 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176809,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"945"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:47,675 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:49,076 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:06:49,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:06:49,693 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176811,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:50,253 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:52,282 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176814,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:52,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:06:57,391 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176819,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"284"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:06:57,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:02,272 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176823,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:02,345 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:07,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176828,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:07,101 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:11,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176833,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:11,839 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:16,853 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176838,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:16,898 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:18,549 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:07:18,594 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:07:21,981 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176843,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"944"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:22,069 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:26,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176848,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"283"},{"paramCode":"co2","paramValue":"945"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:26,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:07:34,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530176855} + +[INFO ] 2018-06-28 17:07:34,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176855} + +[INFO ] 2018-06-28 17:07:35,623 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176857,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:07:35,711 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:08:04,279 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:08:04,325 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:08:21,443 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530176903} + +[INFO ] 2018-06-28 17:08:21,612 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176903} + +[INFO ] 2018-06-28 17:08:23,681 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176905,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:14,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:09:14,503 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:09:14,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:09:14,826 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:09:15,237 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:09:15,298 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:09:23,019 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:09:23,064 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:09:24,761 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530176966} + +[INFO ] 2018-06-28 17:09:25,596 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530176967,"deviceToken":"YUQDkz6Kc0DSnXq6","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:09:27,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530176968} + +[INFO ] 2018-06-28 17:09:27,335 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530176968} + +[INFO ] 2018-06-28 17:09:28,840 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176970,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:29,187 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:30,539 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176972,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"65"},{"paramCode":"degC","paramValue":"299"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:30,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:35,698 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176977,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"16"},{"paramCode":"relativeHumidity","paramValue":"65"},{"paramCode":"degC","paramValue":"299"},{"paramCode":"co2","paramValue":"960"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:36,251 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:40,092 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176981,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"65"},{"paramCode":"degC","paramValue":"298"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:40,707 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:45,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176986,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"298"},{"paramCode":"co2","paramValue":"955"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:45,343 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:50,031 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176991,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"17"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"298"},{"paramCode":"co2","paramValue":"956"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:50,108 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:55,274 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530176996,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"298"},{"paramCode":"co2","paramValue":"963"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:09:55,792 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:09:57,352 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:09:57,411 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:10:00,236 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530177001,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"18"},{"paramCode":"relativeHumidity","paramValue":"66"},{"paramCode":"degC","paramValue":"298"},{"paramCode":"co2","paramValue":"967"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:10:00,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:10:16,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:10:16,697 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:10:16,817 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:10:16,892 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:10:17,447 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:10:17,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:10:22,463 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:10:22,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:10:24,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177025} + +[INFO ] 2018-06-28 17:10:25,909 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177027,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:10:25,998 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:10:38,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177040} + +[INFO ] 2018-06-28 17:10:39,199 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177040} + +[INFO ] 2018-06-28 17:10:40,416 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177042,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:10:40,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:10:47,722 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177049} + +[INFO ] 2018-06-28 17:10:47,856 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177049} + +[INFO ] 2018-06-28 17:10:49,347 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177051,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:10:49,719 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:11:08,876 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:11:08,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:11:18,107 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:11:18,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:11:41,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:11:41,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:11:47,565 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:11:47,611 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:11:58,418 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 17:11:58,535 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:12:06,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:12:06,189 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:12:06,451 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:12:06,688 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:12:07,038 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:12:07,084 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:12:10,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 17:12:11,960 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:12:12,072 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:12:13,827 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530177135} + +[INFO ] 2018-06-28 17:12:14,802 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-B0F89315BF4B","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530177136,"deviceToken":"07VDveys4F3YkoqX","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:12:16,121 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177137} + +[INFO ] 2018-06-28 17:12:17,866 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177139,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:12:18,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:12:41,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 17:12:55,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 17:12:55,705 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 17:12:55,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 17:12:55,709 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 17:12:55,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 17:12:55,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 17:12:57,241 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 17:12:57,254 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 17:12:57,296 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 17:12:59,160 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:13:09,377 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:13:09,425 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:13:09,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:09,755 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:13,629 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:13,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:14,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:14,797 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:15,878 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:15,935 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:16,986 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:13:17,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:17,273 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:18,158 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:18,265 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:19,392 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:19,462 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:20,124 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:13:20,763 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:13:21,304 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:21,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:13:22,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:13:22,692 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:13:24,346 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:13:26,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:13:28,303 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177210} + +[INFO ] 2018-06-28 17:13:28,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 17:13:30,094 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530177211} + +[INFO ] 2018-06-28 17:13:30,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530177212,"deviceToken":"iX572Ms1HINunnG3","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:13:32,022 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177213} + +[INFO ] 2018-06-28 17:13:32,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177213} + +[INFO ] 2018-06-28 17:13:34,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177216,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:13:34,365 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:13:35,162 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:13:35,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:13:36,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:13:36,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:13:40,673 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:13:41,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:13:42,361 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530177224} + +[INFO ] 2018-06-28 17:13:43,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-B0F89315BF4B","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530177224,"deviceToken":"07VDveys4F3YkoqX","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:13:44,577 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177226} + +[INFO ] 2018-06-28 17:13:44,697 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177226} + +[INFO ] 2018-06-28 17:13:46,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177228,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:13:47,198 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:13:51,111 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:14:02,865 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":""} : 5683 + +[INFO ] 2018-06-28 17:14:04,215 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177246} + +[INFO ] 2018-06-28 17:14:04,259 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 17:14:06,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530177247} + +[INFO ] 2018-06-28 17:14:07,279 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530177248,"deviceToken":"2dcXI81wZ4FMu2Xg","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:14:08,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177250} + +[INFO ] 2018-06-28 17:14:08,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177250} + +[INFO ] 2018-06-28 17:14:14,749 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:14:47,063 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:14:47,108 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:15:16,521 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:15:16,566 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:15:46,001 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:15:46,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:16:15,457 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:16:15,524 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:16:44,916 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:16:44,955 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:17:14,383 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:17:14,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:17:43,845 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:17:43,897 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:18:13,307 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:18:13,350 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:18:26,668 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177508} + +[INFO ] 2018-06-28 17:18:26,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177508} + +[INFO ] 2018-06-28 17:18:28,490 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177510,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:18:28,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:18:57,128 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:18:57,174 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:19:16,446 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:19:16,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:19:20,472 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:19:23,901 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177565} + +[INFO ] 2018-06-28 17:19:24,227 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177565} + +[INFO ] 2018-06-28 17:19:25,686 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177567,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:19:25,809 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:19:26,591 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:19:26,637 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:19:54,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:19:54,726 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:19:56,057 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30729-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:19:56,118 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:20:05,200 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 17:20:05,362 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:20:49,054 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177650} + +[INFO ] 2018-06-28 17:20:49,164 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177650} + +[INFO ] 2018-06-28 17:20:50,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177652,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:20:50,848 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:21:05,576 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:21:05,664 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:21:05,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:21:05,857 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:21:06,381 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:21:06,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:21:09,694 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:21:10,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:21:10,336 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:21:10,728 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:21:11,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : request : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:21:11,250 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:21:11,360 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:21:11,767 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:21:12,738 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30729"} + +[INFO ] 2018-06-28 17:21:12,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:21:14,239 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530177675} + +[INFO ] 2018-06-28 17:21:14,829 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:21:15,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-B0F89315BF4B","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530177677,"deviceToken":"07VDveys4F3YkoqX","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:21:15,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : success : {"deviceMac":"B0F89315BEED","deviceType":"30413"} + +[INFO ] 2018-06-28 17:21:15,970 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:21:16,728 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30729-B0F89315BF4B","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177678} + +[INFO ] 2018-06-28 17:21:16,822 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177678} + +[INFO ] 2018-06-28 17:21:17,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : bootstrap : {"deviceMac":"B0F89315BEED","deviceType":"30413","productToken":"38Szyd6i1240elbV","timestamp":1530177679} + +[INFO ] 2018-06-28 17:21:18,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30413-B0F89315BEED","andlinkToken":"wWppJIdROfQkcsMW","timestamp":1530177679,"deviceToken":"AotzWO4ZfnUbwL3p","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:21:18,530 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177680,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:21:18,738 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:21:19,335 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.7","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177681} + +[INFO ] 2018-06-28 17:21:19,419 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177681} + +[INFO ] 2018-06-28 17:21:22,162 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177682,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:21:22,247 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:21:25,369 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30729-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177687,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:21:48,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:21:48,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:21:48,428 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:21:48,691 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:21:48,969 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:21:49,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:21:49,807 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:21:49,855 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:21:56,719 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:21:56,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:21:58,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530177720} + +[INFO ] 2018-06-28 17:21:59,276 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530177721,"deviceToken":"U7Fj5FEoqwdARcnv","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:22:00,704 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177722} + +[INFO ] 2018-06-28 17:22:00,757 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177722} + +[INFO ] 2018-06-28 17:22:02,563 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177724,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:22:02,677 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:22:07,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177728,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:22:07,168 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:22:19,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:22:19,338 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:22:26,587 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177748,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:22:26,706 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:22:31,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:22:31,138 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:22:34,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177756,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"50"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:22:34,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:22:48,728 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:22:48,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:22:54,546 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530177776} + +[INFO ] 2018-06-28 17:22:54,629 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177776} + +[INFO ] 2018-06-28 17:22:56,852 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177778,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:22:56,854 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:13,512 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177795,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:23:13,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:16,197 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:23:16,859 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:23:18,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:23:18,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:23:24,791 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/b2e7e1fe1dd711e8b7ac00163e30fc50/YSypDiTF5w.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 17:23:24,807 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 17:23:25,090 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/b2e7e1fe1dd711e8b7ac00163e30fc50/YSypDiTF5w.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30413-B0F89315BEED","fileType":"FIRM"} + +[INFO ] 2018-06-28 17:23:25,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 17:23:25,197 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:23:25,262 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:23:32,617 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530177814,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 17:23:32,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:33,155 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177814,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:23:33,246 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:43,736 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530177825,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 17:23:43,869 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:52,659 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177834,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:23:52,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:23:54,656 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:24:01,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"File","timestamp":1530177843,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 17:24:01,709 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:24:02,894 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : boot : {"deviceId":"CMCC-30413-B0F89315BEED","deviceType":"30413","firmwareVersion":"1.2.8","softwareVersion":"1.0.1","ipAddress":"192.168.1.3","timestamp":1530177844} + +[INFO ] 2018-06-28 17:24:03,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530177844} + +[INFO ] 2018-06-28 17:24:04,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : inform/data : {"deviceId":"CMCC-30413-B0F89315BEED","childDeviceId":"","eventType":"Inform","timestamp":1530177846,"data":{"params":[{"paramCode":"firmware","paramValue":"1.2.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"10"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"25"},{"paramCode":"ch2o","paramValue":"10"},{"paramCode":"voc","paramValue":"10"},{"paramCode":"mir.switchStatus","paramValue":"0"},{"paramCode":"mir.screenMode","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:24:05,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:24:12,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177853,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:24:12,317 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:24:16,703 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177858,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:24:16,779 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:24:24,074 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:24:24,116 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:24:33,215 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:24:33,260 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:24:36,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177878,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:24:36,657 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:24:53,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:24:53,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:24:56,807 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177898,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:24:56,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:25:02,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:25:02,764 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:25:16,204 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177917,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:25:16,205 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:25:22,992 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:25:23,039 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:25:32,133 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:25:32,179 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:25:35,162 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177936,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:25:35,266 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:25:52,460 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:25:52,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:25:54,647 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177956,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:25:54,725 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:26:04,439 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:26:04,526 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:26:14,282 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177976,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:26:14,390 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:26:21,918 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:26:21,978 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:26:33,792 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530177995,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:26:33,903 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:26:34,189 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:26:34,250 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:26:51,382 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:26:51,427 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:26:53,305 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178015,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:26:53,395 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:27:03,285 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:27:03,341 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:27:12,862 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178034,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:27:12,937 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:27:20,843 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:27:20,896 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:27:32,415 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178054,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"34"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:27:32,701 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:27:33,216 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:27:33,281 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:27:49,011 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178070} + +[INFO ] 2018-06-28 17:27:49,098 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178070} + +[INFO ] 2018-06-28 17:27:50,831 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178072,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:27:51,148 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:28:02,602 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:28:02,662 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:28:08,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178089,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:28:08,663 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:28:32,090 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:28:32,165 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:28:50,017 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178131} + +[INFO ] 2018-06-28 17:28:50,133 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178131} + +[INFO ] 2018-06-28 17:28:51,801 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178133,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:28:52,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:29:01,529 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.3 : heartbeat : {"deviceId":"CMCC-30413-B0F89315BEED"} : 5683 + +[INFO ] 2018-06-28 17:29:01,575 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:29:04,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178146} + +[INFO ] 2018-06-28 17:29:05,154 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178146} + +[INFO ] 2018-06-28 17:29:06,648 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178148,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:29:06,727 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:29:24,177 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:29:24,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:29:24,387 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:29:24,461 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:29:24,913 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:29:24,994 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:29:29,736 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.3/device/command/unbind : +{"deviceId":"CMCC-30413-B0F89315BEED"} + +[INFO ] 2018-06-28 17:29:29,892 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.3/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:29:30,186 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:29:30,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:29:31,838 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530178173} + +[INFO ] 2018-06-28 17:29:33,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530178175,"deviceToken":"U7Fj5FEoqwdARcnv","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:29:34,996 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178176} + +[INFO ] 2018-06-28 17:29:35,276 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178176} + +[INFO ] 2018-06-28 17:29:36,755 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178178,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:29:36,860 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:29:43,495 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178185,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:29:44,158 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:30:02,924 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178204,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:30:02,992 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:30:05,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:30:05,268 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:30:22,500 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178224,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:30:22,606 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:30:34,684 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:30:34,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:30:41,990 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178243,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:30:42,077 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:30:43,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.7/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:30:43,964 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.7/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:32:34,415 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ATXBAS5PYc.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:32:34,426 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 17:32:37,224 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:32:38,416 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:32:52,636 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:32:52,716 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:32:52,975 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:32:53,043 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:32:53,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:32:53,555 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:32:58,668 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:32:59,015 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:33:00,398 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530178382} + +[INFO ] 2018-06-28 17:33:01,125 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530178382,"deviceToken":"1rMjpKbZ8sk6dMvC","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:33:02,402 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178384} + +[INFO ] 2018-06-28 17:33:02,688 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178384} + +[INFO ] 2018-06-28 17:33:04,252 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178385,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:33:04,745 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:33:09,879 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:33:10,381 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:33:12,057 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 17:33:12,117 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 17:33:12,324 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178394,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:33:12,441 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:33:15,762 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:33:19,169 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:33:31,780 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178413,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:33:31,847 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:33:32,614 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : heartbeat : {"deviceId":"CMCC-30728-B0F89315BF4B"} : 5683 + +[INFO ] 2018-06-28 17:33:32,659 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:33:44,419 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:311) +upgrade device request : {"data":{"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ATXBAS5PYc.bin","fileType":"FIRM"},"gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:33:44,435 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.upgradeBindDev(LocalGateway.java:314) +upgrade device response : {"respCode":1} + +[INFO ] 2018-06-28 17:33:45,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ATXBAS5PYc.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-B0F89315BF4B","fileType":"FIRM"} + +[INFO ] 2018-06-28 17:33:45,235 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 17:33:48,660 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:33:49,251 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:33:52,414 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530178434,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 17:33:52,700 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:34:03,692 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530178445,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 17:34:03,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:34:22,917 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"File","timestamp":1530178464,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 17:34:23,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:34:24,232 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178466} + +[INFO ] 2018-06-28 17:34:24,367 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178466} + +[INFO ] 2018-06-28 17:34:25,992 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178467,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:34:26,070 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:34:41,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178483,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:34:41,719 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:34:48,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.7/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:35:06,950 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:35:07,008 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:35:07,143 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:35:07,205 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:35:07,661 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:35:07,709 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:35:13,035 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:35:13,103 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:35:14,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530178516} + +[INFO ] 2018-06-28 17:35:15,702 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530178517,"deviceToken":"GELXt85KNAmorsZA","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:35:16,865 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530178518} + +[INFO ] 2018-06-28 17:35:16,937 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178518} + +[INFO ] 2018-06-28 17:35:19,144 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178520,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:19,756 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:20,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178522,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:21,105 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:23,914 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178525,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:24,003 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:26,825 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178528,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:27,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:30,152 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178531,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:30,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:32,662 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178534,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:32,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:35,512 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178537,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:35,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:38,513 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178540,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:38,673 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:41,376 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178543,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:41,653 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:44,320 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178546,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:44,432 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:47,201 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178549,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:47,286 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:47,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : heartbeat : {"deviceId":"CMCC-30729-0478632013BA"} : 5683 + +[INFO ] 2018-06-28 17:35:47,712 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:35:50,407 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178552,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:50,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:53,061 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178554,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:53,136 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:55,970 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178557,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:56,058 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:35:58,889 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178560,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:35:58,999 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:01,794 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178563,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:02,176 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:04,721 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178566,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:05,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:07,384 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ATXBAS5PYc.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30729-0478632013BA","fileType":"FIRM"} + +[INFO ] 2018-06-28 17:36:07,430 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 17:36:12,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178569,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:12,789 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:17,302 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":-1515870811,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 17:36:17,455 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:18,877 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178580,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:18,998 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:23,268 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178585,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:23,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:25,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":1530178587,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 17:36:25,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:42,658 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":1530178604,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 17:36:43,189 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:43,944 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530178605} + +[INFO ] 2018-06-28 17:36:44,005 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178605} + +[INFO ] 2018-06-28 17:36:45,771 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178607,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:45,840 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:48,495 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178610,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:48,580 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:51,367 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178613,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:51,453 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:36:52,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 17:36:52,365 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:36:53,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530178614,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:36:53,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:37:55,519 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:37:55,583 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:37:55,796 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:37:55,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:37:56,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:37:57,000 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:37:58,077 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:37:58,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:37:59,214 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:37:59,269 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:38:00,338 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:38:00,405 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:38:01,507 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:38:01,587 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:38:02,631 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:38:02,697 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:38:03,763 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:38:03,830 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:38:04,357 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:38:04,654 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:38:10,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 17:38:10,467 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:38:12,228 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530178694} + +[INFO ] 2018-06-28 17:38:13,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530178694,"deviceToken":"GELXt85KNAmorsZA","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:38:14,290 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530178696} + +[INFO ] 2018-06-28 17:38:14,383 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178696} + +[INFO ] 2018-06-28 17:38:16,157 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178697,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:38:16,233 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:38:18,898 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178700,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:38:19,005 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:38:21,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178703,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:38:21,809 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:38:23,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530178704,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:38:23,081 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:38:32,108 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 17:38:32,254 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:38:39,050 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530178720,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:39:22,344 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.0","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530178764} + +[INFO ] 2018-06-28 17:39:22,400 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 17:39:24,626 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530178766} + +[INFO ] 2018-06-28 17:39:25,411 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530178767,"deviceToken":"akr+nGySGWjnep5F","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:39:27,272 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178768} + +[INFO ] 2018-06-28 17:39:28,611 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178770,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.0"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:39:28,730 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:39:56,976 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ATXBAS5PYc.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632016F2","fileType":"FIRM"} + +[INFO ] 2018-06-28 17:39:57,028 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 17:40:04,021 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:40:04,071 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:40:05,096 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530178806,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 17:40:05,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:40:11,704 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530178813,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 17:40:11,786 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:40:28,426 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530178830,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 17:40:28,518 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:40:29,627 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530178831} + +[INFO ] 2018-06-28 17:40:29,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178831} + +[INFO ] 2018-06-28 17:40:31,709 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178833,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:40:31,794 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:40:47,456 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178849,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:40:47,548 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:40:59,966 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:41:00,646 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:41:05,183 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 17:41:05,320 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:42:29,905 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:42:29,954 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:42:30,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:31,224 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:42:31,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:42:31,631 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:42:31,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:32,648 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:42:34,187 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:35,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:42:36,135 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:36,290 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:42:36,721 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:42:36,766 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:42:36,812 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:42:36,857 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:42:37,167 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:37,213 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:42:37,258 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:42:37,309 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:42:38,347 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:42:38,746 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:42:39,538 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:39,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:42:40,511 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:42:40,579 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:42:41,630 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530178963} + +[INFO ] 2018-06-28 17:42:42,699 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530178964,"deviceToken":"uEIb8oZgy4puKYIR","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:42:42,806 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530178964} + +[INFO ] 2018-06-28 17:42:43,782 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530178965} + +[INFO ] 2018-06-28 17:42:44,222 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178965} + +[INFO ] 2018-06-28 17:42:44,689 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530178964,"deviceToken":"DzUU5Dg2lp+pIpmJ","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:42:45,138 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530178966} + +[INFO ] 2018-06-28 17:42:45,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530178966} + +[INFO ] 2018-06-28 17:42:45,764 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178967,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:42:46,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:42:46,921 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530178968,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:42:47,196 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:42:47,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178969,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:42:47,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:42:48,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178970,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1523"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:42:48,823 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:42:52,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178973,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1514"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:42:52,113 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:42:57,291 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178979,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"71"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1509"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:42:57,392 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:43:01,132 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.7/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:43:01,267 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.7/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:43:12,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178994,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1556"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:43:13,070 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:43:14,294 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:43:14,363 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:43:16,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178998,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1556"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:43:16,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:43:17,810 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530178999,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1561"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:43:17,810 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:43:21,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 17:43:21,322 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:43:21,468 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530179003,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1560"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:43:21,636 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:44:21,102 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:44:21,150 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:44:21,485 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:21,551 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:44:22,666 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:23,163 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:44:23,802 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:23,893 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:44:24,912 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:24,979 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:44:26,050 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:26,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:44:26,658 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:44:33,959 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:44:34,011 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:44:36,057 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530179077} + +[INFO ] 2018-06-28 17:44:37,371 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530179078,"deviceToken":"a16gLeA2L7OpC4RX","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:44:38,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530179080} + +[INFO ] 2018-06-28 17:44:38,685 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530179080} + +[INFO ] 2018-06-28 17:44:40,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179082,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:44:40,602 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:44:41,808 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179083,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"1330"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:44:42,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:44:46,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179088,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"1317"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:44:46,790 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:44:51,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179093,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"1289"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:44:51,541 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:45:07,347 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179109,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"1289"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:45:07,435 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:45:09,110 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:45:09,154 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:45:16,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179117,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"1289"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:45:16,190 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:45:32,390 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 17:45:32,516 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:45:38,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:45:38,418 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:45:38,640 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:38,713 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:43,230 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:45:43,274 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:45:43,532 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:43,662 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:44,701 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:44,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:45,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:45,910 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:46,984 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:47,064 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:48,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:48,635 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:49,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:49,334 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:50,405 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:50,486 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:51,539 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:51,600 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:52,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:52,758 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:53,811 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:45:53,910 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:45:54,788 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:45:54,846 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:46:00,209 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 17:46:00,210 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:46:04,752 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530179166} + +[INFO ] 2018-06-28 17:46:04,818 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 17:46:06,487 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530179168} + +[INFO ] 2018-06-28 17:46:07,203 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530179169,"deviceToken":"qQRGR3+4LpzXofyc","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:46:08,499 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530179170} + +[INFO ] 2018-06-28 17:46:08,650 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530179170} + +[INFO ] 2018-06-28 17:46:13,089 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530179174} + +[INFO ] 2018-06-28 17:46:13,182 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530179175} + +[INFO ] 2018-06-28 17:46:15,655 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530179177,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:46:15,734 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:46:23,599 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530179185,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:46:32,305 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.7/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 17:46:32,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.7/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:53:46,485 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:53:46,820 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 17:54:15,098 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.connToGateway(LocalGateway.java:79) +connect to gw through coap, response from gw : CONN_OK + +[INFO ] 2018-06-28 17:54:15,180 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:138) +str : 101_00CFC0A8DC08{"apmsOnlineStatus":0} + +[INFO ] 2018-06-28 17:54:15,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:143) +andlink mqtt conn state int0 : 1 + +[INFO ] 2018-06-28 17:54:15,193 com.chinamobile.smartgateway.andlink.diagnotor.base.LogFactory.info(LogFactory.java:117) +int1 : 0 + +[INFO ] 2018-06-28 17:54:15,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:149) +andlink envir int1 : 0 + +[INFO ] 2018-06-28 17:54:15,196 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateAndlinkInform(LocalGateway.java:158) +logModeState : + +[INFO ] 2018-06-28 17:54:15,527 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : true + +[INFO ] 2018-06-28 17:54:15,541 com.chinamobile.smartgateway.andlink.diagnotor.ui.GWLogUploadJFrame.curGwJRadioButtonIsSelected(GWLogUploadJFrame.java:77) +gateway.andlinkEnv : Ż + +[INFO ] 2018-06-28 17:54:15,589 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:32) +new DatagramSocket using port : 10526 + +[INFO ] 2018-06-28 17:54:22,184 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:54:22,231 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:54:22,390 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:54:22,666 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:54:23,079 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:54:23,123 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:54:23,416 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 17:54:28,282 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:54:28,354 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:54:30,159 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530179671} + +[INFO ] 2018-06-28 17:54:30,218 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 17:54:31,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530179673} + +[INFO ] 2018-06-28 17:54:32,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530179674,"deviceToken":"ufPzxq3MbP/d368g","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:54:38,622 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 17:54:38,668 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 17:54:38,922 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:54:39,127 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 17:54:39,425 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 17:54:39,498 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 17:54:44,657 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 17:54:44,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 17:54:46,489 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530179688} + +[INFO ] 2018-06-28 17:54:47,165 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530179688,"deviceToken":"ufPzxq3MbP/d368g","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 17:54:48,323 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530179690} + +[INFO ] 2018-06-28 17:54:48,437 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530179690} + +[INFO ] 2018-06-28 17:54:50,738 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179692,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:54:51,172 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:54:54,175 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179695,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:54:54,288 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:54:59,048 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179700,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"293"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:54:59,146 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:03,819 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179705,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:03,947 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:08,919 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179710,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:09,005 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:13,737 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179715,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:13,831 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:18,514 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179720,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:18,604 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:18,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:55:18,837 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:55:23,642 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179725,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:23,730 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:28,420 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179730,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"23"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"410"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:28,532 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:39,690 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179741,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"292"},{"paramCode":"co2","paramValue":"954"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:40,182 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:43,140 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179744,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"69"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"957"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:43,236 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:47,917 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179749,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"980"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:48,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:48,217 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:55:48,280 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:55:52,710 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179754,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"1025"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:52,757 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:55:57,552 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179759,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"1048"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:55:57,650 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:02,658 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179764,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"1085"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:02,736 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:08,192 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179769,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"1099"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:08,271 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:12,248 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179774,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"291"},{"paramCode":"co2","paramValue":"1115"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:12,633 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:17,010 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179778,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1122"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:17,121 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:17,708 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:56:17,772 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:56:22,151 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179783,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1122"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:22,238 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:26,967 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179788,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1117"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:27,027 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:31,747 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179793,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1112"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:31,819 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:36,901 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179798,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1099"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:37,172 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:42,157 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179803,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"23"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1087"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:42,229 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:46,445 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179808,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"23"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"290"},{"paramCode":"co2","paramValue":"1080"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:46,527 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:47,651 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:56:47,719 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:56:51,359 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179813,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"23"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1065"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:51,735 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:56:56,371 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179818,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1049"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:56:56,436 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:01,170 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179822,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1041"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:01,244 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:05,971 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179827,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1026"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:06,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:10,785 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179832,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1019"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:10,923 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:15,881 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179837,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1008"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:15,927 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:16,613 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:57:16,680 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:57:20,671 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179842,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"26"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1005"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:20,743 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:25,525 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179847,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1011"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:25,643 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:30,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179852,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1032"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:35,379 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179857,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1046"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:35,458 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:40,245 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179862,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1074"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:40,319 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:45,025 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179866,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1098"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:45,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:46,074 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 17:57:46,118 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 17:57:50,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179871,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"289"},{"paramCode":"co2","paramValue":"1107"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:57:50,764 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:57:52,481 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/ckJtQyBkh2.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632016F2","fileType":"FIRM"} + +[INFO ] 2018-06-28 17:57:52,547 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 17:58:01,982 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530179883,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 17:58:02,052 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:04,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179885,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"67"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1140"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:58:04,206 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:09,193 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530179891,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 17:58:09,282 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:26,273 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530179908,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 17:58:26,351 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:27,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.2","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530179909} + +[INFO ] 2018-06-28 17:58:27,773 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530179909} + +[INFO ] 2018-06-28 17:58:29,542 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179911,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 17:58:29,657 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:30,850 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179912,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"288"},{"paramCode":"co2","paramValue":"1147"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:58:30,927 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:35,399 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530179917,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"25"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1144"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:58:35,669 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 17:58:39,560 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 17:58:39,674 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 17:58:41,013 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"","childDeviceId":"","eventType":"Inform","timestamp":1530179922,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"24"},{"paramCode":"relativeHumidity","paramValue":"68"},{"paramCode":"degC","paramValue":"287"},{"paramCode":"co2","paramValue":"1144"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 17:58:41,088 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:07:01,059 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 18:07:07,764 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 18:07:08,157 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 18:07:08,256 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : request : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:08,329 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:08,877 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 18:07:08,923 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 18:07:10,433 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 18:07:14,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : success : {"deviceMac":"B0F89315BF4B","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:14,194 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 18:07:16,174 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : bootstrap : {"deviceMac":"B0F89315BF4B","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530180437} + +[INFO ] 2018-06-28 18:07:17,068 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-B0F89315BF4B","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530180438,"deviceToken":"srQ6FYR7RSsotlPp","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 18:07:18,349 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : boot : {"deviceId":"CMCC-30728-B0F89315BF4B","deviceType":"30728","firmwareVersion":"1.3.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.7","timestamp":1530180440} + +[INFO ] 2018-06-28 18:07:18,394 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530180440} + +[INFO ] 2018-06-28 18:07:20,098 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530180441,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:07:20,219 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:07:27,299 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.7 : inform/data : {"deviceId":"CMCC-30728-B0F89315BF4B","childDeviceId":"","eventType":"Inform","timestamp":1530180449,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:07:27,632 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:07:29,240 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.7/device/command/unbind : +{"deviceId":"CMCC-30728-B0F89315BF4B"} + +[INFO ] 2018-06-28 18:07:29,375 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.7/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 18:07:36,787 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 18:07:36,858 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 18:07:37,113 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:37,172 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:38,277 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:38,359 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:39,454 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:40,532 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:40,582 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:41,666 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:41,717 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:42,830 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:42,887 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:44,019 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:44,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:45,137 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:45,202 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:46,251 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : request : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:46,612 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:07:47,173 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 18:07:47,264 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 18:07:52,114 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : success : {"deviceMac":"0478632016F2","deviceType":"30728"} + +[INFO ] 2018-06-28 18:07:52,178 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 18:07:53,942 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : bootstrap : {"deviceMac":"0478632016F2","deviceType":"30728","productToken":"AaN1aZAy6f9mhRJu","timestamp":1530180475} + +[INFO ] 2018-06-28 18:07:54,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30728-0478632016F2","andlinkToken":"mIqcm0iDQVtZ3l1U","timestamp":1530180476,"deviceToken":"Fdg1ZXDF9bz5dHUt","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 18:07:55,864 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.2","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530180477} + +[INFO ] 2018-06-28 18:07:55,932 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530180477} + +[INFO ] 2018-06-28 18:07:57,760 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180479,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:07:57,835 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:01,753 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180483,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"846"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:02,139 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:06,555 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180488,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"855"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:07,112 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:11,450 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180493,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"871"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:11,615 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:11,928 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 18:08:12,281 com.chinamobile.smartgateway.andlink.diagnotor.model.local.LocalGateway.updateBindDevsInform(LocalGateway.java:239) +LoginJFrame.localModelDiagnotorJFrame == null : false + +[INFO ] 2018-06-28 18:08:15,541 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/QiJmH456Mb.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30728-0478632016F2","fileType":"FIRM"} + +[INFO ] 2018-06-28 18:08:15,587 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 18:08:18,650 com.chinamobile.smartgateway.andlink.diagnotor.ui.local.LocalModelDiagnotorJFrame.jTabbedPane1StateChanged(LocalModelDiagnotorJFrame.java:1010) +jTabbedPane1StateChanged ! + +[INFO ] 2018-06-28 18:08:24,520 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180499,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"305"},{"paramCode":"co2","paramValue":"884"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:24,669 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:25,607 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530180507,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 18:08:26,129 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:30,033 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180511,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"305"},{"paramCode":"co2","paramValue":"900"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:30,675 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:36,682 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530180518,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 18:08:37,105 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:37,859 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : heartbeat : {"deviceId":"CMCC-30728-0478632016F2"} : 5683 + +[INFO ] 2018-06-28 18:08:37,904 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~heartbeat resp : {"respCode":1 } + +[INFO ] 2018-06-28 18:08:38,126 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180519,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.2"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"64"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"904"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:38,201 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:54,559 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"File","timestamp":1530180536,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 18:08:54,667 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:55,794 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : boot : {"deviceId":"CMCC-30728-0478632016F2","deviceType":"30728","firmwareVersion":"1.3.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.9","timestamp":1530180537} + +[INFO ] 2018-06-28 18:08:56,616 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530180537} + +[INFO ] 2018-06-28 18:08:58,099 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180539,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"0"},{"paramCode":"relativeHumidity","paramValue":"0"},{"paramCode":"degC","paramValue":"0"},{"paramCode":"co2","paramValue":"0"},{"paramCode":"mir.switchStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:08:58,182 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:08:59,445 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180541,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"22"},{"paramCode":"relativeHumidity","paramValue":"63"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"899"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:08:59,611 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:09:04,140 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.9 : inform/data : {"deviceId":"CMCC-30728-0478632016F2","childDeviceId":"","eventType":"Inform","timestamp":1530180545,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"dataPM25","paramValue":"21"},{"paramCode":"relativeHumidity","paramValue":"63"},{"paramCode":"degC","paramValue":"304"},{"paramCode":"co2","paramValue":"897"},{"paramCode":"mir.switchStatus","paramValue":"1"}]}} + +[INFO ] 2018-06-28 18:09:04,639 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:09:07,891 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.9/device/command/unbind : +{"deviceId":"CMCC-30728-0478632016F2"} + +[INFO ] 2018-06-28 18:09:08,065 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.9/device/command/unbind resp : +{"respCode":"1"} + +[INFO ] 2018-06-28 18:11:01,929 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : searchgw : {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} : CON + +[INFO ] 2018-06-28 18:11:01,993 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~searchgw resp : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} + +[INFO ] 2018-06-28 18:11:02,162 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : request : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 18:11:02,263 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~request resp : {"result":1} + +[INFO ] 2018-06-28 18:11:02,960 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~netinfo : {"password":"2xucq69m","encrypt":"MIXED-WPAPSK2","channel":2,"SSID":"CMCC-6HAj"} + +[INFO ] 2018-06-28 18:11:03,018 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : netinfo resp : {"respCode":"1"} + +[INFO ] 2018-06-28 18:11:10,503 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : success : {"deviceMac":"0478632013BA","deviceType":"30729"} + +[INFO ] 2018-06-28 18:11:10,571 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~success resp : {"result":1} + +[INFO ] 2018-06-28 18:11:12,270 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"","deviceType":"30729","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530180674} + +[INFO ] 2018-06-28 18:11:12,321 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"respCode":1000,"respCont":"Authorization failed"} + +[INFO ] 2018-06-28 18:11:14,111 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : bootstrap : {"deviceMac":"0478632013BA","deviceType":"30729","productToken":"PRMyeuaolwdnqZqI","timestamp":1530180675} + +[INFO ] 2018-06-28 18:11:15,777 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~bootstrap resp : {"heartBeatTime":30000,"deviceId":"CMCC-30729-0478632013BA","andlinkToken":"gW4juHDkEcBgfx3f","timestamp":1530180677,"deviceToken":"hlTVqO2UpY8kHAPX","gwToken":"cFd4Lh98yx4CN+2l"} + +[INFO ] 2018-06-28 18:11:17,032 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.1","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530180678} + +[INFO ] 2018-06-28 18:11:17,109 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530180678} + +[INFO ] 2018-06-28 18:11:18,972 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530180680,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:11:19,181 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:11:22,683 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530180683,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:11:22,776 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:11:34,911 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~command/file : {"fileMode":"DOWN","fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/e1e06ab6531b11e8b7ac00163e30fc50/QiJmH456Mb.bin","gwId":"00CFC0A8DC08{\"apmsOnlineStatus\":0}","deviceId":"CMCC-30729-0478632013BA","fileType":"FIRM"} + +[INFO ] 2018-06-28 18:11:34,965 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : command resp : {"respCode":"0"} + +[INFO ] 2018-06-28 18:11:45,337 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":1530180707,"data":{"respCode":2002,"respCont":"0"}} + +[INFO ] 2018-06-28 18:11:45,632 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:11:52,283 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530180683,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.1"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:11:52,386 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:11:53,176 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":1530180714,"data":{"respCode":2000,"respCont":0}} + +[INFO ] 2018-06-28 18:11:53,243 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:12:10,430 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"File","timestamp":1530180732,"data":{"respCode":2001,"respCont":0}} + +[INFO ] 2018-06-28 18:12:10,512 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:12:11,733 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : boot : {"deviceId":"CMCC-30729-0478632013BA","deviceType":"30729","firmwareVersion":"1.3.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.4","timestamp":1530180733} + +[INFO ] 2018-06-28 18:12:11,818 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~boot resp : {"encrypt":0,"heartBeatTime":30000,"timestamp":1530180733} + +[INFO ] 2018-06-28 18:12:13,678 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~192.168.1.4 : inform/data : {"deviceId":"CMCC-30729-0478632013BA","childDeviceId":"","eventType":"Inform","timestamp":1530180735,"data":{"params":[{"paramCode":"firmware","paramValue":"1.3.3"},{"paramCode":"softVersion","paramValue":"1.0.1"},{"paramCode":"mir.existStatus","paramValue":"0"}]}} + +[INFO ] 2018-06-28 18:12:14,156 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~inform/data resp : {"respCode":1} + +[INFO ] 2018-06-28 18:12:19,422 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 1~POST coap://192.168.1.4/device/command/unbind : +{"deviceId":"CMCC-30729-0478632013BA"} + +[INFO ] 2018-06-28 18:12:19,576 com.chinamobile.smartgateway.andlink.diagnotor.model.local.UdpMsgReceiver.run(UdpMsgReceiver.java:46) +receive udp data to port 10526 : 0~coap://192.168.1.4/device/command/unbind resp : +{"respCode":"1"} + diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/Firefox Setup 50.1.0.exe" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/Firefox Setup 50.1.0.exe" new file mode 100644 index 0000000..4c4807e Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/Firefox Setup 50.1.0.exe" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/copper_ota.txt" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/copper_ota.txt" new file mode 100644 index 0000000..bd79ee6 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/copper_ota.txt" @@ -0,0 +1,16 @@ +{"deviceId":"CMCC50294D20B11C","deviceType":"QLINK"} + + +2.̼ +coap://IP:5683/device/command/file + +{ + "deviceId":"CMCC-30531-B0F89327CDA8", + "childDeviceId":"", + "fileMode":"DOWN", + "fileType":"FIRM", + "gwip":"123456", + "fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/9e702e7441eb11e8b7ac00163e30fc50/WPyi2RGnYf.bin", + "downMode":1 +} + diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/debug/test_by_copper/copper_ota.txt" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/debug/test_by_copper/copper_ota.txt" new file mode 100644 index 0000000..bd79ee6 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/debug/test_by_copper/copper_ota.txt" @@ -0,0 +1,16 @@ +{"deviceId":"CMCC50294D20B11C","deviceType":"QLINK"} + + +2.̼ +coap://IP:5683/device/command/file + +{ + "deviceId":"CMCC-30531-B0F89327CDA8", + "childDeviceId":"", + "fileMode":"DOWN", + "fileType":"FIRM", + "gwip":"123456", + "fileUrl":"http://mxchip-fog.oss-cn-beijing.aliyuncs.com/ota/9e702e7441eb11e8b7ac00163e30fc50/WPyi2RGnYf.bin", + "downMode":1 +} + diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/\347\201\253\347\213\220coap\345\267\245\345\205\267OTA\350\257\264\346\230\216.docx" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/\347\201\253\347\213\220coap\345\267\245\345\205\267OTA\350\257\264\346\230\216.docx" new file mode 100644 index 0000000..8ed2374 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\347\201\253\347\213\220\346\265\217\350\247\210\345\231\250coap\345\267\245\345\205\267OTA\350\257\264\346\230\216/\347\201\253\347\213\220coap\345\267\245\345\205\267OTA\350\257\264\346\230\216.docx" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/Readme.txt" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/Readme.txt" new file mode 100644 index 0000000..2090013 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/Readme.txt" @@ -0,0 +1 @@ +APPҪʹãʹ÷οʹ˵顷 \ No newline at end of file diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/andlinkdemo1.0.apk" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/andlinkdemo1.0.apk" new file mode 100644 index 0000000..3dc9395 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/app/andlinkdemo1.0.apk" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Andlink\346\250\241\346\213\237\347\275\221\345\205\263\344\275\277\347\224\250\350\257\264\346\230\216v2.2.pdf" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Andlink\346\250\241\346\213\237\347\275\221\345\205\263\344\275\277\347\224\250\350\257\264\346\230\216v2.2.pdf" new file mode 100644 index 0000000..1543816 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Andlink\346\250\241\346\213\237\347\275\221\345\205\263\344\275\277\347\224\250\350\257\264\346\230\216v2.2.pdf" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Californium.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Californium.properties" new file mode 100644 index 0000000..9e92eec --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Californium.properties" @@ -0,0 +1,48 @@ +#Californium CoAP Properties file +#Fri Aug 24 09:28:49 CST 2018 +HTTP_SERVER_SOCKET_BUFFER_SIZE=8192 +UDP_CONNECTOR_OUT_CAPACITY=2147483647 +CONGESTION_CONTROL_ALGORITHM=Cocoa +USE_CONGESTION_CONTROL=false +ACK_TIMEOUT=2000 +MAX_ACTIVE_PEERS=150000 +TCP_CONNECT_TIMEOUT=10000 +NOTIFICATION_CHECK_INTERVAL_COUNT=100 +MAX_MESSAGE_SIZE=1024 +DEDUPLICATOR=DEDUPLICATOR_MARK_AND_SWEEP +TCP_CONNECTION_IDLE_TIMEOUT=10 +COAP_PORT=5683 +ACK_TIMEOUT_SCALE=2.0 +PREFERRED_BLOCK_SIZE=512 +NETWORK_STAGE_RECEIVER_THREAD_COUNT=4 +PROTOCOL_STAGE_THREAD_COUNT=4 +MAX_TRANSMIT_WAIT=93000 +USE_STRICT_RESPONSE_MATCHING=false +UDP_CONNECTOR_RECEIVE_BUFFER=0 +EXCHANGE_LIFETIME=247000 +HTTP_SERVER_SOCKET_TIMEOUT=100000 +CROP_ROTATION_PERIOD=2000 +UDP_CONNECTOR_DATAGRAM_SIZE=2048 +MAX_RETRANSMIT=4 +MAX_PEER_INACTIVITY_PERIOD=600 +MAX_RESOURCE_BODY_SIZE=4096 +NOTIFICATION_CHECK_INTERVAL=86400000 +LEISURE=5000 +HTTP_CACHE_RESPONSE_MAX_AGE=86400 +BLOCKWISE_STATUS_LIFETIME=300000 +UDP_CONNECTOR_SEND_BUFFER=0 +TCP_WORKER_THREADS=1 +HEALTH_STATUS_PRINT_LEVEL=FINEST +NETWORK_STAGE_SENDER_THREAD_COUNT=4 +NON_LIFETIME=145000 +TOKEN_SIZE_LIMIT=8 +HTTP_PORT=8080 +MARK_AND_SWEEP_INTERVAL=10000 +HEALTH_STATUS_INTERVAL=60 +ACK_RANDOM_FACTOR=1.5 +NSTART=1 +USE_RANDOM_MID_START=true +HTTP_CACHE_SIZE=32 +PROBING_RATE=1.0 +NOTIFICATION_REREGISTRATION_BACKOFF=2000 +COAP_SECURE_PORT=5684 diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Temp/005056C00008-tcp112139620521883/.lck" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/Temp/005056C00008-tcp112139620521883/.lck" new file mode 100644 index 0000000..e69de29 diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlink2.10-05.29-64bit.exe" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlink2.10-05.29-64bit.exe" new file mode 100644 index 0000000..4f6e402 Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlink2.10-05.29-64bit.exe" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlinkPlugins.log" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlinkPlugins.log" new file mode 100644 index 0000000..ae935df --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/andlinkPlugins.log" @@ -0,0 +1,530 @@ +2018-08-24 09:31:46,508 [INFO]-[com.chinamobile.smartgateway.andlink.proxy.NanoHTTPD] httpproxy is starting...... +2018-08-24 09:31:46,508 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.LanControl] Andlink gw is running(version 2.10y) +2018-08-24 09:31:47,447 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:31:48,382 [INFO]-[org.hsqldb.persist.Logger] checkpointClose start +2018-08-24 09:31:51,319 [INFO]-[org.hsqldb.persist.Logger] checkpointClose end +2018-08-24 09:31:51,332 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:31:51,470 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-08-24 09:31:52,015 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-08-24 09:31:52,017 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot http message:{"deviceType":"13000","productToken":"kw9pS2OqkbcMSRVY","encrypt":0,"gwId":"005056C00008","firmwareVersion":"f1.0","softwareVersion":"S1.0","timestamp":1535074311465,"andlinkVersion":"2.10y"} +2018-08-24 09:31:52,019 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-08-24 09:31:52,020 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-08-24 09:31:52,022 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-08-24 09:31:52,559 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot success!!! +2018-08-24 09:31:54,802 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:32:17,448 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:32:24,806 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:32:47,449 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:32:54,808 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:33:17,450 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:33:24,812 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:33:47,450 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:33:54,817 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:34:17,451 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:34:24,818 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:34:47,452 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:34:54,819 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:35:17,452 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:35:24,821 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:35:47,452 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:35:54,823 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:36:17,453 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:36:24,828 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:36:47,453 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:36:54,830 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:37:17,454 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:37:24,832 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:37:47,455 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:37:54,835 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:38:17,456 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:38:24,838 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:38:47,457 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:38:54,841 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:39:17,458 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:39:24,843 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:39:47,458 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:39:54,848 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:40:17,458 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:40:24,853 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:40:47,459 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:40:54,856 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:41:17,460 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:41:24,863 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:41:47,460 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:41:54,865 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:42:17,460 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:42:24,868 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:42:47,460 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:42:54,872 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:43:17,460 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:43:24,876 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:43:47,461 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:43:54,880 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:44:17,461 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:44:24,885 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:44:47,461 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:44:54,889 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:45:17,461 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:45:24,895 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:45:47,461 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:45:54,898 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:46:17,462 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:46:24,901 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:46:47,462 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:46:54,904 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:47:17,463 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:47:24,908 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:47:47,463 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:47:54,912 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:48:17,464 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:48:24,916 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:48:47,464 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:48:54,922 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:49:17,464 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:49:24,925 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:49:47,465 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:49:54,928 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:50:17,465 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:50:24,933 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:50:47,466 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:50:54,936 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:51:17,466 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:51:24,941 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:51:47,468 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:51:54,946 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:52:17,469 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:52:24,949 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:52:47,469 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:52:54,959 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:53:17,470 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:53:24,961 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:53:47,471 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:53:54,963 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:54:17,471 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:54:24,965 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:54:47,472 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:54:54,967 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:55:17,473 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:55:24,969 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:55:47,473 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:55:54,979 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:56:17,475 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:56:24,985 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:56:47,476 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:56:54,986 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:57:17,477 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-08-24 09:57:24,987 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-08-24 09:57:47,478 [INFO]-[com.chinamobile.sm2018-10-25 15:18:51,324 [INFO]-[com.chinamobile.smartgateway.andlink.proxy.NanoHTTPD] httpproxy is starting...... +2018-10-25 15:18:51,324 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.LanControl] Andlink gw is running(version 2.10y) +2018-10-25 15:18:52,219 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-10-25 15:18:52,526 [INFO]-[org.hsqldb.persist.Logger] checkpointClose start +2018-10-25 15:18:52,561 [INFO]-[org.hsqldb.persist.Logger] checkpointClose end +2018-10-25 15:18:52,581 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-10-25 15:18:52,801 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:18:53,827 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:18:53,829 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot http message:{"deviceType":"13000","productToken":"kw9pS2OqkbcMSRVY","encrypt":0,"gwId":"005056C00008","firmwareVersion":"f1.0","softwareVersion":"S1.0","timestamp":1540451932798,"andlinkVersion":"2.10y"} +2018-10-25 15:18:53,830 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:18:53,832 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:18:53,835 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:18:54,519 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot success!!! +2018-10-25 15:18:54,521 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-10-25 15:19:06,966 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] searchKey: {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} +2018-10-25 15:19:06,967 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] search gateway request type is: CON +2018-10-25 15:19:06,970 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] sync response with : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} +2018-10-25 15:19:07,262 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:19:07,262 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:19:07,266 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] IfIpInMemory function is invoked! +2018-10-25 15:19:07,267 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] RequestResource receive device qlink request,but no user online!! +2018-10-25 15:19:08,723 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:19:08,723 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:19:08,725 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] IfIpInMemory function is invoked! +2018-10-25 15:19:08,726 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] RequestResource receive device qlink request,but no user online!! +2018-10-25 15:19:09,209 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:19:09,210 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:19:09,213 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:19:09,381 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:19:09,381 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:19:09,387 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:19:09,391 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB023"} +2018-10-25 15:19:09,392 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB023"} +2018-10-25 15:19:09,595 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device and receive:{"respCode":"1"} +2018-10-25 15:19:09,887 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:19:09,888 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:19:09,890 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:19:09,924 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:19:09,925 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:19:09,927 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:19:09,928 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB023"} +2018-10-25 15:19:09,930 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB023"} +2018-10-25 15:19:11,932 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device but failed Post!! +2018-10-25 15:19:22,219 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-10-25 15:19:24,529 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-10-25 15:19:52,220 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-10-25 15:19:54,535 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-10-25 15:19:55,807 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:19:55,808 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:19:55,811 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:19:55,901 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:19:55,901 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:19:55,904 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:19:55,905 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:19:55,906 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:19:57,908 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device but failed Post!! +2018-10-25 15:20:09,473 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] searchKey: {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} +2018-10-25 15:20:09,473 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] search gateway request type is: CON +2018-10-25 15:20:09,476 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] sync response with : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} +2018-10-25 15:20:15,024 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:20:15,024 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:20:15,028 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] IfIpInMemory function is invoked! +2018-10-25 15:20:15,239 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] RequestResource notify user and receive:{"result":"1"} +2018-10-25 15:20:15,524 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:20:15,525 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:20:15,527 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:20:15,589 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:20:15,589 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:20:15,592 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:20:15,593 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:20:15,594 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:20:17,596 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device but failed Post!! +2018-10-25 15:20:21,211 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] post arg:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:20:21,212 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource Received and del deviceId:B0F89330F997 +2018-10-25 15:20:21,310 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource notify user and receive:{"result":"1"} +2018-10-25 15:20:22,221 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:0 +2018-10-25 15:20:24,536 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:0 +2018-10-25 15:20:25,215 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:20:25,215 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540452026} +2018-10-25 15:20:25,218 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:20:25,219 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:20:25,220 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:20:25,496 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540452027000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:20:25,499 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452025499,1540452025499,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:20:25,503 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:20:25,503 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] set true +2018-10-25 15:20:25,504 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:20:25,505 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:20:25,506 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:20:25,508 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:20:25,911 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:20:29,472 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:20:29,473 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540452030} +2018-10-25 15:20:29,477 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:20:29,479 [WARN]-[com.chinamobile.smartgateway.andlink.util.MqConnection] client did not connect, client is: null +2018-10-25 15:20:29,479 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:20:29,482 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540452029482,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:20:29,485 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:20:29,536 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:20:29,536 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:20:29,539 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot http message:{"deviceType":"13000","productToken":"kw9pS2OqkbcMSRVY","encrypt":0,"gwId":"005056C00008","firmwareVersion":"f1.0","softwareVersion":"S1.0","timestamp":1540452029536,"andlinkVersion":"2.10y"} +2018-10-25 15:20:29,542 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:20:29,542 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:20:29,543 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:20:29,792 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot success!!! +2018-10-25 15:20:30,040 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Connecting to platform with client ID 005056C00008 +2018-10-25 15:20:30,396 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] MQ Connected!!! result is: true +2018-10-25 15:20:30,608 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:20:30.607 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:20:30,610 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.44.1","firmwareVersion":"f1.0","softwareVersion":"S1.0"},"eventType":"Boot","gwId":"005056C00008","sessionId":2,"timestamp":1540452030605} +2018-10-25 15:20:52,222 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:21:00,312 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:21:22,222 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:21:30,323 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:21:52,223 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:21:55,402 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:21:55,403 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540452117} +2018-10-25 15:21:55,407 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:21:55,408 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:21:55.408 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:21:55,409 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":3,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540452115408} +2018-10-25 15:21:55,660 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:21:55,663 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540452115663,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:21:55,666 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:22:22,224 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:22:25,557 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:22:52,225 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:22:55,194 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:23:22,226 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:23:24,666 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:23:49,450 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:23:49,451 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:23:49,453 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:23:49,780 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:23:49,781 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:23:51,317 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] searchKey: {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} +2018-10-25 15:23:51,317 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] search gateway request type is: CON +2018-10-25 15:23:51,320 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] sync response with : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} +2018-10-25 15:23:51,793 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:23:51,793 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:23:51,796 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:23:51,797 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:23:51,797 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:23:52,227 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:23:52,308 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device and receive:{"respCode":"1"} +2018-10-25 15:24:02,363 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] post arg:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:24:02,363 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource Received and del deviceId:B0F89330F997 +2018-10-25 15:24:03,404 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource notify user and receive:{"result":"1"} +2018-10-25 15:24:04,644 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:24:04,645 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540452246} +2018-10-25 15:24:04,648 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:24:04,650 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:24:04,650 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:24:05,427 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540452247000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:24:05,429 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] delDevice sql:delete FROM device where deviceId='CMCC-30531-B0F89330F997' +2018-10-25 15:24:05,433 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452245433,1540452245433,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:24:05,434 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:24:05,434 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:24:05,436 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:24:05,436 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:24:05,437 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:24:06,527 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:24:07,266 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:24:07,266 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540452249} +2018-10-25 15:24:07,272 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:24:07,273 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:24:07.273 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:24:07,274 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":4,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540452247272} +2018-10-25 15:24:07,306 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:24:07,309 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540452247309,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:24:07,310 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:24:22,227 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:24:37,553 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:24:52,228 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:25:08,097 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:25:22,228 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:25:38,575 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:25:52,229 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:26:08,072 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:26:22,229 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:26:37,665 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:26:52,230 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:27:07,109 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:27:22,231 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:27:36,608 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:27:52,232 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:28:07,141 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:28:22,233 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:28:36,615 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:28:52,234 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:29:02,309 [WARN]-[com.chinamobile.smartgateway.andlink.device.control.wan.PushCallback] ----------MQ Connection lost!ѶϿ (32109) - java.net.SocketException: Connection reset +2018-10-25 15:29:22,234 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:29:33,812 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] the gw has device count:1 +2018-10-25 15:29:33,813 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:29:33,816 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:29:33,818 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot http message:{"deviceType":"13000","productToken":"kw9pS2OqkbcMSRVY","encrypt":0,"gwId":"005056C00008","firmwareVersion":"f1.0","softwareVersion":"S1.0","timestamp":1540452573812,"andlinkVersion":"2.10y"} +2018-10-25 15:29:33,818 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.GWBootBean] gw encrypt code:0 +2018-10-25 15:29:33,821 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:29:33,821 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:29:34,207 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.WanControl] gw boot success!!! +2018-10-25 15:29:34,404 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Connecting to platform with client ID 005056C00008 +2018-10-25 15:29:34,525 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] MQ Connected!!! result is: true +2018-10-25 15:29:34,600 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:29:34.6 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:29:34,604 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.44.1","firmwareVersion":"f1.0","softwareVersion":"S1.0"},"eventType":"Boot","gwId":"005056C00008","sessionId":5,"timestamp":1540452574600} +2018-10-25 15:29:38,455 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:29:52,235 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:30:10,621 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:30:22,236 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:30:40,516 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:30:52,237 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:31:09,985 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:31:22,238 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:31:39,452 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:31:52,239 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:32:08,948 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:32:22,240 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:32:38,458 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:32:52,240 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:33:08,046 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:33:22,241 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:33:37,482 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:33:52,242 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:34:06,982 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:34:22,243 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:34:36,494 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:34:52,244 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:35:05,982 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:35:22,245 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:35:35,484 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:35:52,245 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:36:05,028 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:36:22,246 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:36:34,513 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:36:52,247 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:37:04,003 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:37:22,248 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:37:33,489 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:37:52,249 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:38:02,987 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:38:22,250 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:38:32,525 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:38:52,252 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:39:01,995 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:39:22,253 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:39:31,491 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:39:52,254 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:39:58,704 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:39:58,705 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540453200} +2018-10-25 15:39:58,711 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:39:58,716 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:39:58.716 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:39:58,724 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":6,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540453198714} +2018-10-25 15:39:58,756 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:39:58,760 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540453198760,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:39:58,762 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:40:19,066 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] searchKey: {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} +2018-10-25 15:40:19,066 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] search gateway request type is: CON +2018-10-25 15:40:19,071 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] sync response with : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} +2018-10-25 15:40:20,554 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:40:20,555 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:40:20,558 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:40:20,586 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:40:20,587 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:40:20,590 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] IfIpInMemory function is invoked! +2018-10-25 15:40:20,591 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:40:20,592 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:40:20,592 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:40:20,604 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:40:20,604 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:40:20,605 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:40:20,606 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:40:20,607 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:40:20,914 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device and receive:{"respCode":"1"} +2018-10-25 15:40:22,255 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:40:22,609 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device but failed Post!! +2018-10-25 15:40:24,806 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] post arg:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:40:24,807 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource Received and del deviceId:B0F89330F997 +2018-10-25 15:40:24,853 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource notify user and receive:{"result":"1"} +2018-10-25 15:40:24,854 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:40:24,856 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540453227} +2018-10-25 15:40:24,857 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:40:24,858 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:40:24,858 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:40:25,067 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540453227000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:40:25,068 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] delDevice sql:delete FROM device where deviceId='CMCC-30531-B0F89330F997' +2018-10-25 15:40:25,072 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453225072,1540453225072,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:40:25,074 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:40:25,074 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:40:25,076 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:40:25,076 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:40:25,077 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:40:25,114 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:40:41,019 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:40:41,019 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540453243} +2018-10-25 15:40:41,022 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:40:41,024 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:40:41,025 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:40:41,554 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540453243000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:40:41,556 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] delDevice sql:delete FROM device where deviceId='CMCC-30531-B0F89330F997' +2018-10-25 15:40:41,560 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453241560,1540453241560,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:40:41,561 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:40:41,561 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:40:41,563 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:40:41,563 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:40:41,565 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:40:41,672 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:40:42,132 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:40:42,133 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540453244} +2018-10-25 15:40:42,137 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:40:42,138 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:40:42.138 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:40:42,139 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":7,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540453242138} +2018-10-25 15:40:42,346 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:40:42,353 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540453242353,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:40:42,359 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:40:52,256 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:41:12,429 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:41:22,256 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:41:41,921 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:41:52,256 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:42:11,417 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:42:22,257 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:42:40,929 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:42:52,258 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:43:10,409 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:43:22,258 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:43:38,158 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:43:38,158 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540453420} +2018-10-25 15:43:38,162 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:43:38,163 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:43:38.163 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:43:38,163 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":8,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540453418162} +2018-10-25 15:43:38,243 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:43:38,246 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540453418246,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:43:38,248 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:43:50,712 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:43:50,713 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:43:50,715 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:43:50,753 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:43:50,754 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:43:52,259 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:43:52,699 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:43:52,699 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:43:52,701 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:43:52,720 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:43:52,720 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:43:52,941 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:43:52,942 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:43:52,944 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:43:52,955 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:43:52,955 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:43:57,054 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] post arg from RegistResource:{"clientIp":"192.168.1.101","password":"123456","clientType":"1"} +2018-10-25 15:43:57,054 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] Receive password:123456 +2018-10-25 15:43:57,057 [INFO]-[com.chinamobile.smartgateway.andlink.basic.RegistResource] password ok and regist user ok:192.168.1.101 +2018-10-25 15:43:57,082 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource post arg:{"deviceId":"CMCC50294D20B11C"} +2018-10-25 15:43:57,082 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.AckResource] AckResource deviceId:CMCC50294D20B11C +2018-10-25 15:43:58,516 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] searchKey: {"searchKey":"ANDLINK-DEVICE","andlinkVersion":"V2"} +2018-10-25 15:43:58,516 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] search gateway request type is: CON +2018-10-25 15:43:58,519 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SearchGWResource] sync response with : {"searchAck":"ANDLINK-GW","andlinkVersion":"V2"} +2018-10-25 15:43:58,857 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] post arg from RequestResource:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:43:58,858 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.RequestResource] Receive deviceId:B0F89330F997,deviceType:30531,ipAddress:192.168.1.102,andlinkVersion:V1 +2018-10-25 15:43:58,860 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] NotifyDevice to IP:192.168.1.102 +2018-10-25 15:43:58,863 [INFO]-[com.chinamobile.smartgateway.andlink.HomNetworkingDeviceMgnService.ApdeviceServiceImp] {"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:43:58,864 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] send device:coap://192.168.1.102:5683/qlink/netinfo,payload:{"password":"12345678","encrypt":"WPAPSK","channel":0,"SSID":"LB_023"} +2018-10-25 15:43:59,136 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.SSIDUtil] AckResource notify device and receive:{"respCode":"1"} +2018-10-25 15:44:03,328 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] post arg:{"deviceMac":"B0F89330F997","deviceType":"30531"} +2018-10-25 15:44:03,328 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource Received and del deviceId:B0F89330F997 +2018-10-25 15:44:03,369 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:44:03,369 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540453445} +2018-10-25 15:44:03,371 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:44:03,373 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:44:03,373 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:44:03,408 [INFO]-[com.chinamobile.smartgateway.andlink.qlink.resource.SuccessResource] SuccessResource notify user and receive:{"result":"1"} +2018-10-25 15:44:03,683 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540453445000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:44:03,684 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] delDevice sql:delete FROM device where deviceId='CMCC-30531-B0F89330F997' +2018-10-25 15:44:03,687 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453443687,1540453443687,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:44:03,688 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:44:03,689 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:44:03,690 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:44:03,691 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:44:03,692 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:44:03,710 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:44:19,361 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] ----------------device bootstrap come in---------------------- +2018-10-25 15:44:19,362 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] device register parameters:{"deviceMac":"B0F89330F997","deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","timestamp":1540453461} +2018-10-25 15:44:19,364 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] http commit! +2018-10-25 15:44:19,364 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap to platform:{"deviceType":"30531","productToken":"PXmsE6kQmxEgc0e3","deviceMac":"B0F89330F997","gwId":"005056C00008","timestamp":734354788} +2018-10-25 15:44:19,366 [INFO]-[com.chinamobile.smartgateway.andlink.util.HttpsPost] AndlinkWebURL:https://open.home.komect.com/apistg/m2m/rest/device +2018-10-25 15:44:19,522 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] platform Resp:{"timestamp":1540453461000,"heartBeatTime":30000,"deviceId":"CMCC-30531-B0F89330F997","deviceToken":"Nsjq8T7L9PjitA1/","andlinkToken":"ZxMo0zJvvZMWP3Az"} +2018-10-25 15:44:19,524 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] delDevice sql:delete FROM device where deviceId='CMCC-30531-B0F89330F997' +2018-10-25 15:44:19,525 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] addDevice sql:INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453459525,1540453459525,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +2018-10-25 15:44:19,528 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] before check connected +2018-10-25 15:44:19,529 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] ----------[test][InformBootStrapService] after check connected +2018-10-25 15:44:19,530 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] Down secretKey:kZAqkvGHXk30sy83 +2018-10-25 15:44:19,531 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootStrapService] bootstrap response to device:{"deviceId":"CMCC-30531-B0F89330F997","andlinkToken":"ZxMo0zJvvZMWP3Az","deviceToken":"Nsjq8T7L9PjitA1/","gwToken":"kZAqkvGHXk30sy83"} +2018-10-25 15:44:19,533 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] SuccessRegist message post to app:{"deviceType":"30531","respCont":"success","deviceId":"CMCC-30531-B0F89330F997","respCode":1} +2018-10-25 15:44:19,610 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootStrapResource] notify user and receive: +2018-10-25 15:44:19,870 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] ---------------device boot come in--------------- +2018-10-25 15:44:19,873 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] device online parameters:{"deviceId":"CMCC-30531-B0F89330F997","deviceType":"30531","firmwareVersion":"1.4.3","softwareVersion":"1.0.1","ipAddress":"192.168.1.102","timestamp":1540453462} +2018-10-25 15:44:19,877 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformBootResource] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:44:19,878 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing at: 2018-10-25 15:44:19.878 to topic "/device/upward/data/005056C00008" qos 1 +2018-10-25 15:44:19,878 [INFO]-[com.chinamobile.smartgateway.andlink.util.MqConnection] Publishing message: {"data":{"ipAddress":"192.168.1.102","firmwareVersion":"1.4.3","softwareVersion":"1.0.1"},"eventType":"Boot","gwId":"005056C00008","sessionId":9,"deviceId":"CMCC-30531-B0F89330F997","timestamp":1540453459878} +2018-10-25 15:44:19,910 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] Boot localService is invoked!!! +2018-10-25 15:44:19,911 [INFO]-[com.chinamobile.smartgateway.andlink.device.bean.DeviceBootBean] updateStatus sql:UPDATE DEVICE SET STATUS = 1,LASTTIME = 1540453459911,ISSYNC=1,IP='192.168.1.102',FIRMWAREVERSION='1.4.3',SOFTWAREVERSION='1.0.1',XDATA='null' WHERE DEVICEID = 'CMCC-30531-B0F89330F997' +2018-10-25 15:44:19,914 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformBootService] boot Resp:{"encrypt":0,"heartBeatTime":30000,"timestamp":734354788} +2018-10-25 15:44:22,260 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:44:50,203 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:44:52,261 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:45:19,700 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:45:22,261 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:45:49,200 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:45:52,262 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:46:18,734 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:46:22,263 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:46:48,199 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:46:52,264 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:47:17,747 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:47:22,265 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:47:47,203 [INFO]-[com.chinamobile.smartgateway.andlink.device.control.lan.InformHeartBeatResource] Device heartBeat come in, deviceId: CMCC-30531-B0F89330F997, source port: 5683 +2018-10-25 15:47:52,266 [INFO]-[com.chinamobile.smartgateway.andlink.device.service.InformHeartBeatService] heartBeat timer come in,now onlineDevice.size is:1 +2018-10-25 15:48:16,702 [INFO]-[com.chinamobile.smartga \ No newline at end of file diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.lck" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.lck" new file mode 100644 index 0000000..2b259bc Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.lck" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.log" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.log" new file mode 100644 index 0000000..b1502bb --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.log" @@ -0,0 +1,44 @@ +/*C2*/SET SCHEMA PUBLIC +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452025499,1540452025499,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452025499,1540452029482,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452025499,1540452115663,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +COMMIT +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452245433,1540452245433,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452245433,1540452247309,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540452245433,1540453198760,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +COMMIT +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453225072,1540453225072,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +COMMIT +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453241560,1540453241560,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453241560,1540453242353,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453241560,1540453418246,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +COMMIT +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453443687,1540453443687,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +COMMIT +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453459525,1540453459525,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'null','null','null','PXmsE6kQmxEgc0e3') +COMMIT +DELETE FROM DEVICE WHERE DEVICEID='CMCC-30531-B0F89330F997' +INSERT INTO DEVICE VALUES('CMCC-30531-B0F89330F997','B0F89330F997','null','30531','192.168.1.102',1540453459525,1540453459911,'',1,'FatherDevice','Nsjq8T7L9PjitA1/',1,'1.4.3','1.0.1','null','PXmsE6kQmxEgc0e3') +COMMIT diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.properties" new file mode 100644 index 0000000..9992eef --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.properties" @@ -0,0 +1,4 @@ +#HSQL Database Engine 2.2.6 +#Thu Oct 25 15:18:52 CST 2018 +version=2.2.6 +modified=yes diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.script" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.script" new file mode 100644 index 0000000..0e3134e --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/db/andlink.script" @@ -0,0 +1,47 @@ +SET DATABASE UNIQUE NAME HSQLDB65698C5B06 +SET DATABASE GC 0 +SET DATABASE DEFAULT RESULT MEMORY ROWS 0 +SET DATABASE EVENT LOG LEVEL 0 +SET DATABASE SQL NAMES FALSE +SET DATABASE SQL REFERENCES FALSE +SET DATABASE SQL SIZE TRUE +SET DATABASE SQL TYPES FALSE +SET DATABASE SQL TDC DELETE TRUE +SET DATABASE SQL TDC UPDATE TRUE +SET DATABASE SQL TRANSLATE TTI TYPES TRUE +SET DATABASE SQL CONCAT NULLS TRUE +SET DATABASE SQL UNIQUE NULLS TRUE +SET DATABASE SQL CONVERT TRUNCATE TRUE +SET DATABASE SQL AVG SCALE 0 +SET DATABASE SQL DOUBLE NAN TRUE +SET DATABASE SQL LONGVAR IS LOB FALSE +SET DATABASE TRANSACTION CONTROL LOCKS +SET DATABASE DEFAULT ISOLATION LEVEL READ COMMITTED +SET DATABASE TRANSACTION ROLLBACK ON CONFLICT TRUE +SET DATABASE TEXT TABLE DEFAULTS '' +SET FILES WRITE DELAY 500 MILLIS +SET FILES BACKUP INCREMENT TRUE +SET FILES CACHE SIZE 10000 +SET FILES CACHE ROWS 50000 +SET FILES SCALE 8 +SET FILES LOB SCALE 32 +SET FILES DEFRAG 0 +SET FILES NIO TRUE +SET FILES NIO SIZE 256 +SET FILES LOG TRUE +SET FILES LOG SIZE 50 +CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e' +ALTER USER SA SET LOCAL TRUE +CREATE SCHEMA PUBLIC AUTHORIZATION DBA +SET SCHEMA PUBLIC +CREATE MEMORY TABLE PUBLIC.DEVICE(DEVICEID VARCHAR(32) NOT NULL PRIMARY KEY,MAC VARCHAR(17),PARENTDEVICEID VARCHAR(32),DEVICETYPE VARCHAR(24),IP VARCHAR(16),REGTIME BIGINT,LASTTIME BIGINT,PARAMDETAIL VARCHAR(256),STATUS INTEGER,DEVICECLASS VARCHAR(20),DEVICETOKEN VARCHAR(100),ISSYNC INTEGER,FIRMWAREVERSION VARCHAR(32),SOFTWAREVERSION VARCHAR(32),XDATA VARCHAR(1000),PRODUCTTOKEN VARCHAR(16)) +ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 +SET DATABASE DEFAULT INITIAL SCHEMA PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC +GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC +GRANT DBA TO SA +SET SCHEMA SYSTEM_LOBS +INSERT INTO BLOCKS VALUES(0,2147483647,0) diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/IfEncrypt.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/IfEncrypt.json" new file mode 100644 index 0000000..ba080fd --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/IfEncrypt.json" @@ -0,0 +1 @@ +{"encrypt":0} diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/SyncCode.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/SyncCode.json" new file mode 100644 index 0000000..caaa534 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/SyncCode.json" @@ -0,0 +1 @@ +{"SyncCode":"1"} diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/Version.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/Version.json" new file mode 100644 index 0000000..0a7eea4 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/Version.json" @@ -0,0 +1 @@ +{"Version":"2.10y"} diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/WiFiParameterSync.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/WiFiParameterSync.json" new file mode 100644 index 0000000..c849bd5 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/WiFiParameterSync.json" @@ -0,0 +1 @@ +{"deviceId": "CMCC-30103-AP1","data": {"SyncCode": "1","Configurations": [{"Radio": "2.4G","Index": 1,"Enable": 1,"SSID": "CMCC-2341","SecurityMode": "WPA-WPA2-Personal","Pwd":"12345678","MaxAssociateNum": 10,"SSIDAdvertisementEnabled": 1},{"Radio": "5G","Index": 1,"Enable": 1,"SSID": "CMCC-2341","SecurityMode": "WPA-WPA2-Personal","Pwd":"12345678","MaxAssociateNum": 10,"SSIDAdvertisementEnabled": 1}]}} diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/ssid.json" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/ssid.json" new file mode 100644 index 0000000..e9df80b --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/jsonFiles/ssid.json" @@ -0,0 +1 @@ +{"SSID":"LB_023","password":"12345678","encrypt":"WPAPSK"} diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log.properties" new file mode 100644 index 0000000..d1b3957 --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log.properties" @@ -0,0 +1,12 @@ +#JDK logger Properties file +#Fri Aug 24 09:28:49 CST 2018 +.level=CONFIG +java.util.logging.FileHandler.limit=50000 +java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter +handlers=java.util.logging.FileHandler,java.util.logging.ConsoleHandler +java.util.logging.FileHandler.count=1 +com.xyz.foo.level=SEVERE +java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter +java.util.logging.ConsoleHandler.level=CONFIG +java.util.logging.FileHandler.pattern=./andlinkPlugins.log +java.util.logging.FileHandler.append=true diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log4j.properties" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log4j.properties" new file mode 100644 index 0000000..3ea55cc --- /dev/null +++ "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/virtual_gateway/log4j.properties" @@ -0,0 +1,18 @@ +#My customized log properties +#Fri Aug 24 09:28:49 CST 2018 +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.D.MaxFileSize=1MB +log4j.appender.D.BufferSize=1024 +log4j.rootLogger=info,stdout,D +log4j.appender.D.layout.ConversionPattern=%-d{yyyy-MM-dd HH\:mm\:ss,SSS} [%p]-[%C] %m%n +log4j.appender.D.BufferedIO=true +log4j.appender.D.MaxBackupIndex=1 +log4j.appender.D=com.chinamobile.smartgateway.andlink.util.MyAppender +log4j.appender.D.Threshold=INFO +log4j.appender.D.Append=true +log4j.appender.stdout.layout.ConversionPattern=%-d{yyyy-MM-dd HH\:mm\:ss,SSS} [%p]-[%C] %m%n +log4j.appender.D.layout=org.apache.log4j.PatternLayout +log4j.appender.D.ImmediateFlush=false +log4j.appender.D.File=./andlinkPlugins.log +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.Target=System.out diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/~$\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/~$\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" new file mode 100644 index 0000000..11f598b Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/~$\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" differ diff --git "a/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" new file mode 100644 index 0000000..343b76b Binary files /dev/null and "b/resource/qlink/1.\346\234\254\345\234\260\347\275\221\345\205\263/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203/\350\231\232\346\213\237\345\274\200\345\217\221\347\216\257\345\242\203\344\275\277\347\224\250\350\257\264\346\230\216\344\271\246.docx" differ diff --git "a/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/app-cmccUniversalApp-release-3.5.0.1809051454.apk" "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/app-cmccUniversalApp-release-3.5.0.1809051454.apk" new file mode 100644 index 0000000..e5aeb08 Binary files /dev/null and "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/app-cmccUniversalApp-release-3.5.0.1809051454.apk" differ diff --git "a/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/cmcc.apk" "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/cmcc.apk" new file mode 100644 index 0000000..f3b0dfb Binary files /dev/null and "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/cmcc.apk" differ diff --git "a/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/readme.txt" "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/readme.txt" new file mode 100644 index 0000000..0ffcafb --- /dev/null +++ "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/readme.txt" @@ -0,0 +1 @@ +APPط \ No newline at end of file diff --git "a/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/\346\235\255\347\240\224-ios-app.jpg" "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/\346\235\255\347\240\224-ios-app.jpg" new file mode 100644 index 0000000..b332257 Binary files /dev/null and "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/app/\346\235\255\347\240\224-ios-app.jpg" differ diff --git "a/resource/qlink/2.\344\272\221\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\344\272\221\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v2.0.docx" "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\344\272\221\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v2.0.docx" new file mode 100644 index 0000000..6dc2985 Binary files /dev/null and "b/resource/qlink/2.\344\272\221\347\275\221\345\205\263/\344\270\255\345\233\275\347\247\273\345\212\250And-link\345\215\217\350\256\256\350\247\204\350\214\203\357\274\210\350\256\276\345\244\207\344\272\221\347\275\221\345\205\263\347\256\241\347\220\206\345\210\206\345\206\214\357\274\211v2.0.docx" differ diff --git "a/resource/qlink/3.\345\205\266\344\273\226/\346\235\255\347\240\224qlink SDK.pptx" "b/resource/qlink/3.\345\205\266\344\273\226/\346\235\255\347\240\224qlink SDK.pptx" new file mode 100644 index 0000000..08a5b0c Binary files /dev/null and "b/resource/qlink/3.\345\205\266\344\273\226/\346\235\255\347\240\224qlink SDK.pptx" differ diff --git a/resource/qlink/image/bind_ok.png b/resource/qlink/image/bind_ok.png new file mode 100644 index 0000000..f4f3c7a Binary files /dev/null and b/resource/qlink/image/bind_ok.png differ diff --git a/resource/qlink/image/cli_uart.png b/resource/qlink/image/cli_uart.png new file mode 100644 index 0000000..6f5389a Binary files /dev/null and b/resource/qlink/image/cli_uart.png differ diff --git a/resource/qlink/image/control_data.png b/resource/qlink/image/control_data.png new file mode 100644 index 0000000..1331c42 Binary files /dev/null and b/resource/qlink/image/control_data.png differ diff --git a/resource/qlink/image/request_all_data.png b/resource/qlink/image/request_all_data.png new file mode 100644 index 0000000..2a808fc Binary files /dev/null and b/resource/qlink/image/request_all_data.png differ diff --git a/resource/qlink/image/request_some_data.png b/resource/qlink/image/request_some_data.png new file mode 100644 index 0000000..17680ea Binary files /dev/null and b/resource/qlink/image/request_some_data.png differ diff --git a/resource/qlink/image/user_config.png b/resource/qlink/image/user_config.png new file mode 100644 index 0000000..3956e52 Binary files /dev/null and b/resource/qlink/image/user_config.png differ diff --git "a/resource/qlink/image/\344\272\247\345\223\201\350\265\204\346\226\231.png" "b/resource/qlink/image/\344\272\247\345\223\201\350\265\204\346\226\231.png" new file mode 100644 index 0000000..533c131 Binary files /dev/null and "b/resource/qlink/image/\344\272\247\345\223\201\350\265\204\346\226\231.png" differ diff --git "a/resource/qlink/image/\347\216\257\345\242\203OK.png" "b/resource/qlink/image/\347\216\257\345\242\203OK.png" new file mode 100644 index 0000000..576c6bc Binary files /dev/null and "b/resource/qlink/image/\347\216\257\345\242\203OK.png" differ diff --git a/resource/qlink/readme.txt b/resource/qlink/readme.txt new file mode 100644 index 0000000..051f179 --- /dev/null +++ b/resource/qlink/readme.txt @@ -0,0 +1,21 @@ + +֤ΪʹغͱزAPPлص֤֮Ʒ⣬̼ύעϢУϺ֤ܽ׶Ρ + +1.app + ļΪAPPزAPPزAPP + +2.virtual_gateway + ļΪأں֮طģʵ֤˾ͻ˾ + +3.Թ + ļΪʹõı֤ߣںУԻʵأ߽֤֤ͨ뺼Ա֤ + ҪȰ󶨺ʵصַ̨ʹãء + +4.coapOTA˵ + OTAԹߣдϢcopper_ota.txt,ֱӸ޸device_idͶӦurlӼɡ + urlӿʹwww.fogcloud.ioһotaϢҪļϴɡ + +5.鿴Э淶ӦòдҪһЩϱʽӦʽ + + + diff --git a/src/cloud_qlink/cloud_qlink.c b/src/cloud_qlink/cloud_qlink.c index b5d0f73..72655ec 100644 --- a/src/cloud_qlink/cloud_qlink.c +++ b/src/cloud_qlink/cloud_qlink.c @@ -208,7 +208,7 @@ MX_WEAK void emh_ev_qlink_get_local_attrs(emh_qlink_msg_t* msg) MX_WEAK int emh_ev_qlink_set_local_attrs(emh_qlink_msg_t* msg) { - + return 0; } mx_status qlink_raw_start(void) @@ -221,3 +221,7 @@ mx_status qlink_user_start(void) return emh_qlink_user_start(); } +mx_status qlink_send_data( char *type, uint8_t *data, uint32_t len ) +{ + return emh_qlink_send_json_to_cloud( type, data, len ); +} \ No newline at end of file diff --git a/src/cloud_qlink/cloud_qlink.h b/src/cloud_qlink/cloud_qlink.h index 44113ca..1444066 100644 --- a/src/cloud_qlink/cloud_qlink.h +++ b/src/cloud_qlink/cloud_qlink.h @@ -138,7 +138,6 @@ typedef struct { mx_status qlink_init(emh_qlink_config_t *config); /** - * * @brief Cloud qlink service runloop, application should called * periodically to handle events and transfer data. * To save power, also can be called when uart data is ready @@ -151,7 +150,6 @@ mx_status qlink_init(emh_qlink_config_t *config); mx_status qlink_runloop(void); /** - * * @brief Start one key Wi-Fi configuration. EMW module start monitor mode * * @return mx_status @@ -169,14 +167,11 @@ mx_status qlink_raw_start(void); mx_status qlink_user_start(void); /** - * - * @brief Try to procedure an unbind operation on cloud if connected and - * restore module settings to default. + * @brief + * * - * @return mx_status - * */ -mx_status qlink_restore(void); +mx_status qlink_send_data( char *type, uint8_t *data, uint32_t len ); #endif //_CLOUD_QLINK_H_ diff --git a/src/helper/cli/mx_cli.c b/src/helper/cli/mx_cli.c index 49a5c5f..f61a61b 100644 --- a/src/helper/cli/mx_cli.c +++ b/src/helper/cli/mx_cli.c @@ -25,7 +25,7 @@ #define EXIT_MSG "exit" #define NUM_BUFFERS 1 #define MAX_COMMANDS 50 -#define INBUF_SIZE 80 +#define INBUF_SIZE 1024 #define OUTBUF_SIZE 1024 struct cli_st { diff --git a/src/helper/emhost/emh_api.h b/src/helper/emhost/emh_api.h index 5f25ecf..4654056 100644 --- a/src/helper/emhost/emh_api.h +++ b/src/helper/emhost/emh_api.h @@ -428,13 +428,13 @@ MX_WEAK void emh_ev_ilop_set_local_attr(emh_ilop_msg* msg); #define EMH_QLINK_PRODUCT_TOKEN_MAXLEN (16 + 1) #define EMH_QLINK_ANDLINK_TOKEN_MAXLEN (16 + 1) -#define EMH_QLINK_DEVICE_TYPE_MAXLEN (10 + 1) +#define EMH_QLINK_PRODUCT_ID_MAXLEN (10 + 1) typedef struct { struct { const char* product_token; /**< Reference to product TRD document */ const char* andlink_token; /**< Reference to product TRD document */ - const char* device_type; /**< Reference to product TRD document */ + const char* product_id; /**< Reference to product TRD document */ emh_arg_qlink_format_t format; /**< Reference to product TRD document */ } product_info; struct { diff --git a/src/helper/emhost/emh_qlink.c b/src/helper/emhost/emh_qlink.c index f59c559..730991d 100644 --- a/src/helper/emhost/emh_qlink.c +++ b/src/helper/emhost/emh_qlink.c @@ -40,7 +40,7 @@ mx_status emh_qlink_config(const emh_qlink_config_t* config, bool force) { char args[200], *arg_list[5]; - const char* format_arg = emh_arg_for_type(EMH_ARG_QLINK_FORMAT, config->product_info.format); //JSON or RAW + // const char* format_arg = emh_arg_for_type(EMH_ARG_QLINK_FORMAT, config->product_info.format); //JSON or RAW if( false==force ) { @@ -49,18 +49,17 @@ mx_status emh_qlink_config(const emh_qlink_config_t* config, bool force) && ATCmdParser_recv("+QLINKPRODUCT:%200[^\r]\r\n",args) && ATCmdParser_recv("OK\r\n")) { if (3 == ATCmdParser_analyse_args(args, arg_list, 3)) { - if ( !(strcmp(arg_list[0], config->product_info.product_token) - || strcmp(arg_list[1], config->product_info.andlink_token) - || strcmp(arg_list[2], config->product_info.device_type)) ){ + if ( strcmp(arg_list[0], config->product_info.product_id) + ||!(strcmp(arg_list[1], config->product_info.product_token) + || strcmp(arg_list[2], config->product_info.andlink_token)) ){ goto label_version; } } } } - if (!(ATCmdParser_send("AT+QLINKPRODUCT=%s,%s,%s", - config->product_info.product_token, config->product_info.andlink_token, - config->product_info.device_type ) + if (!(ATCmdParser_send("AT+QLINKPRODUCT=%s,%s,%s", config->product_info.product_id, + config->product_info.product_token, config->product_info.andlink_token ) && ATCmdParser_recv("OK\r\n"))) { return kGeneralErr; } @@ -141,7 +140,7 @@ mx_status emh_qlink_service_stop( void ) mx_status emh_qlink_send_json_to_cloud( char *type, uint8_t *data, uint32_t len ) { - if (ATCmdParser_send("AT+QLINKSEND=%d", type, len) + if (ATCmdParser_send("AT+QLINKSEND=%s,%d", type, len) && ATCmdParser_recv(">") && ATCmdParser_write((char *)data, len) == len && ATCmdParser_recv("OK\r\n")) { @@ -196,12 +195,12 @@ void emh_qlink_event_handler(void) int res = 0; res = emh_ev_qlink_set_local_attrs(&msg); - if( NULL!=strstr(msg.data, "data") ) + if( NULL!=strstr((char *)msg.data, "data") ) { - printf("ready to send back data\r\n"); + // printf("ready to send back data\r\n"); emh_qlink_send_data_to_uart(res); } - printf("after sending back data\r\n"); + // printf("after sending back data\r\n"); free(data); } /* QLINK device === json value===> server */ diff --git a/src/helper/mx_opt.h b/src/helper/mx_opt.h index 65616cc..4747748 100644 --- a/src/helper/mx_opt.h +++ b/src/helper/mx_opt.h @@ -65,7 +65,7 @@ extern "C" { #endif #if !defined MX_CLI_RX_BUF_SIZE -#define MX_CLI_RX_BUF_SIZE (128) /**< Cli command receiver serial port input buffer size */ +#define MX_CLI_RX_BUF_SIZE (1024) /**< Cli command receiver serial port input buffer size */ #endif /******************************************************************************