Add support for netconf network discovery (#25435)

* Add support for netconf network discovery

* Fix unit test failure
This commit is contained in:
Ganesh Nalawade 2017-06-28 11:07:38 +05:30 committed by GitHub
parent b1e608811b
commit 3bd8dbb53d
4 changed files with 65 additions and 14 deletions

View file

@ -176,6 +176,13 @@ class NetconfBase(with_metaclass(ABCMeta, object)):
"""
pass
@staticmethod
def guess_network_os(obj):
"""Identifies the operating system of
network device.
"""
pass
def get_base_rpc(self):
"""Returns list of base rpc method supported by remote device"""
return ['get_config', 'edit_config', 'get_capabilities', 'get']