1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
from lxml import etree
from .default import DefaultDeviceHandler
from ncclient.operations.third_party.sros.rpc import MdCliRawCommand
from ncclient.xml_ import BASE_NS_1_0
def passthrough(xml):
return xml
class SrosDeviceHandler(DefaultDeviceHandler):
"""
Nokia SR OS handler for device specific information.
"""
def __init__(self, device_params):
super(SrosDeviceHandler, self).__init__(device_params)
def get_capabilities(self):
"""Set SR OS device handler client capabilities
Set additional capabilities beyond the default device handler.
Returns:
A list of strings representing NETCONF capabilities to be
sent to the server.
"""
base = super(SrosDeviceHandler, self).get_capabilities()
additional = [
'urn:ietf:params:xml:ns:netconf:base:1.0',
'urn:ietf:params:xml:ns:yang:1',
'urn:ietf:params:netconf:capability:confirmed-commit:1.1',
'urn:ietf:params:netconf:capability:validate:1.1']
return base + additional
def get_xml_base_namespace_dict(self):
return {None: BASE_NS_1_0}
def get_xml_extra_prefix_kwargs(self):
d = {}
d.update(self.get_xml_base_namespace_dict())
return {"nsmap": d}
def add_additional_operations(self):
operations = {
'md_cli_raw_command': MdCliRawCommand
}
return operations
def perform_qualify_check(self):
return False
def transform_reply(self):
return passthrough
|