IT评测·应用市场-qidao123.com

标题: 思科(Cisco)和华三(H3C)互换机的Python巡检脚本 [打印本页]

作者: 杀鸡焉用牛刀    时间: 2025-2-18 16:41
标题: 思科(Cisco)和华三(H3C)互换机的Python巡检脚本
1. 安装依赖

 pip install paramiko2. Python脚本

import paramiko
import time
# 设备列表,包罗IP地点、用户名、密码、设备类型(cisco或h3c)
devices = [
    {'ip': '192.168.1.1', 'username': 'admin', 'password': 'cisco123', 'type': 'cisco'},
    {'ip': '192.168.1.2', 'username': 'admin', 'password': 'h3c123', 'type': 'h3c'},
    # 添加更多设备
]
# 定义下令字典,根据设备类型执行不同的下令
commands = {
    'cisco': {
        'cpu': 'show processes cpu',
        'memory': 'show processes memory',
        'logs': 'show logging',
        'version': 'show version',
        'interfaces': 'show ip interface brief',
        'hardware': 'show environment'
    },
    'h3c': {
        'cpu': 'display cpu-usage',
        'memory': 'display memory',
        'logs': 'display logbuffer',
        'version': 'display version',
        'interfaces': 'display interface brief',
        'hardware': 'display device'
    }
}
def ssh_connect(ip, username, password):
    """通过SSH连接到设备"""
    client = paramiko.SSHClient()
    client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    client.connect(ip, username=username, password=password)
    return client
def execute_command(client, command):
    """执行下令并返回输出"""
    stdin, stdout, stderr = client.exec_command(command)
    output = stdout.read().decode('utf-8')
    return output
def check_device(device):
    """检查设备状态"""
    ip = device['ip']
    username = device['username']
    password = device['password']
    device_type = device['type']
    print(f"正在检查设备: {ip} ({device_type})")
    try:
        client = ssh_connect(ip, username, password)
        # 检查CPU使用率
        cpu_command = commands[device_type]['cpu']
        cpu_output = execute_command(client, cpu_command)
        print(f"CPU使用率:\n{cpu_output}")
        # 检查内存使用率
        memory_command = commands[device_type]['memory']
        memory_output = execute_command(client, memory_command)
        print(f"内存使用率:\n{memory_output}")
        # 检查体系日记
        logs_command = commands[device_type]['logs']
        logs_output = execute_command(client, logs_command)
        print(f"体系日记:\n{logs_output}")
        # 检查体系版本
        version_command = commands[device_type]['version']
        version_output = execute_command(client, version_command)
        print(f"体系版本:\n{version_output}")
        # 检查接口状态
        interfaces_command = commands[device_type]['interfaces']
        interfaces_output = execute_command(client, interfaces_command)
        print(f"接口状态:\n{interfaces_output}")
        # 检查硬件状态(电源、风扇)
        hardware_command = commands[device_type]['hardware']
        hardware_output = execute_command(client, hardware_command)
        print(f"硬件状态:\n{hardware_output}")
        client.close()
    except Exception as e:
        print(f"连接设备 {ip} 失败: {e}")
def main():
    """主函数,遍历所有设备并检查"""
    for device in devices:
        check_device(device)
        print("-" * 40)  # 分隔线
if __name__ == "__main__":
    main()
 3. 脚本说明

4. 运行脚本

将脚本保存为switch_inspection.py,然后在终端中运行:
  python switch_inspection.py5. 注意事项

这个脚本是一个基础版本,各人可以根据实际需求举行扩展和优化。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4