$python3Python3.5.2(default,Jul52016,12:43:10)[GCC5.4.020160609]onlinuxType"help","copyright","credits"or"license"formoreinformation.>>>>>>fromjnpr.junosimportDevice>>>dev=Device(host='172.16.0.1',user="root",password="vpls2016",port='830')>>>dev.open()Device(172.16.0.1)>>>print(dev.facts){'switch_style':'BRIDGE_DOMAIN','vc_capable':False,'version_info':junos.version_info(major=(16,1),type=R,minor=1,build=7),'fqdn':'router','version':'16.1R1.7','personality':'MX','model':'VMX','2RE':False,'ifd_style':'CLASSIC','serialnumber':'VM57DEF69785','master':'RE0','hostname':'router','version_RE0':'16.1R1.7','domain':None,'RE0':{'status':'OK','mastership_state':'master','last_reboot_reason':'Router rebooted after a normal shutdown.','up_time':'2 days, 23 hours, 31 minutes, 1 second','model':'RE-VMX'},'HOME':'/root','virtual':True}>>>
まぁこんな感じ。
情報収集
インデントが無くて少々汚いけど、Junosにログインして show vpls connections logical-system VPLS と同じ内容を取得します。
$python3Python3.5.2(default,Jul52016,12:43:10)[GCC5.4.020160609]onlinuxType"help","copyright","credits"or"license"formoreinformation.>>>fromlxmlimportetree>>>fromjnpr.junosimportDevice>>>dev=Device(host='172.16.0.1',user="root",password="vpls2016",port='830',gather_facts=False)>>>dev.open()Device(172.16.0.1)>>>print(dev.display_xml_rpc('show vpls connections logical-system VPLS',format='text'))<get-vpls-connection-information><logical-system>VPLS</logical-system></get-vpls-connection-information>>>>tree=dev.rpc.get_vpls_connection_information(logical_system="VPLS")>>>print(etree.tostring(tree).decode('utf-8'))<vpls-connection-information><instancestyle="normal"><instance-name>vpls2001</instance-name><edge-protection>Not-Primary</edge-protection><reference-site><local-site-id>vpls-site(1)</local-site-id><connectionheading="connection-site Type St Time last up # Up trans"><connection-id>2</connection-id><connection-type>rmt</connection-type><connection-status>Up</connection-status><last-change>Sep1822:25:432016</last-change><up-transitions>1</up-transitions><remote-pe>2.2.2.2</remote-pe><control-word>No</control-word><inbound-label>262146</inbound-label><outbound-label>262145</outbound-label><local-interface><interface-name>lsi.17826048</interface-name><interface-status>Up</interface-status><interface-encapsulation>VPLS</interface-encapsulation><profile-name/><profile-varset-name/><interface-description>Intf-vplsvpls2001localsite1remotesite2</interface-description></local-interface><vc-flow-label-transmit>No</vc-flow-label-transmit><vc-flow-label-receive>No</vc-flow-label-receive></connection></reference-site></instance></vpls-connection-information>>>>
dev.display_xml_rpc は、ルータで <command> | display xml rpc と打った時に返ってくる情報と同じです。
こんなの。
1
2
3
4
5
6
7
8
9
10
root@router> show interfaces | display xml rpc
<rpc-replyxmlns:junos="http://xml.juniper.net/junos/16.1R1/junos"><rpc><get-interface-information></get-interface-information></rpc><cli><banner></banner></cli></rpc-reply>