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
+18
View File
@@ -0,0 +1,18 @@
from proxy_line.write_file import writ_json_file
if __name__ == '__main__':
root_path= "/Users/leonbob/workspace/project/langtu/lt/jsq/server-setting/new"
# 目标起始 ip
target_ip = "172.16.0.11"
# 文件起始序号
sart_index_num = 161
# 起始监听端口号
start_listen_port = 5715
# 文件总数
file_total_count = 20
writ_json_file(root_path, sart_index_num, file_total_count, target_ip, start_listen_port)