赞
踩
- import redis
-
- # Redis连接信息
- redis_host = 'hostname'
- redis_port = 6379
- redis_password = 'passwd'
- redis_db = 5 # 选择数据库5
-
- # 连接到Redis服务器
- redis_client = redis.StrictRedis(
- host=redis_host, port=redis_port, password=redis_password, db=redis_db, decode_responses=True
- )
-
- # 选择数据库
- redis_client.select(redis_db)
-
- # IP 段为1.192.192.*
- base_ip = "1.192.192."
- start_range = 1
- end_range = 254
-
- # 将IP地址加入到Redis中
- for i in range(start_range, end_range + 1):
- ip_address = f"{base_ip}{i}"
- key = f'whiteKey:{ip_address}'
- redis_client.set(key, 1)
-
- print(f"成功将 {end_range} 个IP地址添加到Redis数据库5中,并设置对应的whiteKey。")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。