提交 a88b23bb authored 作者: 陈泽健's avatar 陈泽健

拆分出MQTT通用工具目录,用于后续开发测试人员进行模拟设备调试以及MQTT相关的程序验证。

上级 bd3037bd
/预定系统/reports /预定系统/reports
\ No newline at end of file /预定系统/log
\ No newline at end of file
import json
import logging
import csv
import os
import re
import threading
import time
from time import sleep
from datetime import datetime
import paho.mqtt.client as mqtt
# 配置日志
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
class Mqtt:
def __init__(self, broker_address, port):
"""
初始化 MQTT 客户端
:param broker_address: MQTT 代理地址
:param port: MQTT 代理端口
"""
self.lock = None
self.broker_address = broker_address
self.port = port
self.client = None
self._received_message_lock = threading.Lock()
self.received_message = None
self.message_type = None
def connect(self):
"""
连接到 MQTT 服务器
"""
try:
self.client = mqtt.Client()
self.client.on_connect = self.on_connect # 设置连接回调
self.client.on_message = self.on_message # 设置消息回调
self.client.connect(self.broker_address, self.port) # 连接到代理
self.client.loop_start() # 启动网络循环
except Exception as e:
logging.error(f"连接到MQTT服务器时发生错误: {e}")
raise
def disconnect(self):
"""
断开与 MQTT 服务器的连接
"""
if self.client:
try:
self.client.loop_stop() # 停止网络循环
self.client.disconnect() # 断开连接
logging.info("已断开与MQTT 服务器的连接")
except Exception as e:
logging.error(f"断开与MQTT 服务器的连接时发生错误: {e}")
finally:
self.client = None # 确保资源被完全释放
else:
logging.warning("尝试断开连接时,客户端已不存在")
def on_connect(self, client, userdata, flags, rc):
"""
连接成功或失败的回调函数
:param client: 客户端实例
:param userdata: 用户数据
:param flags: 连接标志
:param rc: 返回码
"""
try:
if rc == 0:
logging.info("连接成功")
else:
logging.error(f"连接失败,返回码: {rc}")
# 根据不同的返回码采取不同的措施
if rc == 1:
logging.error("错误:错误的协议版本")
elif rc == 2:
logging.error("错误:无效的客户端标识符")
elif rc == 3:
logging.error("错误:服务器不可用")
elif rc == 4:
logging.error("错误:错误的用户名或密码")
elif rc == 5:
logging.error("错误:未授权")
else:
logging.error("未知错误")
except Exception as e:
logging.exception(f"在处理连接结果时发生异常: {e}")
def on_message(self, client, userdata, msg):
"""
接收到消息的回调函数
:param client: 客户端实例
:param userdata: 用户数据
:param msg: 消息对象
"""
try:
payload = msg.payload.decode('utf-8', errors='replace') # 处理解码错误
logging.info(f"收到消息: {msg.topic} {payload[:50]}...") # 脱敏日志记录
except UnicodeDecodeError as e:
logging.error(f"解码错误: {e}")
payload = "无法解码的消息"
with self._received_message_lock:
self.received_message = payload # 线程安全地存储接收到的消息
def subscribe(self, topic):
"""
订阅指定的主题
:param topic: 主题名称
"""
if self.client is None:
logging.error("客户端未初始化,无法订阅主题")
raise ValueError("客户端未初始化,无法订阅主题")
# 输入验证
if not isinstance(topic, str) or not topic.strip():
logging.error("无效的主题名称")
raise ValueError("无效的主题名称")
try:
self.client.subscribe(topic)
logging.info(f"已订阅主题: {topic}")
except ConnectionError as ce:
logging.error(f"连接错误,无法订阅主题: {topic}, 错误信息: {str(ce)}")
raise
except TimeoutError as te:
logging.error(f"超时错误,无法订阅主题: {topic}, 错误信息: {str(te)}")
raise
except ValueError as ve:
logging.error(f"值错误,无法订阅主题: {topic}, 错误信息: {str(ve)}")
raise
except Exception as e:
logging.error(f"未知错误,无法订阅主题: {topic}, 错误信息: {str(e)}")
raise
def set_message_type(self, message_type):
"""
设置消息类型
此方法用于设置或更改消息类型属性,允许对象根据需要处理不同类型的消息
参数:
message_type: 要设置的消息类型,可以是任何数据类型,但通常应该是字符串、整数或枚举类型
返回:
"""
self.message_type = message_type
def publish(self, topic, message):
"""
发布消息到指定的主题
:param topic: 主题名称
:param message: 消息内容
"""
if self.client:
try:
# 将消息转换为JSON字符串
if self.message_type == dict and isinstance(message, dict):
message = json.dumps(message)
elif message is None:
message = ""
else:
message = str(message)
except (TypeError, ValueError) as e:
logging.error(f"{datetime.now()} - 消息转换失败: {e} - 调用者: {self.__class__.__name__}.publish")
raise
try:
self.client.publish(topic, message)
logging.info(f"{datetime.now()} - 已发布消息到主题: {topic} - 调用者: {self.__class__.__name__}.publish")
except Exception as e:
logging.error(f"{datetime.now()} - 消息发布失败: {e} - 失败的主题: {topic}, 消息: {message} - 调用者: {self.__class__.__name__}.publish")
raise
def wait_for_message(self, topic, timeout=5):
"""
等待指定主题的消息
:param topic: 主题名称
:param timeout: 超时时间(秒)
:return: 接收到的消息或 None
"""
if self.client is None:
logging.warning("Client is not initialized")
return None
if timeout < 0:
logging.warning("Timeout cannot be negative")
return None
start_time = time.monotonic()
while (time.monotonic() - start_time) < timeout:
try:
with self.lock:
if self.received_message is not None:
return self.received_message
except Exception as e:
logging.error(f"Error accessing received_message: {e}")
try:
time.sleep(0.1)
except Exception as e:
logging.error(f"Error in sleep: {e}")
return None
@staticmethod
def read_config_from_csv(file_path):
"""
从 CSV 文件读取配置
:param file_path: CSV 文件路径
:param allowed_directory: 允许访问的目录
:return: 配置列表
"""
try:
# 验证文件路径
if not os.path.isfile(file_path):
raise FileNotFoundError(f"文件 {file_path} 不存在")
with open(file_path, mode='r', encoding='utf-8') as file:
reader = csv.DictReader(file)
return [row for row in reader]
except FileNotFoundError as e:
print(f"错误: {e}")
return []
except PermissionError as e:
print(f"错误: {e}")
return []
except Exception as e:
print(f"未知错误: {e}")
return []
@staticmethod
def wait_for_message(self, topic, timeout=5):
"""
等待指定主题的消息
:param topic: 主题名称
:param timeout: 超时时间(秒)
:return: 接收到的消息或 None
"""
if not isinstance(topic, str) or not re.match(r'^[a-zA-Z0-9_\-]+$', topic):
raise ValueError("Invalid topic format")
if timeout < 0:
return None
try:
if self.client:
start_time = time.time()
while (time.time() - start_time) < timeout:
if self.has_received_message():
return self.received_message
sleep(0.1)
return None
except AttributeError:
return None
return None
def has_received_message(self):
return hasattr(self, 'received_message')
@staticmethod
def read_config_from_csv(file_path):
"""
从 CSV 文件读取配置
:param file_path: CSV 文件路径
:return: 配置列表
"""
if not os.path.exists(file_path):
raise FileNotFoundError(f"文件 {file_path} 不存在")
try:
with open(file_path, mode='r', encoding='utf-8') as file:
reader = csv.DictReader(file)
config_list = [row for row in reader]
if not config_list:
raise ValueError("CSV 文件内容为空或格式不正确")
logging.info(f"成功读取文件 {file_path}")
return config_list
except Exception as e:
logging.error(f"读取文件 {file_path} 时发生错误: {e}")
return []
@staticmethod
def build_message(config, current_time,topic):
"""
构建消息内容
:param config: 配置字典
:param current_time: 当前时间
:return: 消息字典
"""
#安卓信息设备上报
if topic == "rebootResponseTopic":
return {
"method": "/system/readSystemInfo",
"clientId": config['clientId'],
"result": json.dumps({
"result": {
"buildInfo": {
"appToken": config['appToken'],
"companyNumber": config['companyNumber'],
"cnum": config['cnum'],
"conferenceName": "测试会议室",
"conferenceId": int(config['conferenceId']),
"defaultQrCodeUrl": "http://192.168.5.218:8888/group1/M00/00/21/wKgFyGNBWZmADtnNAAAwrxR0X8s016.png",
"aliasName": "zt",
"serverBaseUrl": "http://192.168.5.218:8996/",
"localBindTime": current_time,
"generalField": "{\"conferencePhone\":\"\",\"chooseTimeType\":1,\"meetingTopicSwitch\":\"1\",\"meetingContentSwitch\":\"1\",\"meetingReverseTypeSwitch\":\"1\",\"seatArrangeSwitch\":\"1\",\"meetingVoteSwitch\":\"1\",\"floorPlanPath\":\"\",\"jumpToPaperless\":2,\"approvalList\":[],\"isLeaderJoin\":false,\"meetingPublishScreenSwitch\":\"1\"}"
},
"faceVersion": "4.2.12021020201.1",
"wgtVersion": "0.0.81",
"deviceModel": "yx_rk3288",
"abiList": ["armeabi-v7a", "armeabi"],
"androidId": "48134e6047a19aaf",
"appName": "UBAINS",
"appPackageName": "com.ubains.local.gviewer",
"appVersion": 78,
"appVersionName": "1.1.78",
"battery": 0,
"bluetoothEnabled": False,
"camerasCount": 1,
"charging": True,
"density": 1,
"freeAndTotalMemory": "1176M/1997M",
"internalAvailableSize": 4306395136,
"internalTotalSize": 4877451264,
"ipAddress": "192.168.5.129",
"macAddress": config['macAddress'],
"networkType": "NETWORK_ETHERNET",
"processCpuUsage": "0.82%",
"resolution": "1280x800",
"romName": "rockchip",
"rooted": True,
"sdkVersionCode": 25,
"sdkVersionName": "7.1.2",
"sysDate": "Tue Oct 22 18:24:52 GMT+08:00 2024",
"sysDateStr": current_time,
"sysElapsedRealtime": "342:26:11",
"sysLanguage": "zh",
"sysSupportedSensors": ["Accelerometer sensor", "Gyroscope sensor",
"Game Rotation Vector Sensor",
"Gravity Sensor"],
"authCode": config['authCode'],
"conferenceName": "测试会议室"
}
})
}
#安卓信息心跳上报
elif topic == "/uams/android/broadcast":
return json.dumps({
"type":"heartbeat",
"clientId" : config['clientId'],
"appId":"com.ubains.uniplatform",
"deviceId": config['deviceId']
})
#毫米波雷达数据上报
elif "/properties/upload" in topic or "/event/upload" in topic:
return json.dumps({
"properties":{
"client_id" : config['client_id'],
"presence_state" : config['presence_state'],
"kaiguan" : config['kaiguan'],
"julishezhi" : config['julishezhi'],
"lingmindushezhi" : config['lingmindushezhi'],
"led":1,
"wifi_mac" : config['wifi_mac'],
"ble_mac" : config['ble_mac'],
"last_connection_time": current_time,
"current_time":current_time,
"device_model" : "c1_100_wifi_u",
"fw_version":"0.0.6",
"sn" : config['sn'],
"ip" : config['ip']
}
})
# 北京富创项目的消息体与主题
elif topic == "/meeting/message/sync":
return json.dumps({
"action": config['action'],
"thirdMessageDTO": [{
"thirdPartyMeetingId": config['thirdPartyMeetingId'],
"messageCompere": "张三",
"thirdPartyUserId": "jiaojiao",
"conferenceName": config['conferenceName'],
"thirdPartyRoomId": config['thirdPartyRoomId'],
"messageName": config['messageName'],
"startTime": config['startTime'],
"endTime": config['endTime'],
"companyNumber": config['companyNumber'],
"participantList": ["JiaoJiao", "JiaYu", "DuiFangZhengZaiZhangTouFa", "DuoTangMaLaBan"]
}]
})
def send_and_receive_messages(self, topic: str, message: str, num_times: int = 1, timeout: int = 5,
interval: float = 0.2):
"""
发送并接收消息
:param topic: 主题名称
:param message: 消息内容
:param num_times: 发送次数,默认为1
:param timeout: 超时时间(秒),默认为5秒
:param interval: 每次发送之间的间隔时间(秒),默认为0.2秒
"""
if not isinstance(topic, str) or not isinstance(message, str):
raise ValueError("主题和消息必须是字符串类型")
for i in range(num_times):
try:
self.publish(topic, message)
received_message = self.wait_for_message(topic, timeout=timeout)
if received_message:
logging.info("消息接收成功!")
else:
logging.warning("超时时间内未接收到消息。")
sleep(interval)
except (ConnectionError, TimeoutError) as e:
logging.error(f"网络连接或超时错误: {e}")
except ValueError as e:
logging.error(f"值错误: {e}")
except Exception as e:
logging.error(f"未知错误: {e}")
\ No newline at end of file
topic,client_id,presence_state,kaiguan,julishezhi,lingmindushezhi,wifi_mac,ble_mac,sn,ip
/c1_100_wifi_u/D4F98D094001/properties/upload,D4F98D094001,1,0,3,2,D4F98D094001,D4F98D093001,D4F98D092001,192.168.1.1
/c1_100_wifi_u/D4F98D094002/properties/upload,D4F98D094002,1,0,3,2,D4F98D094002,D4F98D093002,D4F98D092002,192.168.1.2
/c1_100_wifi_u/D4F98D094003/properties/upload,D4F98D094003,1,0,3,2,D4F98D094003,D4F98D093003,D4F98D092003,192.168.1.3
/c1_100_wifi_u/D4F98D094004/properties/upload,D4F98D094004,1,0,3,2,D4F98D094004,D4F98D093004,D4F98D092004,192.168.1.4
/c1_100_wifi_u/D4F98D094005/properties/upload,D4F98D094005,1,0,3,2,D4F98D094005,D4F98D093005,D4F98D092005,192.168.1.5
/c1_100_wifi_u/D4F98D094006/properties/upload,D4F98D094006,1,0,3,2,D4F98D094006,D4F98D093006,D4F98D092006,192.168.1.6
/c1_100_wifi_u/D4F98D094007/properties/upload,D4F98D094007,1,0,3,2,D4F98D094007,D4F98D093007,D4F98D092007,192.168.1.7
/c1_100_wifi_u/D4F98D094008/properties/upload,D4F98D094008,1,0,3,2,D4F98D094008,D4F98D093008,D4F98D092008,192.168.1.8
/c1_100_wifi_u/D4F98D094009/properties/upload,D4F98D094009,1,0,3,2,D4F98D094009,D4F98D093009,D4F98D092009,192.168.1.9
/c1_100_wifi_u/D4F98D094010/properties/upload,D4F98D094010,1,0,3,2,D4F98D094010,D4F98D093010,D4F98D092010,192.168.1.10
/c1_100_wifi_u/D4F98D094011/properties/upload,D4F98D094011,1,0,3,2,D4F98D094011,D4F98D093011,D4F98D092011,192.168.1.11
/c1_100_wifi_u/D4F98D094012/properties/upload,D4F98D094012,1,0,3,2,D4F98D094012,D4F98D093012,D4F98D092012,192.168.1.12
/c1_100_wifi_u/D4F98D094013/properties/upload,D4F98D094013,1,0,3,2,D4F98D094013,D4F98D093013,D4F98D092013,192.168.1.13
/c1_100_wifi_u/D4F98D094014/properties/upload,D4F98D094014,1,0,3,2,D4F98D094014,D4F98D093014,D4F98D092014,192.168.1.14
/c1_100_wifi_u/D4F98D094015/properties/upload,D4F98D094015,1,0,3,2,D4F98D094015,D4F98D093015,D4F98D092015,192.168.1.15
/c1_100_wifi_u/D4F98D094016/properties/upload,D4F98D094016,1,0,3,2,D4F98D094016,D4F98D093016,D4F98D092016,192.168.1.16
/c1_100_wifi_u/D4F98D094017/properties/upload,D4F98D094017,1,0,3,2,D4F98D094017,D4F98D093017,D4F98D092017,192.168.1.17
/c1_100_wifi_u/D4F98D094018/properties/upload,D4F98D094018,1,0,3,2,D4F98D094018,D4F98D093018,D4F98D092018,192.168.1.18
/c1_100_wifi_u/D4F98D094019/properties/upload,D4F98D094019,1,0,3,2,D4F98D094019,D4F98D093019,D4F98D092019,192.168.1.19
/c1_100_wifi_u/D4F98D094020/properties/upload,D4F98D094020,1,0,3,2,D4F98D094020,D4F98D093020,D4F98D092020,192.168.1.20
/c1_100_wifi_u/D4F98D094021/properties/upload,D4F98D094021,1,0,3,2,D4F98D094021,D4F98D093021,D4F98D092021,192.168.1.21
/c1_100_wifi_u/D4F98D094022/properties/upload,D4F98D094022,1,0,3,2,D4F98D094022,D4F98D093022,D4F98D092022,192.168.1.22
/c1_100_wifi_u/D4F98D094023/properties/upload,D4F98D094023,1,0,3,2,D4F98D094023,D4F98D093023,D4F98D092023,192.168.1.23
/c1_100_wifi_u/D4F98D094024/properties/upload,D4F98D094024,1,0,3,2,D4F98D094024,D4F98D093024,D4F98D092024,192.168.1.24
/c1_100_wifi_u/D4F98D094025/properties/upload,D4F98D094025,1,0,3,2,D4F98D094025,D4F98D093025,D4F98D092025,192.168.1.25
/c1_100_wifi_u/D4F98D094026/properties/upload,D4F98D094026,1,0,3,2,D4F98D094026,D4F98D093026,D4F98D092026,192.168.1.26
/c1_100_wifi_u/D4F98D094027/properties/upload,D4F98D094027,1,0,3,2,D4F98D094027,D4F98D093027,D4F98D092027,192.168.1.27
/c1_100_wifi_u/D4F98D094028/properties/upload,D4F98D094028,1,0,3,2,D4F98D094028,D4F98D093028,D4F98D092028,192.168.1.28
/c1_100_wifi_u/D4F98D094029/properties/upload,D4F98D094029,1,0,3,2,D4F98D094029,D4F98D093029,D4F98D092029,192.168.1.29
/c1_100_wifi_u/D4F98D094030/properties/upload,D4F98D094030,1,0,3,2,D4F98D094030,D4F98D093030,D4F98D092030,192.168.1.30
/c1_100_wifi_u/D4F98D094031/properties/upload,D4F98D094031,1,0,3,2,D4F98D094031,D4F98D093031,D4F98D092031,192.168.1.31
/c1_100_wifi_u/D4F98D094032/properties/upload,D4F98D094032,1,0,3,2,D4F98D094032,D4F98D093032,D4F98D092032,192.168.1.32
/c1_100_wifi_u/D4F98D094033/properties/upload,D4F98D094033,1,0,3,2,D4F98D094033,D4F98D093033,D4F98D092033,192.168.1.33
/c1_100_wifi_u/D4F98D094034/properties/upload,D4F98D094034,1,0,3,2,D4F98D094034,D4F98D093034,D4F98D092034,192.168.1.34
/c1_100_wifi_u/D4F98D094035/properties/upload,D4F98D094035,1,0,3,2,D4F98D094035,D4F98D093035,D4F98D092035,192.168.1.35
/c1_100_wifi_u/D4F98D094036/properties/upload,D4F98D094036,1,0,3,2,D4F98D094036,D4F98D093036,D4F98D092036,192.168.1.36
/c1_100_wifi_u/D4F98D094037/properties/upload,D4F98D094037,1,0,3,2,D4F98D094037,D4F98D093037,D4F98D092037,192.168.1.37
/c1_100_wifi_u/D4F98D094038/properties/upload,D4F98D094038,1,0,3,2,D4F98D094038,D4F98D093038,D4F98D092038,192.168.1.38
/c1_100_wifi_u/D4F98D094039/properties/upload,D4F98D094039,1,0,3,2,D4F98D094039,D4F98D093039,D4F98D092039,192.168.1.39
/c1_100_wifi_u/D4F98D094040/properties/upload,D4F98D094040,1,0,3,2,D4F98D094040,D4F98D093040,D4F98D092040,192.168.1.40
/c1_100_wifi_u/D4F98D094041/properties/upload,D4F98D094041,1,0,3,2,D4F98D094041,D4F98D093041,D4F98D092041,192.168.1.41
/c1_100_wifi_u/D4F98D094042/properties/upload,D4F98D094042,1,0,3,2,D4F98D094042,D4F98D093042,D4F98D092042,192.168.1.42
/c1_100_wifi_u/D4F98D094043/properties/upload,D4F98D094043,1,0,3,2,D4F98D094043,D4F98D093043,D4F98D092043,192.168.1.43
/c1_100_wifi_u/D4F98D094044/properties/upload,D4F98D094044,1,0,3,2,D4F98D094044,D4F98D093044,D4F98D092044,192.168.1.44
/c1_100_wifi_u/D4F98D094045/properties/upload,D4F98D094045,1,0,3,2,D4F98D094045,D4F98D093045,D4F98D092045,192.168.1.45
/c1_100_wifi_u/D4F98D094046/properties/upload,D4F98D094046,1,0,3,2,D4F98D094046,D4F98D093046,D4F98D092046,192.168.1.46
/c1_100_wifi_u/D4F98D094047/properties/upload,D4F98D094047,1,0,3,2,D4F98D094047,D4F98D093047,D4F98D092047,192.168.1.47
/c1_100_wifi_u/D4F98D094048/properties/upload,D4F98D094048,1,0,3,2,D4F98D094048,D4F98D093048,D4F98D092048,192.168.1.48
/c1_100_wifi_u/D4F98D094049/properties/upload,D4F98D094049,1,0,3,2,D4F98D094049,D4F98D093049,D4F98D092049,192.168.1.49
/c1_100_wifi_u/D4F98D094050/properties/upload,D4F98D094050,1,0,3,2,D4F98D094050,D4F98D093050,D4F98D092050,192.168.1.50
/c1_100_wifi_u/D4F98D094051/properties/upload,D4F98D094051,1,0,3,2,D4F98D094051,D4F98D093051,D4F98D092051,192.168.1.51
/c1_100_wifi_u/D4F98D094052/properties/upload,D4F98D094052,1,0,3,2,D4F98D094052,D4F98D093052,D4F98D092052,192.168.1.52
/c1_100_wifi_u/D4F98D094053/properties/upload,D4F98D094053,1,0,3,2,D4F98D094053,D4F98D093053,D4F98D092053,192.168.1.53
/c1_100_wifi_u/D4F98D094054/properties/upload,D4F98D094054,1,0,3,2,D4F98D094054,D4F98D093054,D4F98D092054,192.168.1.54
/c1_100_wifi_u/D4F98D094055/properties/upload,D4F98D094055,1,0,3,2,D4F98D094055,D4F98D093055,D4F98D092055,192.168.1.55
/c1_100_wifi_u/D4F98D094056/properties/upload,D4F98D094056,1,0,3,2,D4F98D094056,D4F98D093056,D4F98D092056,192.168.1.56
/c1_100_wifi_u/D4F98D094057/properties/upload,D4F98D094057,1,0,3,2,D4F98D094057,D4F98D093057,D4F98D092057,192.168.1.57
/c1_100_wifi_u/D4F98D094058/properties/upload,D4F98D094058,1,0,3,2,D4F98D094058,D4F98D093058,D4F98D092058,192.168.1.58
/c1_100_wifi_u/D4F98D094059/properties/upload,D4F98D094059,1,0,3,2,D4F98D094059,D4F98D093059,D4F98D092059,192.168.1.59
/c1_100_wifi_u/D4F98D094060/properties/upload,D4F98D094060,1,0,3,2,D4F98D094060,D4F98D093060,D4F98D092060,192.168.1.60
/c1_100_wifi_u/D4F98D094061/properties/upload,D4F98D094061,1,0,3,2,D4F98D094061,D4F98D093061,D4F98D092061,192.168.1.61
/c1_100_wifi_u/D4F98D094062/properties/upload,D4F98D094062,1,0,3,2,D4F98D094062,D4F98D093062,D4F98D092062,192.168.1.62
/c1_100_wifi_u/D4F98D094063/properties/upload,D4F98D094063,1,0,3,2,D4F98D094063,D4F98D093063,D4F98D092063,192.168.1.63
/c1_100_wifi_u/D4F98D094064/properties/upload,D4F98D094064,1,0,3,2,D4F98D094064,D4F98D093064,D4F98D092064,192.168.1.64
/c1_100_wifi_u/D4F98D094065/properties/upload,D4F98D094065,1,0,3,2,D4F98D094065,D4F98D093065,D4F98D092065,192.168.1.65
/c1_100_wifi_u/D4F98D094066/properties/upload,D4F98D094066,1,0,3,2,D4F98D094066,D4F98D093066,D4F98D092066,192.168.1.66
/c1_100_wifi_u/D4F98D094067/properties/upload,D4F98D094067,1,0,3,2,D4F98D094067,D4F98D093067,D4F98D092067,192.168.1.67
/c1_100_wifi_u/D4F98D094068/properties/upload,D4F98D094068,1,0,3,2,D4F98D094068,D4F98D093068,D4F98D092068,192.168.1.68
/c1_100_wifi_u/D4F98D094069/properties/upload,D4F98D094069,1,0,3,2,D4F98D094069,D4F98D093069,D4F98D092069,192.168.1.69
/c1_100_wifi_u/D4F98D094070/properties/upload,D4F98D094070,1,0,3,2,D4F98D094070,D4F98D093070,D4F98D092070,192.168.1.70
/c1_100_wifi_u/D4F98D094071/properties/upload,D4F98D094071,1,0,3,2,D4F98D094071,D4F98D093071,D4F98D092071,192.168.1.71
/c1_100_wifi_u/D4F98D094072/properties/upload,D4F98D094072,1,0,3,2,D4F98D094072,D4F98D093072,D4F98D092072,192.168.1.72
/c1_100_wifi_u/D4F98D094073/properties/upload,D4F98D094073,1,0,3,2,D4F98D094073,D4F98D093073,D4F98D092073,192.168.1.73
/c1_100_wifi_u/D4F98D094074/properties/upload,D4F98D094074,1,0,3,2,D4F98D094074,D4F98D093074,D4F98D092074,192.168.1.74
/c1_100_wifi_u/D4F98D094075/properties/upload,D4F98D094075,1,0,3,2,D4F98D094075,D4F98D093075,D4F98D092075,192.168.1.75
/c1_100_wifi_u/D4F98D094076/properties/upload,D4F98D094076,1,0,3,2,D4F98D094076,D4F98D093076,D4F98D092076,192.168.1.76
/c1_100_wifi_u/D4F98D094077/properties/upload,D4F98D094077,1,0,3,2,D4F98D094077,D4F98D093077,D4F98D092077,192.168.1.77
/c1_100_wifi_u/D4F98D094078/properties/upload,D4F98D094078,1,0,3,2,D4F98D094078,D4F98D093078,D4F98D092078,192.168.1.78
/c1_100_wifi_u/D4F98D094079/properties/upload,D4F98D094079,1,0,3,2,D4F98D094079,D4F98D093079,D4F98D092079,192.168.1.79
/c1_100_wifi_u/D4F98D094080/properties/upload,D4F98D094080,1,0,3,2,D4F98D094080,D4F98D093080,D4F98D092080,192.168.1.80
/c1_100_wifi_u/D4F98D094081/properties/upload,D4F98D094081,1,0,3,2,D4F98D094081,D4F98D093081,D4F98D092081,192.168.1.81
/c1_100_wifi_u/D4F98D094082/properties/upload,D4F98D094082,1,0,3,2,D4F98D094082,D4F98D093082,D4F98D092082,192.168.1.82
/c1_100_wifi_u/D4F98D094083/properties/upload,D4F98D094083,1,0,3,2,D4F98D094083,D4F98D093083,D4F98D092083,192.168.1.83
/c1_100_wifi_u/D4F98D094084/properties/upload,D4F98D094084,1,0,3,2,D4F98D094084,D4F98D093084,D4F98D092084,192.168.1.84
/c1_100_wifi_u/D4F98D094085/properties/upload,D4F98D094085,1,0,3,2,D4F98D094085,D4F98D093085,D4F98D092085,192.168.1.85
/c1_100_wifi_u/D4F98D094086/properties/upload,D4F98D094086,1,0,3,2,D4F98D094086,D4F98D093086,D4F98D092086,192.168.1.86
/c1_100_wifi_u/D4F98D094087/properties/upload,D4F98D094087,1,0,3,2,D4F98D094087,D4F98D093087,D4F98D092087,192.168.1.87
/c1_100_wifi_u/D4F98D094088/properties/upload,D4F98D094088,1,0,3,2,D4F98D094088,D4F98D093088,D4F98D092088,192.168.1.88
/c1_100_wifi_u/D4F98D094089/properties/upload,D4F98D094089,1,0,3,2,D4F98D094089,D4F98D093089,D4F98D092089,192.168.1.89
/c1_100_wifi_u/D4F98D094090/properties/upload,D4F98D094090,1,0,3,2,D4F98D094090,D4F98D093090,D4F98D092090,192.168.1.90
/c1_100_wifi_u/D4F98D094091/properties/upload,D4F98D094091,1,0,3,2,D4F98D094091,D4F98D093091,D4F98D092091,192.168.1.91
/c1_100_wifi_u/D4F98D094092/properties/upload,D4F98D094092,1,0,3,2,D4F98D094092,D4F98D093092,D4F98D092092,192.168.1.92
/c1_100_wifi_u/D4F98D094093/properties/upload,D4F98D094093,1,0,3,2,D4F98D094093,D4F98D093093,D4F98D092093,192.168.1.93
/c1_100_wifi_u/D4F98D094094/properties/upload,D4F98D094094,1,0,3,2,D4F98D094094,D4F98D093094,D4F98D092094,192.168.1.94
/c1_100_wifi_u/D4F98D094095/properties/upload,D4F98D094095,1,0,3,2,D4F98D094095,D4F98D093095,D4F98D092095,192.168.1.95
/c1_100_wifi_u/D4F98D094096/properties/upload,D4F98D094096,1,0,3,2,D4F98D094096,D4F98D093096,D4F98D092096,192.168.1.96
/c1_100_wifi_u/D4F98D094097/properties/upload,D4F98D094097,1,0,3,2,D4F98D094097,D4F98D093097,D4F98D092097,192.168.1.97
/c1_100_wifi_u/D4F98D094098/properties/upload,D4F98D094098,1,0,3,2,D4F98D094098,D4F98D093098,D4F98D092098,192.168.1.98
/c1_100_wifi_u/D4F98D094099/properties/upload,D4F98D094099,1,0,3,2,D4F98D094099,D4F98D093099,D4F98D092099,192.168.1.99
/c1_100_wifi_u/D4F98D094100/properties/upload,D4F98D094100,1,0,3,2,D4F98D094100,D4F98D093100,D4F98D092100,192.168.1.101
/c1_100_wifi_u/D4F98D094101/properties/upload,D4F98D094101,1,0,3,2,D4F98D094101,D4F98D093101,D4F98D092101,192.168.1.102
/c1_100_wifi_u/D4F98D094102/properties/upload,D4F98D094102,1,0,3,2,D4F98D094102,D4F98D093102,D4F98D092102,192.168.1.103
/c1_100_wifi_u/D4F98D094103/properties/upload,D4F98D094103,1,0,3,2,D4F98D094103,D4F98D093103,D4F98D092103,192.168.1.104
/c1_100_wifi_u/D4F98D094104/properties/upload,D4F98D094104,1,0,3,2,D4F98D094104,D4F98D093104,D4F98D092104,192.168.1.105
/c1_100_wifi_u/D4F98D094105/properties/upload,D4F98D094105,1,0,3,2,D4F98D094105,D4F98D093105,D4F98D092105,192.168.1.106
/c1_100_wifi_u/D4F98D094106/properties/upload,D4F98D094106,1,0,3,2,D4F98D094106,D4F98D093106,D4F98D092106,192.168.1.107
/c1_100_wifi_u/D4F98D094107/properties/upload,D4F98D094107,1,0,3,2,D4F98D094107,D4F98D093107,D4F98D092107,192.168.1.108
/c1_100_wifi_u/D4F98D094108/properties/upload,D4F98D094108,1,0,3,2,D4F98D094108,D4F98D093108,D4F98D092108,192.168.1.109
/c1_100_wifi_u/D4F98D094109/properties/upload,D4F98D094109,1,0,3,2,D4F98D094109,D4F98D093109,D4F98D092109,192.168.1.110
/c1_100_wifi_u/D4F98D094110/properties/upload,D4F98D094110,1,0,3,2,D4F98D094110,D4F98D093110,D4F98D092110,192.168.1.111
/c1_100_wifi_u/D4F98D094111/properties/upload,D4F98D094111,1,0,3,2,D4F98D094111,D4F98D093111,D4F98D092111,192.168.1.112
/c1_100_wifi_u/D4F98D094112/properties/upload,D4F98D094112,1,0,3,2,D4F98D094112,D4F98D093112,D4F98D092112,192.168.1.113
/c1_100_wifi_u/D4F98D094113/properties/upload,D4F98D094113,1,0,3,2,D4F98D094113,D4F98D093113,D4F98D092113,192.168.1.114
/c1_100_wifi_u/D4F98D094114/properties/upload,D4F98D094114,1,0,3,2,D4F98D094114,D4F98D093114,D4F98D092114,192.168.1.115
/c1_100_wifi_u/D4F98D094115/properties/upload,D4F98D094115,1,0,3,2,D4F98D094115,D4F98D093115,D4F98D092115,192.168.1.116
/c1_100_wifi_u/D4F98D094116/properties/upload,D4F98D094116,1,0,3,2,D4F98D094116,D4F98D093116,D4F98D092116,192.168.1.117
/c1_100_wifi_u/D4F98D094117/properties/upload,D4F98D094117,1,0,3,2,D4F98D094117,D4F98D093117,D4F98D092117,192.168.1.118
/c1_100_wifi_u/D4F98D094118/properties/upload,D4F98D094118,1,0,3,2,D4F98D094118,D4F98D093118,D4F98D092118,192.168.1.119
/c1_100_wifi_u/D4F98D094119/properties/upload,D4F98D094119,1,0,3,2,D4F98D094119,D4F98D093119,D4F98D092119,192.168.1.120
/c1_100_wifi_u/D4F98D094120/properties/upload,D4F98D094120,1,0,3,2,D4F98D094120,D4F98D093120,D4F98D092120,192.168.1.121
/c1_100_wifi_u/D4F98D094121/properties/upload,D4F98D094121,1,0,3,2,D4F98D094121,D4F98D093121,D4F98D092121,192.168.1.122
/c1_100_wifi_u/D4F98D094122/properties/upload,D4F98D094122,1,0,3,2,D4F98D094122,D4F98D093122,D4F98D092122,192.168.1.123
/c1_100_wifi_u/D4F98D094123/properties/upload,D4F98D094123,1,0,3,2,D4F98D094123,D4F98D093123,D4F98D092123,192.168.1.124
/c1_100_wifi_u/D4F98D094124/properties/upload,D4F98D094124,1,0,3,2,D4F98D094124,D4F98D093124,D4F98D092124,192.168.1.125
/c1_100_wifi_u/D4F98D094125/properties/upload,D4F98D094125,1,0,3,2,D4F98D094125,D4F98D093125,D4F98D092125,192.168.1.126
/c1_100_wifi_u/D4F98D094126/properties/upload,D4F98D094126,1,0,3,2,D4F98D094126,D4F98D093126,D4F98D092126,192.168.1.127
/c1_100_wifi_u/D4F98D094127/properties/upload,D4F98D094127,1,0,3,2,D4F98D094127,D4F98D093127,D4F98D092127,192.168.1.128
/c1_100_wifi_u/D4F98D094128/properties/upload,D4F98D094128,1,0,3,2,D4F98D094128,D4F98D093128,D4F98D092128,192.168.1.129
/c1_100_wifi_u/D4F98D094129/properties/upload,D4F98D094129,1,0,3,2,D4F98D094129,D4F98D093129,D4F98D092129,192.168.1.130
/c1_100_wifi_u/D4F98D094130/properties/upload,D4F98D094130,1,0,3,2,D4F98D094130,D4F98D093130,D4F98D092130,192.168.1.131
/c1_100_wifi_u/D4F98D094131/properties/upload,D4F98D094131,1,0,3,2,D4F98D094131,D4F98D093131,D4F98D092131,192.168.1.132
/c1_100_wifi_u/D4F98D094132/properties/upload,D4F98D094132,1,0,3,2,D4F98D094132,D4F98D093132,D4F98D092132,192.168.1.133
/c1_100_wifi_u/D4F98D094133/properties/upload,D4F98D094133,1,0,3,2,D4F98D094133,D4F98D093133,D4F98D092133,192.168.1.134
/c1_100_wifi_u/D4F98D094134/properties/upload,D4F98D094134,1,0,3,2,D4F98D094134,D4F98D093134,D4F98D092134,192.168.1.135
/c1_100_wifi_u/D4F98D094135/properties/upload,D4F98D094135,1,0,3,2,D4F98D094135,D4F98D093135,D4F98D092135,192.168.1.136
/c1_100_wifi_u/D4F98D094136/properties/upload,D4F98D094136,1,0,3,2,D4F98D094136,D4F98D093136,D4F98D092136,192.168.1.137
/c1_100_wifi_u/D4F98D094137/properties/upload,D4F98D094137,1,0,3,2,D4F98D094137,D4F98D093137,D4F98D092137,192.168.1.138
/c1_100_wifi_u/D4F98D094138/properties/upload,D4F98D094138,1,0,3,2,D4F98D094138,D4F98D093138,D4F98D092138,192.168.1.139
/c1_100_wifi_u/D4F98D094139/properties/upload,D4F98D094139,1,0,3,2,D4F98D094139,D4F98D093139,D4F98D092139,192.168.1.140
/c1_100_wifi_u/D4F98D094140/properties/upload,D4F98D094140,1,0,3,2,D4F98D094140,D4F98D093140,D4F98D092140,192.168.1.141
/c1_100_wifi_u/D4F98D094141/properties/upload,D4F98D094141,1,0,3,2,D4F98D094141,D4F98D093141,D4F98D092141,192.168.1.142
/c1_100_wifi_u/D4F98D094142/properties/upload,D4F98D094142,1,0,3,2,D4F98D094142,D4F98D093142,D4F98D092142,192.168.1.143
/c1_100_wifi_u/D4F98D094143/properties/upload,D4F98D094143,1,0,3,2,D4F98D094143,D4F98D093143,D4F98D092143,192.168.1.144
/c1_100_wifi_u/D4F98D094144/properties/upload,D4F98D094144,1,0,3,2,D4F98D094144,D4F98D093144,D4F98D092144,192.168.1.145
/c1_100_wifi_u/D4F98D094145/properties/upload,D4F98D094145,1,0,3,2,D4F98D094145,D4F98D093145,D4F98D092145,192.168.1.146
/c1_100_wifi_u/D4F98D094146/properties/upload,D4F98D094146,1,0,3,2,D4F98D094146,D4F98D093146,D4F98D092146,192.168.1.147
/c1_100_wifi_u/D4F98D094147/properties/upload,D4F98D094147,1,0,3,2,D4F98D094147,D4F98D093147,D4F98D092147,192.168.1.148
/c1_100_wifi_u/D4F98D094148/properties/upload,D4F98D094148,1,0,3,2,D4F98D094148,D4F98D093148,D4F98D092148,192.168.1.149
/c1_100_wifi_u/D4F98D094149/properties/upload,D4F98D094149,1,0,3,2,D4F98D094149,D4F98D093149,D4F98D092149,192.168.1.150
/c1_100_wifi_u/D4F98D094150/properties/upload,D4F98D094150,1,0,3,2,D4F98D094150,D4F98D093150,D4F98D092150,192.168.1.151
/c1_100_wifi_u/D4F98D094151/properties/upload,D4F98D094151,1,0,3,2,D4F98D094151,D4F98D093151,D4F98D092151,192.168.1.152
/c1_100_wifi_u/D4F98D094152/properties/upload,D4F98D094152,1,0,3,2,D4F98D094152,D4F98D093152,D4F98D092152,192.168.1.153
/c1_100_wifi_u/D4F98D094153/properties/upload,D4F98D094153,1,0,3,2,D4F98D094153,D4F98D093153,D4F98D092153,192.168.1.154
/c1_100_wifi_u/D4F98D094154/properties/upload,D4F98D094154,1,0,3,2,D4F98D094154,D4F98D093154,D4F98D092154,192.168.1.155
/c1_100_wifi_u/D4F98D094155/properties/upload,D4F98D094155,1,0,3,2,D4F98D094155,D4F98D093155,D4F98D092155,192.168.1.156
/c1_100_wifi_u/D4F98D094156/properties/upload,D4F98D094156,1,0,3,2,D4F98D094156,D4F98D093156,D4F98D092156,192.168.1.157
/c1_100_wifi_u/D4F98D094157/properties/upload,D4F98D094157,1,0,3,2,D4F98D094157,D4F98D093157,D4F98D092157,192.168.1.158
/c1_100_wifi_u/D4F98D094158/properties/upload,D4F98D094158,1,0,3,2,D4F98D094158,D4F98D093158,D4F98D092158,192.168.1.159
/c1_100_wifi_u/D4F98D094159/properties/upload,D4F98D094159,1,0,3,2,D4F98D094159,D4F98D093159,D4F98D092159,192.168.1.160
/c1_100_wifi_u/D4F98D094160/properties/upload,D4F98D094160,1,0,3,2,D4F98D094160,D4F98D093160,D4F98D092160,192.168.1.161
/c1_100_wifi_u/D4F98D094161/properties/upload,D4F98D094161,1,0,3,2,D4F98D094161,D4F98D093161,D4F98D092161,192.168.1.162
/c1_100_wifi_u/D4F98D094162/properties/upload,D4F98D094162,1,0,3,2,D4F98D094162,D4F98D093162,D4F98D092162,192.168.1.163
/c1_100_wifi_u/D4F98D094163/properties/upload,D4F98D094163,1,0,3,2,D4F98D094163,D4F98D093163,D4F98D092163,192.168.1.164
/c1_100_wifi_u/D4F98D094164/properties/upload,D4F98D094164,1,0,3,2,D4F98D094164,D4F98D093164,D4F98D092164,192.168.1.165
/c1_100_wifi_u/D4F98D094165/properties/upload,D4F98D094165,1,0,3,2,D4F98D094165,D4F98D093165,D4F98D092165,192.168.1.166
/c1_100_wifi_u/D4F98D094166/properties/upload,D4F98D094166,1,0,3,2,D4F98D094166,D4F98D093166,D4F98D092166,192.168.1.167
/c1_100_wifi_u/D4F98D094167/properties/upload,D4F98D094167,1,0,3,2,D4F98D094167,D4F98D093167,D4F98D092167,192.168.1.168
/c1_100_wifi_u/D4F98D094168/properties/upload,D4F98D094168,1,0,3,2,D4F98D094168,D4F98D093168,D4F98D092168,192.168.1.169
/c1_100_wifi_u/D4F98D094169/properties/upload,D4F98D094169,1,0,3,2,D4F98D094169,D4F98D093169,D4F98D092169,192.168.1.170
/c1_100_wifi_u/D4F98D094170/properties/upload,D4F98D094170,1,0,3,2,D4F98D094170,D4F98D093170,D4F98D092170,192.168.1.171
/c1_100_wifi_u/D4F98D094171/properties/upload,D4F98D094171,1,0,3,2,D4F98D094171,D4F98D093171,D4F98D092171,192.168.1.172
/c1_100_wifi_u/D4F98D094172/properties/upload,D4F98D094172,1,0,3,2,D4F98D094172,D4F98D093172,D4F98D092172,192.168.1.173
/c1_100_wifi_u/D4F98D094173/properties/upload,D4F98D094173,1,0,3,2,D4F98D094173,D4F98D093173,D4F98D092173,192.168.1.174
/c1_100_wifi_u/D4F98D094174/properties/upload,D4F98D094174,1,0,3,2,D4F98D094174,D4F98D093174,D4F98D092174,192.168.1.175
/c1_100_wifi_u/D4F98D094175/properties/upload,D4F98D094175,1,0,3,2,D4F98D094175,D4F98D093175,D4F98D092175,192.168.1.176
/c1_100_wifi_u/D4F98D094176/properties/upload,D4F98D094176,1,0,3,2,D4F98D094176,D4F98D093176,D4F98D092176,192.168.1.177
/c1_100_wifi_u/D4F98D094177/properties/upload,D4F98D094177,1,0,3,2,D4F98D094177,D4F98D093177,D4F98D092177,192.168.1.178
/c1_100_wifi_u/D4F98D094178/properties/upload,D4F98D094178,1,0,3,2,D4F98D094178,D4F98D093178,D4F98D092178,192.168.1.179
/c1_100_wifi_u/D4F98D094179/properties/upload,D4F98D094179,1,0,3,2,D4F98D094179,D4F98D093179,D4F98D092179,192.168.1.180
/c1_100_wifi_u/D4F98D094180/properties/upload,D4F98D094180,1,0,3,2,D4F98D094180,D4F98D093180,D4F98D092180,192.168.1.181
/c1_100_wifi_u/D4F98D094181/properties/upload,D4F98D094181,1,0,3,2,D4F98D094181,D4F98D093181,D4F98D092181,192.168.1.182
/c1_100_wifi_u/D4F98D094182/properties/upload,D4F98D094182,1,0,3,2,D4F98D094182,D4F98D093182,D4F98D092182,192.168.1.183
/c1_100_wifi_u/D4F98D094183/properties/upload,D4F98D094183,1,0,3,2,D4F98D094183,D4F98D093183,D4F98D092183,192.168.1.184
/c1_100_wifi_u/D4F98D094184/properties/upload,D4F98D094184,1,0,3,2,D4F98D094184,D4F98D093184,D4F98D092184,192.168.1.185
/c1_100_wifi_u/D4F98D094185/properties/upload,D4F98D094185,1,0,3,2,D4F98D094185,D4F98D093185,D4F98D092185,192.168.1.186
/c1_100_wifi_u/D4F98D094186/properties/upload,D4F98D094186,1,0,3,2,D4F98D094186,D4F98D093186,D4F98D092186,192.168.1.187
/c1_100_wifi_u/D4F98D094187/properties/upload,D4F98D094187,1,0,3,2,D4F98D094187,D4F98D093187,D4F98D092187,192.168.1.188
/c1_100_wifi_u/D4F98D094188/properties/upload,D4F98D094188,1,0,3,2,D4F98D094188,D4F98D093188,D4F98D092188,192.168.1.189
/c1_100_wifi_u/D4F98D094189/properties/upload,D4F98D094189,1,0,3,2,D4F98D094189,D4F98D093189,D4F98D092189,192.168.1.190
/c1_100_wifi_u/D4F98D094190/properties/upload,D4F98D094190,1,0,3,2,D4F98D094190,D4F98D093190,D4F98D092190,192.168.1.191
/c1_100_wifi_u/D4F98D094191/properties/upload,D4F98D094191,1,0,3,2,D4F98D094191,D4F98D093191,D4F98D092191,192.168.1.192
/c1_100_wifi_u/D4F98D094192/properties/upload,D4F98D094192,1,0,3,2,D4F98D094192,D4F98D093192,D4F98D092192,192.168.1.193
/c1_100_wifi_u/D4F98D094193/properties/upload,D4F98D094193,1,0,3,2,D4F98D094193,D4F98D093193,D4F98D092193,192.168.1.194
/c1_100_wifi_u/D4F98D094194/properties/upload,D4F98D094194,1,0,3,2,D4F98D094194,D4F98D093194,D4F98D092194,192.168.1.195
/c1_100_wifi_u/D4F98D094195/properties/upload,D4F98D094195,1,0,3,2,D4F98D094195,D4F98D093195,D4F98D092195,192.168.1.196
/c1_100_wifi_u/D4F98D094196/properties/upload,D4F98D094196,1,0,3,2,D4F98D094196,D4F98D093196,D4F98D092196,192.168.1.197
/c1_100_wifi_u/D4F98D094197/properties/upload,D4F98D094197,1,0,3,2,D4F98D094197,D4F98D093197,D4F98D092197,192.168.1.198
/c1_100_wifi_u/D4F98D094198/properties/upload,D4F98D094198,1,0,3,2,D4F98D094198,D4F98D093198,D4F98D092198,192.168.1.199
/c1_100_wifi_u/D4F98D094199/properties/upload,D4F98D094199,1,0,3,2,D4F98D094199,D4F98D093199,D4F98D092199,192.168.1.200
/c1_100_wifi_u/D4F98D094200/properties/upload,D4F98D094200,1,0,3,2,D4F98D094200,D4F98D093200,D4F98D092200,192.168.1.201
/c1_100_wifi_u/D4F98D094201/properties/upload,D4F98D094201,1,0,3,2,D4F98D094201,D4F98D093201,D4F98D092201,192.168.1.202
/c1_100_wifi_u/D4F98D094202/properties/upload,D4F98D094202,1,0,3,2,D4F98D094202,D4F98D093202,D4F98D092202,192.168.1.203
/c1_100_wifi_u/D4F98D094203/properties/upload,D4F98D094203,1,0,3,2,D4F98D094203,D4F98D093203,D4F98D092203,192.168.1.204
/c1_100_wifi_u/D4F98D094204/properties/upload,D4F98D094204,1,0,3,2,D4F98D094204,D4F98D093204,D4F98D092204,192.168.1.205
/c1_100_wifi_u/D4F98D094205/properties/upload,D4F98D094205,1,0,3,2,D4F98D094205,D4F98D093205,D4F98D092205,192.168.1.206
/c1_100_wifi_u/D4F98D094206/properties/upload,D4F98D094206,1,0,3,2,D4F98D094206,D4F98D093206,D4F98D092206,192.168.1.207
/c1_100_wifi_u/D4F98D094207/properties/upload,D4F98D094207,1,0,3,2,D4F98D094207,D4F98D093207,D4F98D092207,192.168.1.208
/c1_100_wifi_u/D4F98D094208/properties/upload,D4F98D094208,1,0,3,2,D4F98D094208,D4F98D093208,D4F98D092208,192.168.1.209
/c1_100_wifi_u/D4F98D094209/properties/upload,D4F98D094209,1,0,3,2,D4F98D094209,D4F98D093209,D4F98D092209,192.168.1.210
/c1_100_wifi_u/D4F98D094210/properties/upload,D4F98D094210,1,0,3,2,D4F98D094210,D4F98D093210,D4F98D092210,192.168.1.211
/c1_100_wifi_u/D4F98D094211/properties/upload,D4F98D094211,1,0,3,2,D4F98D094211,D4F98D093211,D4F98D092211,192.168.1.212
/c1_100_wifi_u/D4F98D094212/properties/upload,D4F98D094212,1,0,3,2,D4F98D094212,D4F98D093212,D4F98D092212,192.168.1.213
/c1_100_wifi_u/D4F98D094213/properties/upload,D4F98D094213,1,0,3,2,D4F98D094213,D4F98D093213,D4F98D092213,192.168.1.214
/c1_100_wifi_u/D4F98D094214/properties/upload,D4F98D094214,1,0,3,2,D4F98D094214,D4F98D093214,D4F98D092214,192.168.1.215
/c1_100_wifi_u/D4F98D094215/properties/upload,D4F98D094215,1,0,3,2,D4F98D094215,D4F98D093215,D4F98D092215,192.168.1.216
/c1_100_wifi_u/D4F98D094216/properties/upload,D4F98D094216,1,0,3,2,D4F98D094216,D4F98D093216,D4F98D092216,192.168.1.217
/c1_100_wifi_u/D4F98D094217/properties/upload,D4F98D094217,1,0,3,2,D4F98D094217,D4F98D093217,D4F98D092217,192.168.1.218
/c1_100_wifi_u/D4F98D094218/properties/upload,D4F98D094218,1,0,3,2,D4F98D094218,D4F98D093218,D4F98D092218,192.168.1.219
/c1_100_wifi_u/D4F98D094219/properties/upload,D4F98D094219,1,0,3,2,D4F98D094219,D4F98D093219,D4F98D092219,192.168.1.220
/c1_100_wifi_u/D4F98D094220/properties/upload,D4F98D094220,1,0,3,2,D4F98D094220,D4F98D093220,D4F98D092220,192.168.1.221
/c1_100_wifi_u/D4F98D094221/properties/upload,D4F98D094221,1,0,3,2,D4F98D094221,D4F98D093221,D4F98D092221,192.168.1.222
/c1_100_wifi_u/D4F98D094222/properties/upload,D4F98D094222,1,0,3,2,D4F98D094222,D4F98D093222,D4F98D092222,192.168.1.223
/c1_100_wifi_u/D4F98D094223/properties/upload,D4F98D094223,1,0,3,2,D4F98D094223,D4F98D093223,D4F98D092223,192.168.1.224
/c1_100_wifi_u/D4F98D094224/properties/upload,D4F98D094224,1,0,3,2,D4F98D094224,D4F98D093224,D4F98D092224,192.168.1.225
/c1_100_wifi_u/D4F98D094225/properties/upload,D4F98D094225,1,0,3,2,D4F98D094225,D4F98D093225,D4F98D092225,192.168.1.226
/c1_100_wifi_u/D4F98D094226/properties/upload,D4F98D094226,1,0,3,2,D4F98D094226,D4F98D093226,D4F98D092226,192.168.1.227
/c1_100_wifi_u/D4F98D094227/properties/upload,D4F98D094227,1,0,3,2,D4F98D094227,D4F98D093227,D4F98D092227,192.168.1.228
/c1_100_wifi_u/D4F98D094228/properties/upload,D4F98D094228,1,0,3,2,D4F98D094228,D4F98D093228,D4F98D092228,192.168.1.229
/c1_100_wifi_u/D4F98D094229/properties/upload,D4F98D094229,1,0,3,2,D4F98D094229,D4F98D093229,D4F98D092229,192.168.1.230
/c1_100_wifi_u/D4F98D094230/properties/upload,D4F98D094230,1,0,3,2,D4F98D094230,D4F98D093230,D4F98D092230,192.168.1.231
/c1_100_wifi_u/D4F98D094231/properties/upload,D4F98D094231,1,0,3,2,D4F98D094231,D4F98D093231,D4F98D092231,192.168.1.232
/c1_100_wifi_u/D4F98D094232/properties/upload,D4F98D094232,1,0,3,2,D4F98D094232,D4F98D093232,D4F98D092232,192.168.1.233
/c1_100_wifi_u/D4F98D094233/properties/upload,D4F98D094233,1,0,3,2,D4F98D094233,D4F98D093233,D4F98D092233,192.168.1.234
/c1_100_wifi_u/D4F98D094234/properties/upload,D4F98D094234,1,0,3,2,D4F98D094234,D4F98D093234,D4F98D092234,192.168.1.235
/c1_100_wifi_u/D4F98D094235/properties/upload,D4F98D094235,1,0,3,2,D4F98D094235,D4F98D093235,D4F98D092235,192.168.1.236
/c1_100_wifi_u/D4F98D094236/properties/upload,D4F98D094236,1,0,3,2,D4F98D094236,D4F98D093236,D4F98D092236,192.168.1.237
/c1_100_wifi_u/D4F98D094237/properties/upload,D4F98D094237,1,0,3,2,D4F98D094237,D4F98D093237,D4F98D092237,192.168.1.238
/c1_100_wifi_u/D4F98D094238/properties/upload,D4F98D094238,1,0,3,2,D4F98D094238,D4F98D093238,D4F98D092238,192.168.1.239
/c1_100_wifi_u/D4F98D094239/properties/upload,D4F98D094239,1,0,3,2,D4F98D094239,D4F98D093239,D4F98D092239,192.168.1.240
/c1_100_wifi_u/D4F98D094240/properties/upload,D4F98D094240,1,0,3,2,D4F98D094240,D4F98D093240,D4F98D092240,192.168.1.241
/c1_100_wifi_u/D4F98D094241/properties/upload,D4F98D094241,1,0,3,2,D4F98D094241,D4F98D093241,D4F98D092241,192.168.1.242
/c1_100_wifi_u/D4F98D094242/properties/upload,D4F98D094242,1,0,3,2,D4F98D094242,D4F98D093242,D4F98D092242,192.168.1.243
/c1_100_wifi_u/D4F98D094243/properties/upload,D4F98D094243,1,0,3,2,D4F98D094243,D4F98D093243,D4F98D092243,192.168.1.244
/c1_100_wifi_u/D4F98D094244/properties/upload,D4F98D094244,1,0,3,2,D4F98D094244,D4F98D093244,D4F98D092244,192.168.1.245
/c1_100_wifi_u/D4F98D094245/properties/upload,D4F98D094245,1,0,3,2,D4F98D094245,D4F98D093245,D4F98D092245,192.168.1.246
/c1_100_wifi_u/D4F98D094246/properties/upload,D4F98D094246,1,0,3,2,D4F98D094246,D4F98D093246,D4F98D092246,192.168.1.247
/c1_100_wifi_u/D4F98D094247/properties/upload,D4F98D094247,1,0,3,2,D4F98D094247,D4F98D093247,D4F98D092247,192.168.1.248
/c1_100_wifi_u/D4F98D094248/properties/upload,D4F98D094248,1,0,3,2,D4F98D094248,D4F98D093248,D4F98D092248,192.168.1.249
/c1_100_wifi_u/D4F98D094249/properties/upload,D4F98D094249,1,0,3,2,D4F98D094249,D4F98D093249,D4F98D092249,192.168.1.250
/c1_100_wifi_u/D4F98D094250/properties/upload,D4F98D094250,1,0,3,2,D4F98D094250,D4F98D093250,D4F98D092250,192.168.1.251
/c1_100_wifi_u/D4F98D094251/properties/upload,D4F98D094251,1,0,3,2,D4F98D094251,D4F98D093251,D4F98D092251,192.168.1.252
/c1_100_wifi_u/D4F98D094252/properties/upload,D4F98D094252,1,0,3,2,D4F98D094252,D4F98D093252,D4F98D092252,192.168.1.253
/c1_100_wifi_u/D4F98D094253/properties/upload,D4F98D094253,1,0,3,2,D4F98D094253,D4F98D093253,D4F98D092253,192.168.1.254
/c1_100_wifi_u/D4F98D094254/properties/upload,D4F98D094254,1,0,3,2,D4F98D094254,D4F98D093254,D4F98D092254,192.168.1.255
/c1_100_wifi_u/D4F98D094255/properties/upload,D4F98D094255,1,0,3,2,D4F98D094255,D4F98D093255,D4F98D092255,192.168.2.001
/c1_100_wifi_u/D4F98D094256/properties/upload,D4F98D094256,1,0,3,2,D4F98D094256,D4F98D093256,D4F98D092256,192.168.2.002
/c1_100_wifi_u/D4F98D094257/properties/upload,D4F98D094257,1,0,3,2,D4F98D094257,D4F98D093257,D4F98D092257,192.168.2.003
/c1_100_wifi_u/D4F98D094258/properties/upload,D4F98D094258,1,0,3,2,D4F98D094258,D4F98D093258,D4F98D092258,192.168.2.004
/c1_100_wifi_u/D4F98D094259/properties/upload,D4F98D094259,1,0,3,2,D4F98D094259,D4F98D093259,D4F98D092259,192.168.2.005
/c1_100_wifi_u/D4F98D094260/properties/upload,D4F98D094260,1,0,3,2,D4F98D094260,D4F98D093260,D4F98D092260,192.168.2.006
/c1_100_wifi_u/D4F98D094261/properties/upload,D4F98D094261,1,0,3,2,D4F98D094261,D4F98D093261,D4F98D092261,192.168.2.007
/c1_100_wifi_u/D4F98D094262/properties/upload,D4F98D094262,1,0,3,2,D4F98D094262,D4F98D093262,D4F98D092262,192.168.2.008
/c1_100_wifi_u/D4F98D094263/properties/upload,D4F98D094263,1,0,3,2,D4F98D094263,D4F98D093263,D4F98D092263,192.168.2.009
/c1_100_wifi_u/D4F98D094264/properties/upload,D4F98D094264,1,0,3,2,D4F98D094264,D4F98D093264,D4F98D092264,192.168.2.010
/c1_100_wifi_u/D4F98D094265/properties/upload,D4F98D094265,1,0,3,2,D4F98D094265,D4F98D093265,D4F98D092265,192.168.2.011
/c1_100_wifi_u/D4F98D094266/properties/upload,D4F98D094266,1,0,3,2,D4F98D094266,D4F98D093266,D4F98D092266,192.168.2.012
/c1_100_wifi_u/D4F98D094267/properties/upload,D4F98D094267,1,0,3,2,D4F98D094267,D4F98D093267,D4F98D092267,192.168.2.013
/c1_100_wifi_u/D4F98D094268/properties/upload,D4F98D094268,1,0,3,2,D4F98D094268,D4F98D093268,D4F98D092268,192.168.2.014
/c1_100_wifi_u/D4F98D094269/properties/upload,D4F98D094269,1,0,3,2,D4F98D094269,D4F98D093269,D4F98D092269,192.168.2.015
/c1_100_wifi_u/D4F98D094270/properties/upload,D4F98D094270,1,0,3,2,D4F98D094270,D4F98D093270,D4F98D092270,192.168.2.016
/c1_100_wifi_u/D4F98D094271/properties/upload,D4F98D094271,1,0,3,2,D4F98D094271,D4F98D093271,D4F98D092271,192.168.2.017
/c1_100_wifi_u/D4F98D094272/properties/upload,D4F98D094272,1,0,3,2,D4F98D094272,D4F98D093272,D4F98D092272,192.168.2.018
/c1_100_wifi_u/D4F98D094273/properties/upload,D4F98D094273,1,0,3,2,D4F98D094273,D4F98D093273,D4F98D092273,192.168.2.019
/c1_100_wifi_u/D4F98D094274/properties/upload,D4F98D094274,1,0,3,2,D4F98D094274,D4F98D093274,D4F98D092274,192.168.2.020
/c1_100_wifi_u/D4F98D094275/properties/upload,D4F98D094275,1,0,3,2,D4F98D094275,D4F98D093275,D4F98D092275,192.168.2.021
/c1_100_wifi_u/D4F98D094276/properties/upload,D4F98D094276,1,0,3,2,D4F98D094276,D4F98D093276,D4F98D092276,192.168.2.022
/c1_100_wifi_u/D4F98D094277/properties/upload,D4F98D094277,1,0,3,2,D4F98D094277,D4F98D093277,D4F98D092277,192.168.2.023
/c1_100_wifi_u/D4F98D094278/properties/upload,D4F98D094278,1,0,3,2,D4F98D094278,D4F98D093278,D4F98D092278,192.168.2.024
/c1_100_wifi_u/D4F98D094279/properties/upload,D4F98D094279,1,0,3,2,D4F98D094279,D4F98D093279,D4F98D092279,192.168.2.025
/c1_100_wifi_u/D4F98D094280/properties/upload,D4F98D094280,1,0,3,2,D4F98D094280,D4F98D093280,D4F98D092280,192.168.2.026
/c1_100_wifi_u/D4F98D094281/properties/upload,D4F98D094281,1,0,3,2,D4F98D094281,D4F98D093281,D4F98D092281,192.168.2.027
/c1_100_wifi_u/D4F98D094282/properties/upload,D4F98D094282,1,0,3,2,D4F98D094282,D4F98D093282,D4F98D092282,192.168.2.028
/c1_100_wifi_u/D4F98D094283/properties/upload,D4F98D094283,1,0,3,2,D4F98D094283,D4F98D093283,D4F98D092283,192.168.2.029
/c1_100_wifi_u/D4F98D094284/properties/upload,D4F98D094284,1,0,3,2,D4F98D094284,D4F98D093284,D4F98D092284,192.168.2.030
/c1_100_wifi_u/D4F98D094285/properties/upload,D4F98D094285,1,0,3,2,D4F98D094285,D4F98D093285,D4F98D092285,192.168.2.031
/c1_100_wifi_u/D4F98D094286/properties/upload,D4F98D094286,1,0,3,2,D4F98D094286,D4F98D093286,D4F98D092286,192.168.2.032
/c1_100_wifi_u/D4F98D094287/properties/upload,D4F98D094287,1,0,3,2,D4F98D094287,D4F98D093287,D4F98D092287,192.168.2.033
/c1_100_wifi_u/D4F98D094288/properties/upload,D4F98D094288,1,0,3,2,D4F98D094288,D4F98D093288,D4F98D092288,192.168.2.034
/c1_100_wifi_u/D4F98D094289/properties/upload,D4F98D094289,1,0,3,2,D4F98D094289,D4F98D093289,D4F98D092289,192.168.2.035
/c1_100_wifi_u/D4F98D094290/properties/upload,D4F98D094290,1,0,3,2,D4F98D094290,D4F98D093290,D4F98D092290,192.168.2.036
/c1_100_wifi_u/D4F98D094291/properties/upload,D4F98D094291,1,0,3,2,D4F98D094291,D4F98D093291,D4F98D092291,192.168.2.037
/c1_100_wifi_u/D4F98D094292/properties/upload,D4F98D094292,1,0,3,2,D4F98D094292,D4F98D093292,D4F98D092292,192.168.2.038
/c1_100_wifi_u/D4F98D094293/properties/upload,D4F98D094293,1,0,3,2,D4F98D094293,D4F98D093293,D4F98D092293,192.168.2.039
/c1_100_wifi_u/D4F98D094294/properties/upload,D4F98D094294,1,0,3,2,D4F98D094294,D4F98D093294,D4F98D092294,192.168.2.040
/c1_100_wifi_u/D4F98D094295/properties/upload,D4F98D094295,1,0,3,2,D4F98D094295,D4F98D093295,D4F98D092295,192.168.2.041
/c1_100_wifi_u/D4F98D094296/properties/upload,D4F98D094296,1,0,3,2,D4F98D094296,D4F98D093296,D4F98D092296,192.168.2.042
/c1_100_wifi_u/D4F98D094297/properties/upload,D4F98D094297,1,0,3,2,D4F98D094297,D4F98D093297,D4F98D092297,192.168.2.043
/c1_100_wifi_u/D4F98D094298/properties/upload,D4F98D094298,1,0,3,2,D4F98D094298,D4F98D093298,D4F98D092298,192.168.2.044
/c1_100_wifi_u/D4F98D094299/properties/upload,D4F98D094299,1,0,3,2,D4F98D094299,D4F98D093299,D4F98D092299,192.168.2.045
/c1_100_wifi_u/D4F98D094300/properties/upload,D4F98D094300,1,0,3,2,D4F98D094300,D4F98D093300,D4F98D092300,192.168.2.046
/c1_100_wifi_u/D4F98D094301/properties/upload,D4F98D094301,1,0,3,2,D4F98D094301,D4F98D093301,D4F98D092301,192.168.2.047
/c1_100_wifi_u/D4F98D094302/properties/upload,D4F98D094302,1,0,3,2,D4F98D094302,D4F98D093302,D4F98D092302,192.168.2.048
/c1_100_wifi_u/D4F98D094303/properties/upload,D4F98D094303,1,0,3,2,D4F98D094303,D4F98D093303,D4F98D092303,192.168.2.049
/c1_100_wifi_u/D4F98D094304/properties/upload,D4F98D094304,1,0,3,2,D4F98D094304,D4F98D093304,D4F98D092304,192.168.2.050
/c1_100_wifi_u/D4F98D094305/properties/upload,D4F98D094305,1,0,3,2,D4F98D094305,D4F98D093305,D4F98D092305,192.168.2.051
/c1_100_wifi_u/D4F98D094306/properties/upload,D4F98D094306,1,0,3,2,D4F98D094306,D4F98D093306,D4F98D092306,192.168.2.052
/c1_100_wifi_u/D4F98D094307/properties/upload,D4F98D094307,1,0,3,2,D4F98D094307,D4F98D093307,D4F98D092307,192.168.2.053
/c1_100_wifi_u/D4F98D094308/properties/upload,D4F98D094308,1,0,3,2,D4F98D094308,D4F98D093308,D4F98D092308,192.168.2.054
/c1_100_wifi_u/D4F98D094309/properties/upload,D4F98D094309,1,0,3,2,D4F98D094309,D4F98D093309,D4F98D092309,192.168.2.055
/c1_100_wifi_u/D4F98D094310/properties/upload,D4F98D094310,1,0,3,2,D4F98D094310,D4F98D093310,D4F98D092310,192.168.2.056
/c1_100_wifi_u/D4F98D094311/properties/upload,D4F98D094311,1,0,3,2,D4F98D094311,D4F98D093311,D4F98D092311,192.168.2.057
/c1_100_wifi_u/D4F98D094312/properties/upload,D4F98D094312,1,0,3,2,D4F98D094312,D4F98D093312,D4F98D092312,192.168.2.058
/c1_100_wifi_u/D4F98D094313/properties/upload,D4F98D094313,1,0,3,2,D4F98D094313,D4F98D093313,D4F98D092313,192.168.2.059
/c1_100_wifi_u/D4F98D094314/properties/upload,D4F98D094314,1,0,3,2,D4F98D094314,D4F98D093314,D4F98D092314,192.168.2.060
/c1_100_wifi_u/D4F98D094315/properties/upload,D4F98D094315,1,0,3,2,D4F98D094315,D4F98D093315,D4F98D092315,192.168.2.061
/c1_100_wifi_u/D4F98D094316/properties/upload,D4F98D094316,1,0,3,2,D4F98D094316,D4F98D093316,D4F98D092316,192.168.2.062
/c1_100_wifi_u/D4F98D094317/properties/upload,D4F98D094317,1,0,3,2,D4F98D094317,D4F98D093317,D4F98D092317,192.168.2.063
/c1_100_wifi_u/D4F98D094318/properties/upload,D4F98D094318,1,0,3,2,D4F98D094318,D4F98D093318,D4F98D092318,192.168.2.064
/c1_100_wifi_u/D4F98D094319/properties/upload,D4F98D094319,1,0,3,2,D4F98D094319,D4F98D093319,D4F98D092319,192.168.2.065
/c1_100_wifi_u/D4F98D094320/properties/upload,D4F98D094320,1,0,3,2,D4F98D094320,D4F98D093320,D4F98D092320,192.168.2.066
/c1_100_wifi_u/D4F98D094321/properties/upload,D4F98D094321,1,0,3,2,D4F98D094321,D4F98D093321,D4F98D092321,192.168.2.067
/c1_100_wifi_u/D4F98D094322/properties/upload,D4F98D094322,1,0,3,2,D4F98D094322,D4F98D093322,D4F98D092322,192.168.2.068
/c1_100_wifi_u/D4F98D094323/properties/upload,D4F98D094323,1,0,3,2,D4F98D094323,D4F98D093323,D4F98D092323,192.168.2.069
/c1_100_wifi_u/D4F98D094324/properties/upload,D4F98D094324,1,0,3,2,D4F98D094324,D4F98D093324,D4F98D092324,192.168.2.070
/c1_100_wifi_u/D4F98D094325/properties/upload,D4F98D094325,1,0,3,2,D4F98D094325,D4F98D093325,D4F98D092325,192.168.2.071
/c1_100_wifi_u/D4F98D094326/properties/upload,D4F98D094326,1,0,3,2,D4F98D094326,D4F98D093326,D4F98D092326,192.168.2.072
/c1_100_wifi_u/D4F98D094327/properties/upload,D4F98D094327,1,0,3,2,D4F98D094327,D4F98D093327,D4F98D092327,192.168.2.073
/c1_100_wifi_u/D4F98D094328/properties/upload,D4F98D094328,1,0,3,2,D4F98D094328,D4F98D093328,D4F98D092328,192.168.2.074
/c1_100_wifi_u/D4F98D094329/properties/upload,D4F98D094329,1,0,3,2,D4F98D094329,D4F98D093329,D4F98D092329,192.168.2.075
/c1_100_wifi_u/D4F98D094330/properties/upload,D4F98D094330,1,0,3,2,D4F98D094330,D4F98D093330,D4F98D092330,192.168.2.076
/c1_100_wifi_u/D4F98D094331/properties/upload,D4F98D094331,1,0,3,2,D4F98D094331,D4F98D093331,D4F98D092331,192.168.2.077
/c1_100_wifi_u/D4F98D094332/properties/upload,D4F98D094332,1,0,3,2,D4F98D094332,D4F98D093332,D4F98D092332,192.168.2.078
/c1_100_wifi_u/D4F98D094333/properties/upload,D4F98D094333,1,0,3,2,D4F98D094333,D4F98D093333,D4F98D092333,192.168.2.079
/c1_100_wifi_u/D4F98D094334/properties/upload,D4F98D094334,1,0,3,2,D4F98D094334,D4F98D093334,D4F98D092334,192.168.2.080
/c1_100_wifi_u/D4F98D094335/properties/upload,D4F98D094335,1,0,3,2,D4F98D094335,D4F98D093335,D4F98D092335,192.168.2.081
/c1_100_wifi_u/D4F98D094336/properties/upload,D4F98D094336,1,0,3,2,D4F98D094336,D4F98D093336,D4F98D092336,192.168.2.082
/c1_100_wifi_u/D4F98D094337/properties/upload,D4F98D094337,1,0,3,2,D4F98D094337,D4F98D093337,D4F98D092337,192.168.2.083
/c1_100_wifi_u/D4F98D094338/properties/upload,D4F98D094338,1,0,3,2,D4F98D094338,D4F98D093338,D4F98D092338,192.168.2.084
/c1_100_wifi_u/D4F98D094339/properties/upload,D4F98D094339,1,0,3,2,D4F98D094339,D4F98D093339,D4F98D092339,192.168.2.085
/c1_100_wifi_u/D4F98D094340/properties/upload,D4F98D094340,1,0,3,2,D4F98D094340,D4F98D093340,D4F98D092340,192.168.2.086
/c1_100_wifi_u/D4F98D094341/properties/upload,D4F98D094341,1,0,3,2,D4F98D094341,D4F98D093341,D4F98D092341,192.168.2.087
/c1_100_wifi_u/D4F98D094342/properties/upload,D4F98D094342,1,0,3,2,D4F98D094342,D4F98D093342,D4F98D092342,192.168.2.088
/c1_100_wifi_u/D4F98D094343/properties/upload,D4F98D094343,1,0,3,2,D4F98D094343,D4F98D093343,D4F98D092343,192.168.2.089
/c1_100_wifi_u/D4F98D094344/properties/upload,D4F98D094344,1,0,3,2,D4F98D094344,D4F98D093344,D4F98D092344,192.168.2.090
/c1_100_wifi_u/D4F98D094345/properties/upload,D4F98D094345,1,0,3,2,D4F98D094345,D4F98D093345,D4F98D092345,192.168.2.091
/c1_100_wifi_u/D4F98D094346/properties/upload,D4F98D094346,1,0,3,2,D4F98D094346,D4F98D093346,D4F98D092346,192.168.2.092
/c1_100_wifi_u/D4F98D094347/properties/upload,D4F98D094347,1,0,3,2,D4F98D094347,D4F98D093347,D4F98D092347,192.168.2.093
/c1_100_wifi_u/D4F98D094348/properties/upload,D4F98D094348,1,0,3,2,D4F98D094348,D4F98D093348,D4F98D092348,192.168.2.094
/c1_100_wifi_u/D4F98D094349/properties/upload,D4F98D094349,1,0,3,2,D4F98D094349,D4F98D093349,D4F98D092349,192.168.2.095
/c1_100_wifi_u/D4F98D094350/properties/upload,D4F98D094350,1,0,3,2,D4F98D094350,D4F98D093350,D4F98D092350,192.168.2.096
/c1_100_wifi_u/D4F98D094351/properties/upload,D4F98D094351,1,0,3,2,D4F98D094351,D4F98D093351,D4F98D092351,192.168.2.097
/c1_100_wifi_u/D4F98D094352/properties/upload,D4F98D094352,1,0,3,2,D4F98D094352,D4F98D093352,D4F98D092352,192.168.2.098
/c1_100_wifi_u/D4F98D094353/properties/upload,D4F98D094353,1,0,3,2,D4F98D094353,D4F98D093353,D4F98D092353,192.168.2.099
/c1_100_wifi_u/D4F98D094354/properties/upload,D4F98D094354,1,0,3,2,D4F98D094354,D4F98D093354,D4F98D092354,192.168.2.100
/c1_100_wifi_u/D4F98D094355/properties/upload,D4F98D094355,1,0,3,2,D4F98D094355,D4F98D093355,D4F98D092355,192.168.2.101
/c1_100_wifi_u/D4F98D094356/properties/upload,D4F98D094356,1,0,3,2,D4F98D094356,D4F98D093356,D4F98D092356,192.168.2.102
/c1_100_wifi_u/D4F98D094357/properties/upload,D4F98D094357,1,0,3,2,D4F98D094357,D4F98D093357,D4F98D092357,192.168.2.103
/c1_100_wifi_u/D4F98D094358/properties/upload,D4F98D094358,1,0,3,2,D4F98D094358,D4F98D093358,D4F98D092358,192.168.2.104
/c1_100_wifi_u/D4F98D094359/properties/upload,D4F98D094359,1,0,3,2,D4F98D094359,D4F98D093359,D4F98D092359,192.168.2.105
/c1_100_wifi_u/D4F98D094360/properties/upload,D4F98D094360,1,0,3,2,D4F98D094360,D4F98D093360,D4F98D092360,192.168.2.106
/c1_100_wifi_u/D4F98D094361/properties/upload,D4F98D094361,1,0,3,2,D4F98D094361,D4F98D093361,D4F98D092361,192.168.2.107
/c1_100_wifi_u/D4F98D094362/properties/upload,D4F98D094362,1,0,3,2,D4F98D094362,D4F98D093362,D4F98D092362,192.168.2.108
/c1_100_wifi_u/D4F98D094363/properties/upload,D4F98D094363,1,0,3,2,D4F98D094363,D4F98D093363,D4F98D092363,192.168.2.109
/c1_100_wifi_u/D4F98D094364/properties/upload,D4F98D094364,1,0,3,2,D4F98D094364,D4F98D093364,D4F98D092364,192.168.2.110
/c1_100_wifi_u/D4F98D094365/properties/upload,D4F98D094365,1,0,3,2,D4F98D094365,D4F98D093365,D4F98D092365,192.168.2.111
/c1_100_wifi_u/D4F98D094366/properties/upload,D4F98D094366,1,0,3,2,D4F98D094366,D4F98D093366,D4F98D092366,192.168.2.112
/c1_100_wifi_u/D4F98D094367/properties/upload,D4F98D094367,1,0,3,2,D4F98D094367,D4F98D093367,D4F98D092367,192.168.2.113
/c1_100_wifi_u/D4F98D094368/properties/upload,D4F98D094368,1,0,3,2,D4F98D094368,D4F98D093368,D4F98D092368,192.168.2.114
/c1_100_wifi_u/D4F98D094369/properties/upload,D4F98D094369,1,0,3,2,D4F98D094369,D4F98D093369,D4F98D092369,192.168.2.115
/c1_100_wifi_u/D4F98D094370/properties/upload,D4F98D094370,1,0,3,2,D4F98D094370,D4F98D093370,D4F98D092370,192.168.2.116
/c1_100_wifi_u/D4F98D094371/properties/upload,D4F98D094371,1,0,3,2,D4F98D094371,D4F98D093371,D4F98D092371,192.168.2.117
/c1_100_wifi_u/D4F98D094372/properties/upload,D4F98D094372,1,0,3,2,D4F98D094372,D4F98D093372,D4F98D092372,192.168.2.118
/c1_100_wifi_u/D4F98D094373/properties/upload,D4F98D094373,1,0,3,2,D4F98D094373,D4F98D093373,D4F98D092373,192.168.2.119
/c1_100_wifi_u/D4F98D094374/properties/upload,D4F98D094374,1,0,3,2,D4F98D094374,D4F98D093374,D4F98D092374,192.168.2.120
/c1_100_wifi_u/D4F98D094375/properties/upload,D4F98D094375,1,0,3,2,D4F98D094375,D4F98D093375,D4F98D092375,192.168.2.121
/c1_100_wifi_u/D4F98D094376/properties/upload,D4F98D094376,1,0,3,2,D4F98D094376,D4F98D093376,D4F98D092376,192.168.2.122
/c1_100_wifi_u/D4F98D094377/properties/upload,D4F98D094377,1,0,3,2,D4F98D094377,D4F98D093377,D4F98D092377,192.168.2.123
/c1_100_wifi_u/D4F98D094378/properties/upload,D4F98D094378,1,0,3,2,D4F98D094378,D4F98D093378,D4F98D092378,192.168.2.124
/c1_100_wifi_u/D4F98D094379/properties/upload,D4F98D094379,1,0,3,2,D4F98D094379,D4F98D093379,D4F98D092379,192.168.2.125
/c1_100_wifi_u/D4F98D094380/properties/upload,D4F98D094380,1,0,3,2,D4F98D094380,D4F98D093380,D4F98D092380,192.168.2.126
/c1_100_wifi_u/D4F98D094381/properties/upload,D4F98D094381,1,0,3,2,D4F98D094381,D4F98D093381,D4F98D092381,192.168.2.127
/c1_100_wifi_u/D4F98D094382/properties/upload,D4F98D094382,1,0,3,2,D4F98D094382,D4F98D093382,D4F98D092382,192.168.2.128
/c1_100_wifi_u/D4F98D094383/properties/upload,D4F98D094383,1,0,3,2,D4F98D094383,D4F98D093383,D4F98D092383,192.168.2.129
/c1_100_wifi_u/D4F98D094384/properties/upload,D4F98D094384,1,0,3,2,D4F98D094384,D4F98D093384,D4F98D092384,192.168.2.130
/c1_100_wifi_u/D4F98D094385/properties/upload,D4F98D094385,1,0,3,2,D4F98D094385,D4F98D093385,D4F98D092385,192.168.2.131
/c1_100_wifi_u/D4F98D094386/properties/upload,D4F98D094386,1,0,3,2,D4F98D094386,D4F98D093386,D4F98D092386,192.168.2.132
/c1_100_wifi_u/D4F98D094387/properties/upload,D4F98D094387,1,0,3,2,D4F98D094387,D4F98D093387,D4F98D092387,192.168.2.133
/c1_100_wifi_u/D4F98D094388/properties/upload,D4F98D094388,1,0,3,2,D4F98D094388,D4F98D093388,D4F98D092388,192.168.2.134
/c1_100_wifi_u/D4F98D094389/properties/upload,D4F98D094389,1,0,3,2,D4F98D094389,D4F98D093389,D4F98D092389,192.168.2.135
/c1_100_wifi_u/D4F98D094390/properties/upload,D4F98D094390,1,0,3,2,D4F98D094390,D4F98D093390,D4F98D092390,192.168.2.136
/c1_100_wifi_u/D4F98D094391/properties/upload,D4F98D094391,1,0,3,2,D4F98D094391,D4F98D093391,D4F98D092391,192.168.2.137
/c1_100_wifi_u/D4F98D094392/properties/upload,D4F98D094392,1,0,3,2,D4F98D094392,D4F98D093392,D4F98D092392,192.168.2.138
/c1_100_wifi_u/D4F98D094393/properties/upload,D4F98D094393,1,0,3,2,D4F98D094393,D4F98D093393,D4F98D092393,192.168.2.139
/c1_100_wifi_u/D4F98D094394/properties/upload,D4F98D094394,1,0,3,2,D4F98D094394,D4F98D093394,D4F98D092394,192.168.2.140
/c1_100_wifi_u/D4F98D094395/properties/upload,D4F98D094395,1,0,3,2,D4F98D094395,D4F98D093395,D4F98D092395,192.168.2.141
/c1_100_wifi_u/D4F98D094396/properties/upload,D4F98D094396,1,0,3,2,D4F98D094396,D4F98D093396,D4F98D092396,192.168.2.142
/c1_100_wifi_u/D4F98D094397/properties/upload,D4F98D094397,1,0,3,2,D4F98D094397,D4F98D093397,D4F98D092397,192.168.2.143
/c1_100_wifi_u/D4F98D094398/properties/upload,D4F98D094398,1,0,3,2,D4F98D094398,D4F98D093398,D4F98D092398,192.168.2.144
/c1_100_wifi_u/D4F98D094399/properties/upload,D4F98D094399,1,0,3,2,D4F98D094399,D4F98D093399,D4F98D092399,192.168.2.145
/c1_100_wifi_u/D4F98D094400/properties/upload,D4F98D094400,1,0,3,2,D4F98D094400,D4F98D093400,D4F98D092400,192.168.2.146
/c1_100_wifi_u/D4F98D094401/properties/upload,D4F98D094401,1,0,3,2,D4F98D094401,D4F98D093401,D4F98D092401,192.168.2.147
/c1_100_wifi_u/D4F98D094402/properties/upload,D4F98D094402,1,0,3,2,D4F98D094402,D4F98D093402,D4F98D092402,192.168.2.148
/c1_100_wifi_u/D4F98D094403/properties/upload,D4F98D094403,1,0,3,2,D4F98D094403,D4F98D093403,D4F98D092403,192.168.2.149
/c1_100_wifi_u/D4F98D094404/properties/upload,D4F98D094404,1,0,3,2,D4F98D094404,D4F98D093404,D4F98D092404,192.168.2.150
/c1_100_wifi_u/D4F98D094405/properties/upload,D4F98D094405,1,0,3,2,D4F98D094405,D4F98D093405,D4F98D092405,192.168.2.151
/c1_100_wifi_u/D4F98D094406/properties/upload,D4F98D094406,1,0,3,2,D4F98D094406,D4F98D093406,D4F98D092406,192.168.2.152
/c1_100_wifi_u/D4F98D094407/properties/upload,D4F98D094407,1,0,3,2,D4F98D094407,D4F98D093407,D4F98D092407,192.168.2.153
/c1_100_wifi_u/D4F98D094408/properties/upload,D4F98D094408,1,0,3,2,D4F98D094408,D4F98D093408,D4F98D092408,192.168.2.154
/c1_100_wifi_u/D4F98D094409/properties/upload,D4F98D094409,1,0,3,2,D4F98D094409,D4F98D093409,D4F98D092409,192.168.2.155
/c1_100_wifi_u/D4F98D094410/properties/upload,D4F98D094410,1,0,3,2,D4F98D094410,D4F98D093410,D4F98D092410,192.168.2.156
/c1_100_wifi_u/D4F98D094411/properties/upload,D4F98D094411,1,0,3,2,D4F98D094411,D4F98D093411,D4F98D092411,192.168.2.157
/c1_100_wifi_u/D4F98D094412/properties/upload,D4F98D094412,1,0,3,2,D4F98D094412,D4F98D093412,D4F98D092412,192.168.2.158
/c1_100_wifi_u/D4F98D094413/properties/upload,D4F98D094413,1,0,3,2,D4F98D094413,D4F98D093413,D4F98D092413,192.168.2.159
/c1_100_wifi_u/D4F98D094414/properties/upload,D4F98D094414,1,0,3,2,D4F98D094414,D4F98D093414,D4F98D092414,192.168.2.160
/c1_100_wifi_u/D4F98D094415/properties/upload,D4F98D094415,1,0,3,2,D4F98D094415,D4F98D093415,D4F98D092415,192.168.2.161
/c1_100_wifi_u/D4F98D094416/properties/upload,D4F98D094416,1,0,3,2,D4F98D094416,D4F98D093416,D4F98D092416,192.168.2.162
/c1_100_wifi_u/D4F98D094417/properties/upload,D4F98D094417,1,0,3,2,D4F98D094417,D4F98D093417,D4F98D092417,192.168.2.163
/c1_100_wifi_u/D4F98D094418/properties/upload,D4F98D094418,1,0,3,2,D4F98D094418,D4F98D093418,D4F98D092418,192.168.2.164
/c1_100_wifi_u/D4F98D094419/properties/upload,D4F98D094419,1,0,3,2,D4F98D094419,D4F98D093419,D4F98D092419,192.168.2.165
/c1_100_wifi_u/D4F98D094420/properties/upload,D4F98D094420,1,0,3,2,D4F98D094420,D4F98D093420,D4F98D092420,192.168.2.166
/c1_100_wifi_u/D4F98D094421/properties/upload,D4F98D094421,1,0,3,2,D4F98D094421,D4F98D093421,D4F98D092421,192.168.2.167
/c1_100_wifi_u/D4F98D094422/properties/upload,D4F98D094422,1,0,3,2,D4F98D094422,D4F98D093422,D4F98D092422,192.168.2.168
/c1_100_wifi_u/D4F98D094423/properties/upload,D4F98D094423,1,0,3,2,D4F98D094423,D4F98D093423,D4F98D092423,192.168.2.169
/c1_100_wifi_u/D4F98D094424/properties/upload,D4F98D094424,1,0,3,2,D4F98D094424,D4F98D093424,D4F98D092424,192.168.2.170
/c1_100_wifi_u/D4F98D094425/properties/upload,D4F98D094425,1,0,3,2,D4F98D094425,D4F98D093425,D4F98D092425,192.168.2.171
/c1_100_wifi_u/D4F98D094426/properties/upload,D4F98D094426,1,0,3,2,D4F98D094426,D4F98D093426,D4F98D092426,192.168.2.172
/c1_100_wifi_u/D4F98D094427/properties/upload,D4F98D094427,1,0,3,2,D4F98D094427,D4F98D093427,D4F98D092427,192.168.2.173
/c1_100_wifi_u/D4F98D094428/properties/upload,D4F98D094428,1,0,3,2,D4F98D094428,D4F98D093428,D4F98D092428,192.168.2.174
/c1_100_wifi_u/D4F98D094429/properties/upload,D4F98D094429,1,0,3,2,D4F98D094429,D4F98D093429,D4F98D092429,192.168.2.175
/c1_100_wifi_u/D4F98D094430/properties/upload,D4F98D094430,1,0,3,2,D4F98D094430,D4F98D093430,D4F98D092430,192.168.2.176
/c1_100_wifi_u/D4F98D094431/properties/upload,D4F98D094431,1,0,3,2,D4F98D094431,D4F98D093431,D4F98D092431,192.168.2.177
/c1_100_wifi_u/D4F98D094432/properties/upload,D4F98D094432,1,0,3,2,D4F98D094432,D4F98D093432,D4F98D092432,192.168.2.178
/c1_100_wifi_u/D4F98D094433/properties/upload,D4F98D094433,1,0,3,2,D4F98D094433,D4F98D093433,D4F98D092433,192.168.2.179
/c1_100_wifi_u/D4F98D094434/properties/upload,D4F98D094434,1,0,3,2,D4F98D094434,D4F98D093434,D4F98D092434,192.168.2.180
/c1_100_wifi_u/D4F98D094435/properties/upload,D4F98D094435,1,0,3,2,D4F98D094435,D4F98D093435,D4F98D092435,192.168.2.181
/c1_100_wifi_u/D4F98D094436/properties/upload,D4F98D094436,1,0,3,2,D4F98D094436,D4F98D093436,D4F98D092436,192.168.2.182
/c1_100_wifi_u/D4F98D094437/properties/upload,D4F98D094437,1,0,3,2,D4F98D094437,D4F98D093437,D4F98D092437,192.168.2.183
/c1_100_wifi_u/D4F98D094438/properties/upload,D4F98D094438,1,0,3,2,D4F98D094438,D4F98D093438,D4F98D092438,192.168.2.184
/c1_100_wifi_u/D4F98D094439/properties/upload,D4F98D094439,1,0,3,2,D4F98D094439,D4F98D093439,D4F98D092439,192.168.2.185
/c1_100_wifi_u/D4F98D094440/properties/upload,D4F98D094440,1,0,3,2,D4F98D094440,D4F98D093440,D4F98D092440,192.168.2.186
/c1_100_wifi_u/D4F98D094441/properties/upload,D4F98D094441,1,0,3,2,D4F98D094441,D4F98D093441,D4F98D092441,192.168.2.187
/c1_100_wifi_u/D4F98D094442/properties/upload,D4F98D094442,1,0,3,2,D4F98D094442,D4F98D093442,D4F98D092442,192.168.2.188
/c1_100_wifi_u/D4F98D094443/properties/upload,D4F98D094443,1,0,3,2,D4F98D094443,D4F98D093443,D4F98D092443,192.168.2.189
/c1_100_wifi_u/D4F98D094444/properties/upload,D4F98D094444,1,0,3,2,D4F98D094444,D4F98D093444,D4F98D092444,192.168.2.190
/c1_100_wifi_u/D4F98D094445/properties/upload,D4F98D094445,1,0,3,2,D4F98D094445,D4F98D093445,D4F98D092445,192.168.2.191
/c1_100_wifi_u/D4F98D094446/properties/upload,D4F98D094446,1,0,3,2,D4F98D094446,D4F98D093446,D4F98D092446,192.168.2.192
/c1_100_wifi_u/D4F98D094447/properties/upload,D4F98D094447,1,0,3,2,D4F98D094447,D4F98D093447,D4F98D092447,192.168.2.193
/c1_100_wifi_u/D4F98D094448/properties/upload,D4F98D094448,1,0,3,2,D4F98D094448,D4F98D093448,D4F98D092448,192.168.2.194
/c1_100_wifi_u/D4F98D094449/properties/upload,D4F98D094449,1,0,3,2,D4F98D094449,D4F98D093449,D4F98D092449,192.168.2.195
/c1_100_wifi_u/D4F98D094450/properties/upload,D4F98D094450,1,0,3,2,D4F98D094450,D4F98D093450,D4F98D092450,192.168.2.196
/c1_100_wifi_u/D4F98D094451/properties/upload,D4F98D094451,1,0,3,2,D4F98D094451,D4F98D093451,D4F98D092451,192.168.2.197
/c1_100_wifi_u/D4F98D094452/properties/upload,D4F98D094452,1,0,3,2,D4F98D094452,D4F98D093452,D4F98D092452,192.168.2.198
/c1_100_wifi_u/D4F98D094453/properties/upload,D4F98D094453,1,0,3,2,D4F98D094453,D4F98D093453,D4F98D092453,192.168.2.199
/c1_100_wifi_u/D4F98D094454/properties/upload,D4F98D094454,1,0,3,2,D4F98D094454,D4F98D093454,D4F98D092454,192.168.2.200
/c1_100_wifi_u/D4F98D094455/properties/upload,D4F98D094455,1,0,3,2,D4F98D094455,D4F98D093455,D4F98D092455,192.168.2.201
/c1_100_wifi_u/D4F98D094456/properties/upload,D4F98D094456,1,0,3,2,D4F98D094456,D4F98D093456,D4F98D092456,192.168.2.202
/c1_100_wifi_u/D4F98D094457/properties/upload,D4F98D094457,1,0,3,2,D4F98D094457,D4F98D093457,D4F98D092457,192.168.2.203
/c1_100_wifi_u/D4F98D094458/properties/upload,D4F98D094458,1,0,3,2,D4F98D094458,D4F98D093458,D4F98D092458,192.168.2.204
/c1_100_wifi_u/D4F98D094459/properties/upload,D4F98D094459,1,0,3,2,D4F98D094459,D4F98D093459,D4F98D092459,192.168.2.205
/c1_100_wifi_u/D4F98D094460/properties/upload,D4F98D094460,1,0,3,2,D4F98D094460,D4F98D093460,D4F98D092460,192.168.2.206
/c1_100_wifi_u/D4F98D094461/properties/upload,D4F98D094461,1,0,3,2,D4F98D094461,D4F98D093461,D4F98D092461,192.168.2.207
/c1_100_wifi_u/D4F98D094462/properties/upload,D4F98D094462,1,0,3,2,D4F98D094462,D4F98D093462,D4F98D092462,192.168.2.208
/c1_100_wifi_u/D4F98D094463/properties/upload,D4F98D094463,1,0,3,2,D4F98D094463,D4F98D093463,D4F98D092463,192.168.2.209
/c1_100_wifi_u/D4F98D094464/properties/upload,D4F98D094464,1,0,3,2,D4F98D094464,D4F98D093464,D4F98D092464,192.168.2.210
/c1_100_wifi_u/D4F98D094465/properties/upload,D4F98D094465,1,0,3,2,D4F98D094465,D4F98D093465,D4F98D092465,192.168.2.211
/c1_100_wifi_u/D4F98D094466/properties/upload,D4F98D094466,1,0,3,2,D4F98D094466,D4F98D093466,D4F98D092466,192.168.2.212
/c1_100_wifi_u/D4F98D094467/properties/upload,D4F98D094467,1,0,3,2,D4F98D094467,D4F98D093467,D4F98D092467,192.168.2.213
/c1_100_wifi_u/D4F98D094468/properties/upload,D4F98D094468,1,0,3,2,D4F98D094468,D4F98D093468,D4F98D092468,192.168.2.214
/c1_100_wifi_u/D4F98D094469/properties/upload,D4F98D094469,1,0,3,2,D4F98D094469,D4F98D093469,D4F98D092469,192.168.2.215
/c1_100_wifi_u/D4F98D094470/properties/upload,D4F98D094470,1,0,3,2,D4F98D094470,D4F98D093470,D4F98D092470,192.168.2.216
/c1_100_wifi_u/D4F98D094471/properties/upload,D4F98D094471,1,0,3,2,D4F98D094471,D4F98D093471,D4F98D092471,192.168.2.217
/c1_100_wifi_u/D4F98D094472/properties/upload,D4F98D094472,1,0,3,2,D4F98D094472,D4F98D093472,D4F98D092472,192.168.2.218
/c1_100_wifi_u/D4F98D094473/properties/upload,D4F98D094473,1,0,3,2,D4F98D094473,D4F98D093473,D4F98D092473,192.168.2.219
/c1_100_wifi_u/D4F98D094474/properties/upload,D4F98D094474,1,0,3,2,D4F98D094474,D4F98D093474,D4F98D092474,192.168.2.220
/c1_100_wifi_u/D4F98D094475/properties/upload,D4F98D094475,1,0,3,2,D4F98D094475,D4F98D093475,D4F98D092475,192.168.2.221
/c1_100_wifi_u/D4F98D094476/properties/upload,D4F98D094476,1,0,3,2,D4F98D094476,D4F98D093476,D4F98D092476,192.168.2.222
/c1_100_wifi_u/D4F98D094477/properties/upload,D4F98D094477,1,0,3,2,D4F98D094477,D4F98D093477,D4F98D092477,192.168.2.223
/c1_100_wifi_u/D4F98D094478/properties/upload,D4F98D094478,1,0,3,2,D4F98D094478,D4F98D093478,D4F98D092478,192.168.2.224
/c1_100_wifi_u/D4F98D094479/properties/upload,D4F98D094479,1,0,3,2,D4F98D094479,D4F98D093479,D4F98D092479,192.168.2.225
/c1_100_wifi_u/D4F98D094480/properties/upload,D4F98D094480,1,0,3,2,D4F98D094480,D4F98D093480,D4F98D092480,192.168.2.226
/c1_100_wifi_u/D4F98D094481/properties/upload,D4F98D094481,1,0,3,2,D4F98D094481,D4F98D093481,D4F98D092481,192.168.2.227
/c1_100_wifi_u/D4F98D094482/properties/upload,D4F98D094482,1,0,3,2,D4F98D094482,D4F98D093482,D4F98D092482,192.168.2.228
/c1_100_wifi_u/D4F98D094483/properties/upload,D4F98D094483,1,0,3,2,D4F98D094483,D4F98D093483,D4F98D092483,192.168.2.229
/c1_100_wifi_u/D4F98D094484/properties/upload,D4F98D094484,1,0,3,2,D4F98D094484,D4F98D093484,D4F98D092484,192.168.2.230
/c1_100_wifi_u/D4F98D094485/properties/upload,D4F98D094485,1,0,3,2,D4F98D094485,D4F98D093485,D4F98D092485,192.168.2.231
/c1_100_wifi_u/D4F98D094486/properties/upload,D4F98D094486,1,0,3,2,D4F98D094486,D4F98D093486,D4F98D092486,192.168.2.232
/c1_100_wifi_u/D4F98D094487/properties/upload,D4F98D094487,1,0,3,2,D4F98D094487,D4F98D093487,D4F98D092487,192.168.2.233
/c1_100_wifi_u/D4F98D094488/properties/upload,D4F98D094488,1,0,3,2,D4F98D094488,D4F98D093488,D4F98D092488,192.168.2.234
/c1_100_wifi_u/D4F98D094489/properties/upload,D4F98D094489,1,0,3,2,D4F98D094489,D4F98D093489,D4F98D092489,192.168.2.235
/c1_100_wifi_u/D4F98D094490/properties/upload,D4F98D094490,1,0,3,2,D4F98D094490,D4F98D093490,D4F98D092490,192.168.2.236
/c1_100_wifi_u/D4F98D094491/properties/upload,D4F98D094491,1,0,3,2,D4F98D094491,D4F98D093491,D4F98D092491,192.168.2.237
/c1_100_wifi_u/D4F98D094492/properties/upload,D4F98D094492,1,0,3,2,D4F98D094492,D4F98D093492,D4F98D092492,192.168.2.238
/c1_100_wifi_u/D4F98D094493/properties/upload,D4F98D094493,1,0,3,2,D4F98D094493,D4F98D093493,D4F98D092493,192.168.2.239
/c1_100_wifi_u/D4F98D094494/properties/upload,D4F98D094494,1,0,3,2,D4F98D094494,D4F98D093494,D4F98D092494,192.168.2.240
/c1_100_wifi_u/D4F98D094495/properties/upload,D4F98D094495,1,0,3,2,D4F98D094495,D4F98D093495,D4F98D092495,192.168.2.241
/c1_100_wifi_u/D4F98D094496/properties/upload,D4F98D094496,1,0,3,2,D4F98D094496,D4F98D093496,D4F98D092496,192.168.2.242
/c1_100_wifi_u/D4F98D094497/properties/upload,D4F98D094497,1,0,3,2,D4F98D094497,D4F98D093497,D4F98D092497,192.168.2.243
/c1_100_wifi_u/D4F98D094498/properties/upload,D4F98D094498,1,0,3,2,D4F98D094498,D4F98D093498,D4F98D092498,192.168.2.244
/c1_100_wifi_u/D4F98D094499/properties/upload,D4F98D094499,1,0,3,2,D4F98D094499,D4F98D093499,D4F98D092499,192.168.2.245
/c1_100_wifi_u/D4F98D094500/properties/upload,D4F98D094500,1,0,3,2,D4F98D094500,D4F98D093500,D4F98D092500,192.168.2.246
/c1_100_wifi_u/D4F98D094501/properties/upload,D4F98D094501,1,0,3,2,D4F98D094501,D4F98D093501,D4F98D092501,192.168.2.247
/c1_100_wifi_u/D4F98D094502/properties/upload,D4F98D094502,1,0,3,2,D4F98D094502,D4F98D093502,D4F98D092502,192.168.2.248
/c1_100_wifi_u/D4F98D094503/properties/upload,D4F98D094503,1,0,3,2,D4F98D094503,D4F98D093503,D4F98D092503,192.168.2.249
/c1_100_wifi_u/D4F98D094504/properties/upload,D4F98D094504,1,0,3,2,D4F98D094504,D4F98D093504,D4F98D092504,192.168.2.250
/c1_100_wifi_u/D4F98D094505/properties/upload,D4F98D094505,1,0,3,2,D4F98D094505,D4F98D093505,D4F98D092505,192.168.2.251
/c1_100_wifi_u/D4F98D094506/properties/upload,D4F98D094506,1,0,3,2,D4F98D094506,D4F98D093506,D4F98D092506,192.168.2.252
/c1_100_wifi_u/D4F98D094507/properties/upload,D4F98D094507,1,0,3,2,D4F98D094507,D4F98D093507,D4F98D092507,192.168.2.253
/c1_100_wifi_u/D4F98D094508/properties/upload,D4F98D094508,1,0,3,2,D4F98D094508,D4F98D093508,D4F98D092508,192.168.2.254
/c1_100_wifi_u/D4F98D094509/properties/upload,D4F98D094509,1,0,3,2,D4F98D094509,D4F98D093509,D4F98D092509,192.168.2.255
topic,client_id,presence_state,kaiguan,julishezhi,lingmindushezhi,wifi_mac,ble_mac,sn,ip
/c1_100_wifi_u/D4F98D094001/properties/upload,D4F98D094001,1,0,3,2,D4F98D094001,D4F98D093001,D4F98D092001,192.168.1.1
\ No newline at end of file
topic,clientId,appToken,companyNumber,cnum,conferenceId,macAddress,authCode,clientId,deviceId
rebootResponseTopic,48134e6047a19a01,AND-2CT-0101,CN-2CT-UBAINS,4b521415d42650a0da515114aa36ab88,220,20:59:20:00:28:01,AND-2CT-0101,48134e6047a19a01,aa44e258a4e1e001
rebootResponseTopic,48134e6047a19a02,AND-2CT-0102,CN-2CT-UBAINS,6828f107eddcd6c80537e554f1ba6393,221,20:59:20:00:28:02,AND-2CT-0102,48134e6047a19a02,aa44e258a4e1e002
rebootResponseTopic,48134e6047a19a03,AND-2CT-0103,CN-2CT-UBAINS,694eba1b6f1995d4f7c085c77788ca68,222,20:59:20:00:28:03,AND-2CT-0103,48134e6047a19a03,aa44e258a4e1e003
rebootResponseTopic,48134e6047a19a04,AND-2CT-0104,CN-2CT-UBAINS,acab665450c5bb91e11881e749934b63,223,20:59:20:00:28:04,AND-2CT-0104,48134e6047a19a04,aa44e258a4e1e004
rebootResponseTopic,48134e6047a19a05,AND-2CT-0105,CN-2CT-UBAINS,842380cf2573785aa3e74f61c3921e1b,224,20:59:20:00:28:05,AND-2CT-0105,48134e6047a19a05,aa44e258a4e1e005
rebootResponseTopic,48134e6047a19a06,AND-2CT-0106,CN-2CT-UBAINS,4c02ca0fc3f0947ab2658b6d6b98bbfc,225,20:59:20:00:28:06,AND-2CT-0106,48134e6047a19a06,aa44e258a4e1e006
rebootResponseTopic,48134e6047a19a07,AND-2CT-0107,CN-2CT-UBAINS,24d712de79b9907304874c1ab158cbab,226,20:59:20:00:28:07,AND-2CT-0107,48134e6047a19a07,aa44e258a4e1e007
rebootResponseTopic,48134e6047a19a08,AND-2CT-0108,CN-2CT-UBAINS,ef89042cce57dab36475a32f86d515b1,227,20:59:20:00:28:08,AND-2CT-0108,48134e6047a19a08,aa44e258a4e1e008
rebootResponseTopic,48134e6047a19a09,AND-2CT-0109,CN-2CT-UBAINS,278b2caed091574f88673c784e2e3c70,228,20:59:20:00:28:09,AND-2CT-0109,48134e6047a19a09,aa44e258a4e1e009
rebootResponseTopic,48134e6047a19a10,AND-2CT-0110,CN-2CT-UBAINS,d1f392aaa472a42399a2e071298ffca8,229,20:59:20:00:28:10,AND-2CT-0110,48134e6047a19a10,aa44e258a4e1e010
rebootResponseTopic,48134e6047a19a11,AND-2CT-0111,CN-2CT-UBAINS,67ff1af148c6c09ee380a2160b14dd47,230,20:59:20:00:28:11,AND-2CT-0111,48134e6047a19a11,aa44e258a4e1e011
rebootResponseTopic,48134e6047a19a12,AND-2CT-0112,CN-2CT-UBAINS,c80b3f6669bae8acce37f4902a0243b8,231,20:59:20:00:28:12,AND-2CT-0112,48134e6047a19a12,aa44e258a4e1e012
rebootResponseTopic,48134e6047a19a13,AND-2CT-0113,CN-2CT-UBAINS,0b94554e203736514af9de41d68b5f37,232,20:59:20:00:28:13,AND-2CT-0113,48134e6047a19a13,aa44e258a4e1e013
rebootResponseTopic,48134e6047a19a14,AND-2CT-0114,CN-2CT-UBAINS,dc7c8d24f0e2b5e545223199dc76818b,233,20:59:20:00:28:14,AND-2CT-0114,48134e6047a19a14,aa44e258a4e1e014
rebootResponseTopic,48134e6047a19a15,AND-2CT-0115,CN-2CT-UBAINS,0a5846605b9d3b99a6623b8230870a5b,234,20:59:20:00:28:15,AND-2CT-0115,48134e6047a19a15,aa44e258a4e1e015
rebootResponseTopic,48134e6047a19a16,AND-2CT-0116,CN-2CT-UBAINS,5b5801447c15748408fa4ca6e2277f5a,235,20:59:20:00:28:16,AND-2CT-0116,48134e6047a19a16,aa44e258a4e1e016
rebootResponseTopic,48134e6047a19a17,AND-2CT-0117,CN-2CT-UBAINS,968c3946b598c7bb6419ac496c2000f4,236,20:59:20:00:28:17,AND-2CT-0117,48134e6047a19a17,aa44e258a4e1e017
rebootResponseTopic,48134e6047a19a18,AND-2CT-0118,CN-2CT-UBAINS,24437bdc20f50f62d353e432899e6c87,237,20:59:20:00:28:18,AND-2CT-0118,48134e6047a19a18,aa44e258a4e1e018
rebootResponseTopic,48134e6047a19a19,AND-2CT-0119,CN-2CT-UBAINS,5409a552f9c917b486d48df5912da1de,238,20:59:20:00:28:19,AND-2CT-0119,48134e6047a19a19,aa44e258a4e1e019
rebootResponseTopic,48134e6047a19a20,AND-2CT-0120,CN-2CT-UBAINS,9c6e5bdce14c3af47d6427e69a70a680,239,20:59:20:00:28:20,AND-2CT-0120,48134e6047a19a20,aa44e258a4e1e020
rebootResponseTopic,48134e6047a19a21,AND-2CT-0121,CN-2CT-UBAINS,5d3637f9a2137ca91fae4cfa9eb14161,240,20:59:20:00:28:21,AND-2CT-0121,48134e6047a19a21,aa44e258a4e1e021
rebootResponseTopic,48134e6047a19a22,AND-2CT-0122,CN-2CT-UBAINS,4c8f155cacbeaeae83c6599fc119f731,241,20:59:20:00:28:22,AND-2CT-0122,48134e6047a19a22,aa44e258a4e1e022
rebootResponseTopic,48134e6047a19a23,AND-2CT-0123,CN-2CT-UBAINS,a1c1e33712c298ff68b1bea640d03027,242,20:59:20:00:28:23,AND-2CT-0123,48134e6047a19a23,aa44e258a4e1e023
rebootResponseTopic,48134e6047a19a24,AND-2CT-0124,CN-2CT-UBAINS,1e0f1843056a1c4a45a80b7edad52f04,243,20:59:20:00:28:24,AND-2CT-0124,48134e6047a19a24,aa44e258a4e1e024
rebootResponseTopic,48134e6047a19a25,AND-2CT-0125,CN-2CT-UBAINS,a4b52db6122128240c922b3ee9b4abed,244,20:59:20:00:28:25,AND-2CT-0125,48134e6047a19a25,aa44e258a4e1e025
rebootResponseTopic,48134e6047a19a26,AND-2CT-0126,CN-2CT-UBAINS,f1b2d3698a082def3c7253ab0204e2e8,245,20:59:20:00:28:26,AND-2CT-0126,48134e6047a19a26,aa44e258a4e1e026
rebootResponseTopic,48134e6047a19a27,AND-2CT-0127,CN-2CT-UBAINS,fbbd92eb329781f78d5a3cc0f077b0d0,246,20:59:20:00:28:27,AND-2CT-0127,48134e6047a19a27,aa44e258a4e1e027
rebootResponseTopic,48134e6047a19a28,AND-2CT-0128,CN-2CT-UBAINS,b5c4ec7f5febbe786775b6a4e69b0d13,247,20:59:20:00:28:28,AND-2CT-0128,48134e6047a19a28,aa44e258a4e1e028
rebootResponseTopic,48134e6047a19a29,AND-2CT-0129,CN-2CT-UBAINS,35dc71aa75e70725cb239052a2f17c36,248,20:59:20:00:28:29,AND-2CT-0129,48134e6047a19a29,aa44e258a4e1e029
rebootResponseTopic,48134e6047a19a30,AND-2CT-0130,CN-2CT-UBAINS,63fdb9a82a270e58f5e3bb7b64da43d9,249,20:59:20:00:28:30,AND-2CT-0130,48134e6047a19a30,aa44e258a4e1e031
/uams/android/broadcast,,,,,,,,48134e6047a19a01,aa44e258a4e1e001
/uams/android/broadcast,,,,,,,,48134e6047a19a02,aa44e258a4e1e002
/uams/android/broadcast,,,,,,,,48134e6047a19a03,aa44e258a4e1e003
/uams/android/broadcast,,,,,,,,48134e6047a19a04,aa44e258a4e1e004
/uams/android/broadcast,,,,,,,,48134e6047a19a05,aa44e258a4e1e005
/uams/android/broadcast,,,,,,,,48134e6047a19a06,aa44e258a4e1e006
/uams/android/broadcast,,,,,,,,48134e6047a19a07,aa44e258a4e1e007
/uams/android/broadcast,,,,,,,,48134e6047a19a08,aa44e258a4e1e008
/uams/android/broadcast,,,,,,,,48134e6047a19a09,aa44e258a4e1e009
/uams/android/broadcast,,,,,,,,48134e6047a19a10,aa44e258a4e1e010
/uams/android/broadcast,,,,,,,,48134e6047a19a11,aa44e258a4e1e011
/uams/android/broadcast,,,,,,,,48134e6047a19a12,aa44e258a4e1e012
/uams/android/broadcast,,,,,,,,48134e6047a19a13,aa44e258a4e1e013
/uams/android/broadcast,,,,,,,,48134e6047a19a14,aa44e258a4e1e014
/uams/android/broadcast,,,,,,,,48134e6047a19a15,aa44e258a4e1e015
/uams/android/broadcast,,,,,,,,48134e6047a19a16,aa44e258a4e1e016
/uams/android/broadcast,,,,,,,,48134e6047a19a17,aa44e258a4e1e017
/uams/android/broadcast,,,,,,,,48134e6047a19a18,aa44e258a4e1e018
/uams/android/broadcast,,,,,,,,48134e6047a19a19,aa44e258a4e1e019
/uams/android/broadcast,,,,,,,,48134e6047a19a20,aa44e258a4e1e020
/uams/android/broadcast,,,,,,,,48134e6047a19a21,aa44e258a4e1e021
/uams/android/broadcast,,,,,,,,48134e6047a19a22,aa44e258a4e1e022
/uams/android/broadcast,,,,,,,,48134e6047a19a23,aa44e258a4e1e023
/uams/android/broadcast,,,,,,,,48134e6047a19a24,aa44e258a4e1e024
/uams/android/broadcast,,,,,,,,48134e6047a19a25,aa44e258a4e1e025
/uams/android/broadcast,,,,,,,,48134e6047a19a26,aa44e258a4e1e026
/uams/android/broadcast,,,,,,,,48134e6047a19a27,aa44e258a4e1e027
/uams/android/broadcast,,,,,,,,48134e6047a19a28,aa44e258a4e1e028
/uams/android/broadcast,,,,,,,,48134e6047a19a29,aa44e258a4e1e029
/uams/android/broadcast,,,,,,,,48134e6047a19a30,aa44e258a4e1e031
\ No newline at end of file
from hytest import *
# 获取当前脚本的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建预定系统的绝对路径
base_path = os.path.abspath(os.path.join(current_dir, '..','..'))
# 添加路径
sys.path.append(base_path)
# 导入模块
try:
from MQTT通用工具.base.Mqtt_Send import *
except ModuleNotFoundError as e:
print(f"ModuleNotFoundError: {e}")
print("尝试使用绝对路径导入")
from MQTT通用工具.base.Mqtt_Send import *
# 获取当前脚本所在的目录
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建CSV文件的绝对路径
csv_file_path = os.path.join(current_dir, '../测试数据/预定系统-毫米波雷达/MQTT毫米波调试.csv')
if __name__ == "__main__":
# 读取配置文件
configs = Mqtt.read_config_from_csv(csv_file_path)
broker_address = "192.168.1.131"
port = 1881
num_repeats = 2000 # 重复执行的次数
interval_between_repeats = 1 # 每次重复之间的间隔时间(秒)
# 创建 MQTT 客户端实例-
mqtt_client = Mqtt(broker_address, port)
try:
# 连接到 MQTT 服务器
mqtt_client.connect()
for repeat in range(num_repeats):
logging.info(f"开始第 {repeat + 1} 次上报")
# 遍历配置文件中的每一行数据
for config in configs:
# 构建消息内容
topic = config["topic"]
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
message = Mqtt.build_message(config, current_time, topic)
logging.info(message)
# 发送消息
mqtt_client.publish(topic, message)
# 每次发送之间可以设置一个间隔时间
time.sleep(interval_between_repeats)
# 每次重复之间设置一个间隔时间
time.sleep(interval_between_repeats)
except Exception as e:
logging.error(f"发送消息时发生错误: {e}")
finally:
# 断开与 MQTT 服务器的连接
mqtt_client.disconnect()
import paho.mqtt.client as mqtt
import logging
# 配置日志
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
# MQTT 客户端回调函数
def on_connect(client, userdata, flags, rc):
logging.info("已连接到MQTT服务器")
# 订阅多个主题
topics = ["/androidPanel/", "/uams/android/broadcast", "/material/client/79f18c1a9a3bcfb1/"]
for t in topics:
client.subscribe(t)
def on_message(client, userdata, msg):
logging.info(f"接收到消息: 主题={msg.topic}, 消息体={msg.payload.decode()}")
if __name__ == "__main__":
# 5.218测试环境 192.168.5.218 1883
broker_address = "nat.ubainsyun.com"
port = 18685
# 创建 MQTT 客户端实例
mqtt_client = mqtt.Client()
# 设置回调函数
mqtt_client.on_connect = on_connect
mqtt_client.on_message = on_message
try:
# 连接到 MQTT 服务器
mqtt_client.connect(broker_address, port)
# 启动网络循环
mqtt_client.loop_forever()
except Exception as e:
logging.error(f"连接MQTT服务器时发生错误: {e}")
finally:
# 断开与 MQTT 服务器的连接
mqtt_client.disconnect()
\ No newline at end of file
from hytest import *
# 获取当前脚本的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建预定系统的绝对路径
base_path = os.path.abspath(os.path.join(current_dir, '..','..'))
# 添加路径
sys.path.append(base_path)
# 导入模块
try:
from MQTT通用工具.base.Mqtt_Send import *
except ModuleNotFoundError as e:
print(f"ModuleNotFoundError: {e}")
print("尝试使用绝对路径导入")
from MQTT通用工具.base.Mqtt_Send import *
# 获取当前脚本所在的目录
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建CSV文件的绝对路径
csv_file_path = os.path.join(current_dir, '../测试数据/预定系统-门口屏/MQTT安卓上报与心跳上报.csv')
if __name__ == "__main__":
# 读取配置文件
configs = Mqtt.read_config_from_csv(csv_file_path)
broker_address = "192.168.5.218"
port = 1883
num_repeats = 100 # 重复执行的次数
interval_between_repeats = 0.2 # 每次重复之间的间隔时间(秒)
# 创建 MQTT 客户端实例
mqtt_client = Mqtt(broker_address, port)
try:
# 连接到 MQTT 服务器
mqtt_client.connect()
logging.info('连接成功')
for repeat in range(num_repeats):
logging.info(f"开始第 {repeat + 1} 次上报")
# 遍历配置文件中的每一行数据
for config in configs:
# 构建消息内容-
# 构建消息内容
topic = config["topic"]
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
logging.info(config)
message = Mqtt.build_message(config, current_time, topic)
# 发送消息
mqtt_client.publish(topic, message)
# 每次发送之间可以设置一个间隔时间
time.sleep(interval_between_repeats)
# 每次重复之间设置一个间隔时间
time.sleep(interval_between_repeats)
except Exception as e:
logging.error(f"发送消息时发生错误: {e}")
finally:
# 断开与 MQTT 服务器的连接
mqtt_client.disconnect()
\ No newline at end of file
...@@ -158,13 +158,13 @@ def safe_send_keys(element_locator, value, wd): ...@@ -158,13 +158,13 @@ def safe_send_keys(element_locator, value, wd):
element.send_keys(value) # 向元素发送指定的键值 element.send_keys(value) # 向元素发送指定的键值
except TimeoutException: except TimeoutException:
# 如果元素在指定时间内未被找到或不可点击,打印超时异常信息 # 如果元素在指定时间内未被找到或不可点击,打印超时异常信息
print(f"TimeoutException: Element {element_locator} not found or not clickable within 20 seconds.") INFO(f"TimeoutException: Element {element_locator} not found or not clickable within 20 seconds.")
except NoSuchElementException: except NoSuchElementException:
# 如果元素不存在,打印相应异常信息 # 如果元素不存在,打印相应异常信息
print(f"NoSuchElementException: Element {element_locator} not found.") INFO(f"NoSuchElementException: Element {element_locator} not found.")
except ElementNotInteractableException: except ElementNotInteractableException:
# 如果元素不可交互,打印相应异常信息 # 如果元素不可交互,打印相应异常信息
print(f"ElementNotInteractableException: Element {element_locator} is not interactable.") INFO(f"ElementNotInteractableException: Element {element_locator} is not interactable.")
def safe_click(element_locator, wd): def safe_click(element_locator, wd):
""" """
......
...@@ -127,4 +127,5 @@ ...@@ -127,4 +127,5 @@
- 补充历史会议模块中会议筛选功能的自动化验证处理。 - 补充历史会议模块中会议筛选功能的自动化验证处理。
26. 2024-12-24 26. 2024-12-24
- 根据实际使用时巡检人员的反馈进行调整,定位会控按钮时增加判断,如定位不到即会控创建失败。 - 根据实际使用时巡检人员的反馈进行调整,定位会控按钮时增加判断,如定位不到即会控创建失败。
- 调整巡检的执行时间。 - 调整巡检的执行时间。
\ No newline at end of file - 拆分出MQTT通用工具目录,用于后续开发测试人员进行模拟设备调试以及MQTT相关的程序验证。
\ No newline at end of file
执行 checkFirewalld:
防火墙状态:未启动
=============================================================================================
执行 checkService:
[m]ysql 服务正常
[r]edis 服务正常
[f]dfs_storaged 服务正常
[f]dfs_tracker 服务正常
[e]mqx 服务正常
ubains-meeting-api-1.0-SNAPSHOT.jar 服务正常
[u]bains-meeting-inner-api-1.0-SNAPSHOT.jar 服务正常
[u]wsgi 服务正常
=============================================================================================
执行 checkDockerPort:
upython :::8000->8000/tcp,
upython :::8002->8002/tcp,
upython :::8081->8081/tcp,
upython :::8443->8443/tcp,
upython :::9009->9009/tcp
uplayer :::18000->8000/tcp,
uplayer :::18002->8002/tcp,
uplayer :::18081->8081/tcp,
uplayer :::18082->8082/tcp
umysql2 :::8306->3306/tcp
ujava2 :::443->443/tcp,
ujava2 :::554->554/tcp,
ujava2 :::1935->1935/tcp,
ujava2 :::2333-2334->2333-2334/tcp,
ujava2 :::8079-8080->8079-8080/tcp,
ujava2 :::8085-8088->8085-8088/tcp,
ujava2 :::8889->8889/tcp,
ujava2 :::8996-8999->8996-8999/tcp,
ujava2 :::10000->10000/tcp,
uredis :::6379->6379/tcp
uemqx :::1883->1883/tcp,
uemqx :::8083-8084->8083-8084/tcp,
uemqx :::8883->8883/tcp,
uemqx :::18083->18083/tcp,
=============================================================================================
执行 serverDataRecorder:
2024-12-20 09:59:03 [INFO] docker服务正常
2024-12-20 09:59:03 [INFO] [m]ysql 服务正常
2024-12-20 09:59:03 [INFO] [r]edis 服务正常
2024-12-20 09:59:03 [INFO] [f]dfs_storaged 服务正常
2024-12-20 09:59:03 [INFO] [f]dfs_tracker 服务正常
2024-12-20 09:59:03 [INFO] [e]pmd 服务正常
2024-12-20 09:59:03 [INFO] [u]wsgi 服务正常
2024-12-20 09:59:03 [INFO] ubains-meeting-api-1.0-SNAPSHOT.jar 服务正常
2024-12-20 09:59:03 [INFO] [u]bains-meeting-inner-api-1.0-SNAPSHOT.jar 服务正常
=============================================================================================
执行 network_check:
Called network_check with parameters: network_check route
网络流量和连接信息 - 2024-12-20 09:59:03
路由配置表信息:
default via 192.168.5.1 dev enp4s1 proto static metric 100
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1
192.168.5.0/24 dev enp4s1 proto kernel scope link src 192.168.5.218 metric 100
=============================================================================================
执行 network_check:
Called network_check with parameters: network_check interface
网络流量和连接信息 - 2024-12-20 09:59:03
网络接口状态、MAC 和 IPv4 地址:
RTNETLINK answers: No such device
Cannot send link get request: No such device
lo:
状态: UNKNOWN
MAC地址:
IPv4地址: 127.0.0.1/8
RTNETLINK answers: No such device
Cannot send link get request: No such device
enp4s1:
状态: UP
MAC地址:
IPv4地址: 192.168.5.218/24
RTNETLINK answers: No such device
Cannot send link get request: No such device
docker0:
状态: UP
MAC地址:
IPv4地址: 172.17.0.1/16
=============================================================================================
执行 network_check:
Called network_check with parameters: network_check connections
网络流量和连接信息 - 2024-12-20 09:59:03
网络连接和端口统计:
Netid State Local
tcp LISTEN 0.0.0.0:8085
tcp LISTEN 0.0.0.0:8086
tcp LISTEN 0.0.0.0:22
tcp LISTEN 0.0.0.0:8087
tcp LISTEN 0.0.0.0:8088
tcp LISTEN 0.0.0.0:23000
tcp LISTEN 0.0.0.0:8888
tcp LISTEN 0.0.0.0:8889
tcp LISTEN 0.0.0.0:8443
tcp LISTEN 0.0.0.0:443
tcp LISTEN 0.0.0.0:1883
tcp LISTEN 0.0.0.0:2333
tcp LISTEN 0.0.0.0:2334
tcp LISTEN 0.0.0.0:8000
tcp LISTEN 0.0.0.0:18081
tcp LISTEN 0.0.0.0:8002
tcp LISTEN 0.0.0.0:18082
tcp LISTEN 0.0.0.0:18083
tcp LISTEN 0.0.0.0:8996
tcp LISTEN 0.0.0.0:8997
tcp LISTEN 0.0.0.0:8998
tcp LISTEN 0.0.0.0:8999
tcp LISTEN 0.0.0.0:554
tcp LISTEN 0.0.0.0:22122
tcp LISTEN 0.0.0.0:6379
tcp LISTEN 0.0.0.0:1935
tcp LISTEN 0.0.0.0:8079
tcp LISTEN 0.0.0.0:111
tcp LISTEN 0.0.0.0:80
tcp LISTEN 0.0.0.0:8080
tcp LISTEN 0.0.0.0:10000
tcp LISTEN 0.0.0.0:18000
tcp LISTEN 0.0.0.0:8081
tcp LISTEN 0.0.0.0:9009
tcp LISTEN 0.0.0.0:8306
tcp LISTEN 0.0.0.0:18002
tcp LISTEN 0.0.0.0:8083
tcp LISTEN 0.0.0.0:8883
tcp LISTEN 0.0.0.0:8084
tcp LISTEN *:4443
tcp LISTEN *:8866
tcp LISTEN *:9090
tcp LISTEN *:8040
tcp LISTEN *:12371
tcp LISTEN *:11443
=============================================================================================
执行 network_check:
Called network_check with parameters: network_check firewall
网络流量和连接信息 - 2024-12-20 09:59:03
防火墙规则:
Chain INPUT (policy ACCEPT 1878K packets, 952M bytes)
pkts bytes target prot opt in out source destination
Chain FORWARD (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
22M 19G DOCKER-USER all -- * * 0.0.0.0/0 0.0.0.0/0
22M 19G DOCKER-ISOLATION-STAGE-1 all -- * * 0.0.0.0/0 0.0.0.0/0
11M 5221M ACCEPT all -- * docker0 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED
137K 7342K DOCKER all -- * docker0 0.0.0.0/0 0.0.0.0/0
11M 14G ACCEPT all -- docker0 !docker0 0.0.0.0/0 0.0.0.0/0
0 0 ACCEPT all -- docker0 docker0 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT 1834K packets, 947M bytes)
pkts bytes target prot opt in out source destination
Chain DOCKER (1 references)
pkts bytes target prot opt in out source destination
85 4420 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.4 tcp dpt:6379
82 4264 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.6 tcp dpt:8082
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.6 tcp dpt:8081
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.6 tcp dpt:8002
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.6 tcp dpt:8000
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.2 tcp dpt:18083
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.2 tcp dpt:8883
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.2 tcp dpt:8084
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.2 tcp dpt:8083
105 5740 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.2 tcp dpt:1883
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:10000
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8999
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8998
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8997
85 5100 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8996
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8889
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8088
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8087
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8086
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8085
7 364 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8080
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:8079
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:2334
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:2333
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:1935
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:554
584 37534 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.5 tcp dpt:443
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.7 tcp dpt:9009
1593 82836 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.7 tcp dpt:8443
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.7 tcp dpt:8081
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.7 tcp dpt:8002
2036 106K ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.7 tcp dpt:8000
0 0 ACCEPT tcp -- !docker0 docker0 0.0.0.0/0 172.17.0.3 tcp dpt:3306
Chain DOCKER-ISOLATION-STAGE-1 (1 references)
pkts bytes target prot opt in out source destination
11M 14G DOCKER-ISOLATION-STAGE-2 all -- docker0 !docker0 0.0.0.0/0 0.0.0.0/0
22M 19G RETURN all -- * * 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-ISOLATION-STAGE-2 (1 references)
pkts bytes target prot opt in out source destination
0 0 DROP all -- * docker0 0.0.0.0/0 0.0.0.0/0
11M 14G RETURN all -- * * 0.0.0.0/0 0.0.0.0/0
Chain DOCKER-USER (1 references)
pkts bytes target prot opt in out source destination
22M 19G RETURN all -- * * 0.0.0.0/0 0.0.0.0/0
=============================================================================================
执行 network_check:
Called network_check with parameters: network_check docker
网络流量和连接信息 - 2024-12-20 09:59:03
docker网络规则与MAC地址:
[
{
"Name": "bridge",
"Id": "8a099c24b4ce2392ffc682dd9ac9335abb6b70662798a35743fbcc3fb7d79982",
"Created": "2024-11-04T18:00:09.914749565+08:00",
"Scope": "local",
"Driver": "bridge",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": null,
"Config": [
{
"Subnet": "172.17.0.0/16",
"Gateway": "172.17.0.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {
"0349f1053421e48b415b0f4a6758df194a47616a309481fdfdae664c5e7bf1f3": {
"Name": "upython",
"EndpointID": "ea30a5f6b1bf305a3c10ac3a3d6c44503bb5c840c3aa1dbf49f30dc438125847",
"MacAddress": "02:42:ac:11:00:06",
"IPv4Address": "172.17.0.7/16",
"IPv6Address": ""
},
"23fbc1ed599f77c7562756d38d4e655d31a96a9a47978888629c50e556cc60ee": {
"Name": "umysql2",
"EndpointID": "4bb52b2d978dc90c57e0b5a89c623f6df8e4e844ac4bea45d385a9005386e72f",
"MacAddress": "02:42:ac:11:00:05",
"IPv4Address": "172.17.0.3/16",
"IPv6Address": ""
},
"8f87e78e4e9b419744799f32be396ebd55d0da21a7845d6854f3152cdd7e70da": {
"Name": "uemqx",
"EndpointID": "41cd86845237b7c2117b19b3cc28c9660fc5be6086e33562b2ce0c3d5de95793",
"MacAddress": "02:42:ac:12:00:06",
"IPv4Address": "172.17.0.2/16",
"IPv6Address": ""
},
"9672005cfb3ceb4b26f8b58c317e2068e4f8b5508d7980873de3e6c1d71eda58": {
"Name": "uplayer",
"EndpointID": "43f4647ffd479f2460af5e63780695d1646e30a4b171aaab4056a29c931345ee",
"MacAddress": "02:42:ac:11:00:06",
"IPv4Address": "172.17.0.6/16",
"IPv6Address": ""
},
"b67149b24bb5d2ad2bc0c74dde784958c98ae1f10b5c3dee4eadd00787951b50": {
"Name": "uredis",
"EndpointID": "c978bb8d32e421565522bd85d16834c774aa49409588cb58df9aaba91d70fd3a",
"MacAddress": "02:42:ac:11:00:04",
"IPv4Address": "172.17.0.4/16",
"IPv6Address": ""
},
"e960786c759c953ab039a7dd72c72e789f7dc479cd42fed0ba9e5b5e1016d0bd": {
"Name": "ujava2",
"EndpointID": "5a4d8667c5fe60eeebe2966731029c0d77e998cceba972c353e38884613dbde5",
"MacAddress": "02:42:ac:11:00:02",
"IPv4Address": "172.17.0.5/16",
"IPv6Address": ""
}
},
"Options": {
"com.docker.network.bridge.default_bridge": "true",
"com.docker.network.bridge.enable_icc": "true",
"com.docker.network.bridge.enable_ip_masquerade": "true",
"com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
"com.docker.network.bridge.name": "docker0",
"com.docker.network.driver.mtu": "1500"
},
"Labels": {}
}
]
=============================================================================================
执行 analyzePosition:
服务器状态分析 - getMysqlStatus
参数2: Ubains@123
Error response from daemon: Container 09e2052db0540c47415193204c94fa2c71c0676375476b349de862936bbe1901 is not running
执行SQL语句时发生错误:
创建表失败
Error response from daemon: Container 09e2052db0540c47415193204c94fa2c71c0676375476b349de862936bbe1901 is not running
执行SQL语句时发生错误:
插入记录失败
Error response from daemon: Container 09e2052db0540c47415193204c94fa2c71c0676375476b349de862936bbe1901 is not running
执行SQL语句时发生错误:
查询记录失败
Error response from daemon: Container 09e2052db0540c47415193204c94fa2c71c0676375476b349de862936bbe1901 is not running
执行SQL语句时发生错误:
更新记录失败
Error response from daemon: Container 09e2052db0540c47415193204c94fa2c71c0676375476b349de862936bbe1901 is not running
执行SQL语句时发生错误:
删除记录失败
=============================================================================================
执行 analyzePosition:
服务器状态分析 - getRedisStatus
参数2: Ubains@123
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
response 为: PONG
Redis 服务器连接成功
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
set_response 为: OK
Redis 服务器设置成功
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
get_response 为: test_value
Redis 服务器获取成功
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
del_response 为: 1
Redis 服务器删除成功
=============================================================================================
执行 analyzePosition:
服务器状态分析 - getFastdfsStatus
参数2: analyzePosition getFastdfsStatus
fastdfs文件上传成功
=============================================================================================
执行 analyzePosition:
服务器状态分析 - getNginxStatus
参数2: analyzePosition getNginxStatus
Nginx配置文件正确
HTTP 响应代码: 200
HTTP请求正常
=============================================================================================
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论