本文整理汇总了Python中pybvc.controller.controller.Controller.get_netconf_nodes_in_config方法的典型用法代码示例。如果您正苦于以下问题:Python Controller.get_netconf_nodes_in_config方法的具体用法?Python Controller.get_netconf_nodes_in_config怎么用?Python Controller.get_netconf_nodes_in_config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pybvc.controller.controller.Controller
的用法示例。
在下文中一共展示了Controller.get_netconf_nodes_in_config方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Controller
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_netconf_nodes_in_config [as 别名]
rundelay = 2
print "\n"
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("<<< Controller '%s:%s'" % (ctrlIpAddr, ctrlPortNum))
time.sleep(rundelay)
print "\n"
print ("<<< Get NETCONF Inventory Information")
time.sleep(rundelay)
result = ctrl.get_netconf_nodes_in_config()
status = result.get_status()
if(status.eq(STATUS.OK)):
netconf_ids = result.get_data()
else:
print ("\n")
print ("!!!Demo terminated, "
"failed to get list of NETCONF devices, "
"reason: %s" % status.brief())
exit(0)
print "\n"
print ("<<< NETCONF devices")
print "\n".strip()
for node_id in netconf_ids:
print " %s" % node_id
示例2: nc_demo_11
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_netconf_nodes_in_config [as 别名]
def nc_demo_11():
f = "cfg3.yml"
d = {}
if(load_dict_from_file(f, d) is False):
print("Config file '%s' read error: " % f)
exit(0)
try:
ctrlIpAddr = d['ctrlIpAddr']
ctrlPortNum = d['ctrlPortNum']
ctrlUname = d['ctrlUname']
ctrlPswd = d['ctrlPswd']
nodeName = d['nodeName']
nodeIpAddr = d['nodeIpAddr']
nodePortNum = d['nodePortNum']
nodeUname = d['nodeUname']
nodePswd = d['nodePswd']
rundelay = d['rundelay']
except:
print ("Failed to get Controller or NETCONF device attributes")
exit(0)
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("<<< Demo Start")
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("\n")
print ("<<< Creating Controller instance")
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("'Controller':")
print ctrl.to_json()
print "\n"
print ("<<< Show NETCONF nodes configured on the Controller")
time.sleep(rundelay)
result = ctrl.get_netconf_nodes_in_config()
status = result.get_status()
if(status.eq(STATUS.OK)):
print "Nodes configured:"
nlist = result.get_data()
for item in nlist:
print " '{}'".format(item)
else:
print ("\n")
print ("!!!Demo terminated, reason: %s" % status.brief())
exit(0)
node_configured = False
result = ctrl.check_node_config_status(nodeName)
status = result.get_status()
if(status.eq(STATUS.NODE_CONFIGURED)):
node_configured = True
elif(status.eq(STATUS.DATA_NOT_FOUND)):
node_configured = False
else:
print ("\n")
print "Failed to get configuration status for the '%s'" % nodeName
print ("!!!Demo terminated, reason: %s" % status.detailed())
exit(0)
if node_configured:
print ("\n")
print ("<<< '%s' is already configured on the Controller" % nodeName)
print ("Unmounting '%s' from the Controller" % nodeName)
time.sleep(rundelay)
result = ctrl.delete_netconf_node(nodename=nodeName)
status = result.get_status()
if(status.eq(STATUS.OK)):
print ("<<< '%s' NETCONF node was successfully removed "
"from the Controller" % nodeName)
else:
print ("\n")
print ("!!!Demo terminated, reason: %s" % status.brief())
exit(0)
print ("\n")
time.sleep(rundelay)
print ("<<< Creating new '%s' NETCONF node" % nodeName)
node = NetconfNode(ctrl, nodeName, nodeIpAddr, nodePortNum,
nodeUname, nodePswd)
print ("'%s':" % nodeName)
print node.to_json()
print ("\n")
print ("<<< Check '%s' NETCONF node availability "
"on the network" % nodeName)
time.sleep(rundelay)
response = os.system("ping -c 1 " + nodeIpAddr)
if response == 0:
print nodeIpAddr, 'is up!'
else:
print nodeIpAddr, 'is down!'
print ("!!!Demo terminated")
exit(0)
print ("\n")
print ("<<< Add '%s' NETCONF node to the Controller" % nodeName)
#.........这里部分代码省略.........
示例3: nc_demo_13
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_netconf_nodes_in_config [as 别名]
def nc_demo_13():
f = "cfg1.yml"
d = {}
if load_dict_from_file(f, d) is False:
print ("Config file '%s' read error: " % f)
exit()
try:
ctrlIpAddr = d["ctrlIpAddr"]
ctrlPortNum = d["ctrlPortNum"]
ctrlUname = d["ctrlUname"]
ctrlPswd = d["ctrlPswd"]
rundelay = d["rundelay"]
except:
print ("Failed to get Controller device attributes")
exit(0)
netconf_ids = []
netconf_nodes = []
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("<<< Demo Start")
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print "\n"
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("<<< Controller '%s:%s'" % (ctrlIpAddr, ctrlPortNum))
time.sleep(rundelay)
print "\n"
print ("<<< Get NETCONF Inventory Information")
time.sleep(rundelay)
result = ctrl.get_netconf_nodes_in_config()
status = result.get_status()
if status.eq(STATUS.OK):
netconf_ids = result.get_data()
else:
print ("\n")
print ("!!!Demo terminated, " "failed to get list of NETCONF devices, " "reason: %s" % status.brief())
exit(0)
print "\n"
print ("<<< NETCONF devices")
print "\n".strip()
for node_id in netconf_ids:
print " %s" % node_id
for node_id in netconf_ids:
result = ctrl.build_netconf_node_inventory_object(node_id)
status = result.get_status()
if status.eq(STATUS.OK):
node = result.get_data()
assert isinstance(node, NetconfCapableNode)
netconf_nodes.append(node)
else:
print ("\n")
print (
"!!!Demo terminated, "
"failed to build object for NETCONF device '%s', "
"reason: %s" % (node_id, status.brief())
)
exit(0)
for node in netconf_nodes:
time.sleep(rundelay)
print "\n".strip()
print "<<< Information for '{}' device".format(node.get_id())
print "\n".strip()
print " Device Name : {}".format(node.get_id())
print " Connection status : {}".format(node.get_conn_status())
print "\n".strip()
print " Initial Capabilities"
print " {}".format("-" * 60)
clist = node.get_initial_capabilities()
for item in clist:
print " {}".format(item)
print ("\n")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
print (">>> Demo End")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
示例4: nc_demo_13
# 需要导入模块: from pybvc.controller.controller import Controller [as 别名]
# 或者: from pybvc.controller.controller.Controller import get_netconf_nodes_in_config [as 别名]
def nc_demo_13():
ctrlIpAddr = '172.22.18.186'
ctrlPortNum = '8181'
ctrlUname = 'admin'
ctrlPswd = 'admin'
netconf_ids = []
netconf_nodes = []
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
print ("<<< Demo Start")
print ("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
rundelay = 2
print "\n"
ctrl = Controller(ctrlIpAddr, ctrlPortNum, ctrlUname, ctrlPswd)
print ("<<< Controller '%s:%s'" % (ctrlIpAddr, ctrlPortNum))
time.sleep(rundelay)
print "\n"
print ("<<< Get NETCONF Inventory Information")
time.sleep(rundelay)
result = ctrl.get_netconf_nodes_in_config()
status = result.get_status()
if(status.eq(STATUS.OK)):
netconf_ids = result.get_data()
else:
print ("\n")
print ("!!!Demo terminated, "
"failed to get list of NETCONF devices, "
"reason: %s" % status.brief())
exit(0)
print "\n"
print ("<<< NETCONF devices")
print "\n".strip()
for node_id in netconf_ids:
print " %s" % node_id
for node_id in netconf_ids:
result = ctrl.build_netconf_node_inventory_object(node_id)
status = result.get_status()
if(status.eq(STATUS.OK)):
node = result.get_data()
assert(isinstance(node, NetconfCapableNode))
netconf_nodes.append(node)
else:
print ("\n")
print ("!!!Demo terminated, "
"failed to build object for NETCONF device '%s', "
"reason: %s" % (node_id, status.brief()))
exit(0)
for node in netconf_nodes:
time.sleep(rundelay)
print "\n".strip()
print "<<< Information for '{}' device".format(node.get_id())
print "\n".strip()
print " Device Name : {}".format(node.get_id())
print " Connection status : {}".format(node.get_conn_status())
print "\n".strip()
print " Initial Capabilities"
print " {}".format('-'*60)
clist = node.get_initial_capabilities()
for item in clist:
print " {}".format(item)
print ("\n")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
print (">>> Demo End")
print (">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")