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
+11
View File
@@ -0,0 +1,11 @@
if __name__ == '__main__':
start_index = 5555
end_index = 5734
start_ip_subfix = 3
for index,item in enumerate(range(start_index, end_index + 1)):
print('START TRANSACTION;')
print(f"UPDATE port_keys SET out_ip = '45.86.235.{start_ip_subfix + index}' WHERE `port` = {item};")
print('COMMIT;')