s5启动文件配置

This commit is contained in:
leon_mac
2025-11-14 23:38:58 +08:00
parent d8b738d0b7
commit 86ce9cda87
9 changed files with 223 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
from proxy_line.write_file import writ_json_file
if __name__ == '__main__':
root_path= "/Users/leonbob/workspace/project/langtu/lt/jsq/server-setting/new"
# 文件起始序号
sart_index_num = 101
# 起始监听端口号
start_listen_port = 5655
# 目标ip
target_ip = "10.0.0.2"
file_total_count = 60
writ_json_file(root_path, target_ip, sart_index_num, start_listen_port, file_total_count)