Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.23 KB

README-ZH.md

File metadata and controls

43 lines (30 loc) · 1.23 KB

PyPI PyPI

napalm-huawei-vrp English

NAPALM华为S系列园区网交换机驱动,支持S5700,S6700等.

介绍

这个驱动目前支持以下功能

  • get_facts(): 获取设备基础信息
  • cli(): 发送任何命令到设备中
  • get_lldp_neighbors(): 获取LLDP邻居信息
  • get_config(): 获取配置信息
  • is_active(): 设备是否可用
  • ping(): 从设备中ping远端设备
  • get_arp_table(): 获取设备APR表
  • get_mac_address_table(): 获取设备MAC地址表
  • get_interfaces(): 获取接口信息
  • get_interfaces_ip(): 获取接口IP信息
  • get_interfaces_counters(): 获取接口统计信息

如何安装

使用PIP来安装napalm-huawei-vrp

pip install napalm-huawei-vrp

快速开始

from napalm import get_network_driver
driver = get_network_driver('huawei_vrp')
device = driver(hostname='192.168.76.10', username='admin', password='this_is_not_a_secure_password')
device.open()

get_facts = device.get_facts()
print(get_facts)

send_command = device.cli(['dis ver', 'dis cu'])