1、需求
使用ncclient抓取juniper設備端口狀態(tài)犁跪。
2、操作環(huán)境
操作系統(tǒng):Linux CentOS 7.4
python版本:python 3.8
網(wǎng)絡設備: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')
執(zhí)行結(jié)果
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)
創(chuàng)建connect函數(shù)粟瞬,使用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)發(fā)起rpc請求俗批,并接受response。
并用xpath將返回的內(nèi)容解析市怎,XPath 是一門在 XML 文檔中查找信息的語言岁忘,
基礎(chǔ)內(nèi)容可直接查看https://www.runoob.com/xpath/xpath-intro.html
這倆我們主要使用2個表達式
interface_name = response.xpath('//physical-interface/name')
//physical-interface,不考慮節(jié)點位置,全量內(nèi)容直接查找physical-interface對應的位置(箭頭一),/name查找下一層級(剪頭二)的<name>節(jié)點区匠。
這時如果我們直接打印interface_name
print(interface_name)
print(type(interface_name))
結(jié)果是
[<Element name at 0x7f4502f44c08>]
<class 'list'>
返回的數(shù)據(jù)類型是list干像,這個很好理解,因為返回的XML內(nèi)容中同樣的標簽(比如接口名稱)其實有很多(比如1口驰弄、2口麻汰、3口),所以需要返回list給我們戚篙。
但是這個list內(nèi)容無法直接就打印出來什乙,因為xpath抓取的是標簽屬性值,而非標簽內(nèi)容已球,如果要打印標簽內(nèi)容需要.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循環(huán)將name和status提取出來,zip() 函數(shù)用于將可迭代的對象作為參數(shù)智亮,這里需要將對象中對應的元素打包成一個個元組忆某,讓每一個接口名稱==接口狀態(tài)對應上。
剛才提過阔蛉,想獲取標簽內(nèi)容需要.text方法弃舒,
name = name.text返回的結(jié)果是類似(['', 'et-0/0/0', ''])的列表,這里我們需要做下分片處理状原,并獲取索引[1]的內(nèi)容聋呢。
if __name__ == '__main__':
connect('172.26.3.169', 22, 'user', 'passwd')
主程序就沒啥可說的了。
以上只是juniper-ncclient的簡單應用颠区,實際生產(chǎn)環(huán)境還有更多的用處削锰,每個環(huán)境場景不用,可以做不同的處理毕莱。