银狐NetDevOps-网络运维python之NETCONF(二
1、需求
使用ncclient抓取juniper设备端口状态。
2、操作环境
操作系统:Linux CentOS 7.4
python版本:python 3.8
网络设备:Juniper mx204
编辑器:vscode
3、整体代码
#!/usr/bin/env python
import sys
from ncclient import manager
def connect(host, port, user, password):
conn = manager.connect(host=host,
port=port,
username=user,
password=password,
timeout=60,
device_params={'name': 'junos'},
hostkey_verify=False)
rpc_command = "<get-interface-information><terse/></get-interface-information>"
response = conn.rpc(rpc_command)
interface_name = response.xpath('//physical-interface/name')
interface_status = response.xpath('//physical-interface/oper-status')
for name, status in zip(interface_name, interface_status):
name = name.text.split('\\n')[1]
status = status.text.split('\\n')[1]
print(name,status)
if __name__ == '__main__':
connect('172.26.3.169', 22, 'user', 'passwd')
执行结果
et-0/0/0 up
lc-0/0/0 up
pfe-0/0/0 up
pfh-0/0/0 up
et-0/0/1 up
et-0/0/2 down
et-0/0/3 down
xe-0/1/0 up
xe-0/1/1 up
xe-0/1/2 down
xe-0/1/3 up
xe-0/1/4 up
xe-0/1/5 up
xe-0/1/6 up
xe-0/1/7 up
4、代码详解
import sys
from ncclient import manager
导入ncclient的manager方法
def connect(host, port, user, password):
conn = manager.connect(host=host,
port=port,
username=user,
password=password,
timeout=60,
device_params={'name': 'junos'},
hostkey_verify=False)
创建connect函数,使用manager.connect连接juniper设备
需要把device_params={'name': 'junos'},改为junos
rpc_command = "<get-interface-information><terse/></get-interface-information>"
juniper支持rpc command,不需要像华为那样找XML文档,直接登陆设备输入show命令加管道符和display xml rpc就能得到rpc command,如下所示:
show interfaces terse | display xml rpc
<rpc-reply xmlns:junos="<http://xml.juniper.net/junos/19.4R0/junos>">
<rpc>
<get-interface-information>
<terse/>
</get-interface-information>
</rpc>
<cli>
<banner></banner>
</cli>
</rpc-reply>
response = conn.rpc(rpc_command)
interface_name = response.xpath('//physical-interface/name')
interface_status = response.xpath('//physical-interface/oper-status')
response = conn.rpc(rpc_command)发起rpc请求,并接受response。
并用xpath将返回的内容解析,XPath 是一门在 XML 文档中查找信息的语言,
基础内容可直接查看https://www.runoob.com/xpath/xpath-intro.html
这俩我们主要使用2个表达式
表达式 XMLinterface_name = response.xpath('//physical-interface/name')
//physical-interface,不考虑节点位置,全量内容直接查找physical-interface对应的位置(箭头一),/name查找下一层级(剪头二)的<name>节点。
这时如果我们直接打印interface_name
print(interface_name)
print(type(interface_name))
结果是
[<Element name at 0x7f4502f44c08>]
<class 'list'>
返回的数据类型是list,这个很好理解,因为返回的XML内容中同样的标签(比如接口名称)其实有很多(比如1口、2口、3口),所以需要返回list给我们。
但是这个list内容无法直接就打印出来,因为xpath抓取的是标签属性值,而非标签内容,如果要打印标签内容需要.text。
for name, status in zip(interface_name, interface_status):
name = name.text.split('\\n')[1]
status = status.text.split('\\n')[1]
print(name,status)
for循环将name和status提取出来,zip() 函数用于将可迭代的对象作为参数,这里需要将对象中对应的元素打包成一个个元组,让每一个接口名称==接口状态对应上。
刚才提过,想获取标签内容需要.text方法,
name = name.text返回的结果是类似(['', 'et-0/0/0', ''])的列表,这里我们需要做下分片处理,并获取索引[1]的内容。
if __name__ == '__main__':
connect('172.26.3.169', 22, 'user', 'passwd')
主程序就没啥可说的了。
以上只是juniper-ncclient的简单应用,实际生产环境还有更多的用处,每个环境场景不用,可以做不同的处理。