1

高レベルの Python ライブラリncclientを使用して NETCONF デバイスの構成を編集していますが、次のエラーが発生します。

ValueError: Invalid attribute name u'xmlns:if'

lxmlライブラリが属性名について不平を言っているので、xml名前空間の問題と関係があると思われます

私がしているのは、デバイスへの接続を作成してから閉じることだけです

manager = ncclient.manager.connect(
    host=host,
    port=port,
    username=username,
    password=b64decode(password),
    device_params={
        "name": "nexus",
        "ssh_subsystem_name": "xmlagent"
    }
)
manager.close_session()

スタック トレースは次のとおりです。

Traceback (most recent call last):
  File "./switch_config.py", line 41, in <module>
    main()
  File "./switch_config.py", line 26, in main
    manager.close_session()
  File "/usr/lib/python2.6/site-packages/ncclient/manager.py", line 107, in wrapper
    return self.execute(op_cls, *args, **kwds)
  File "/usr/lib/python2.6/site-packages/ncclient/manager.py", line 174, in execute
    raise_mode=self._raise_mode).request(*args, **kwds)
  File "/usr/lib/python2.6/site-packages/ncclient/operations/session.py", line 28, in request
    return self._request(new_ele("close-session"))
  File "/usr/lib/python2.6/site-packages/ncclient/operations/rpc.py", line 290, in _request
    req = self._wrap(op)
  File "/usr/lib/python2.6/site-packages/ncclient/operations/rpc.py", line 275, in _wrap
    **self._device_handler.get_xml_extra_prefix_kwargs())
  File "/usr/lib/python2.6/site-packages/ncclient/xml_.py", line 153, in <lambda>
    new_ele = lambda tag, attrs={}, **extra: etree.Element(qualify(tag), attrs, **extra)
  File "lxml.etree.pyx", line 2812, in lxml.etree.Element (src/lxml/lxml.etree.c:61433)
  File "apihelpers.pxi", line 123, in lxml.etree._makeElement (src/lxml/lxml.etree.c:13864)
  File "apihelpers.pxi", line 111, in lxml.etree._makeElement (src/lxml/lxml.etree.c:13736)
  File "apihelpers.pxi", line 263, in lxml.etree._initNodeAttributes (src/lxml/lxml.etree.c:15391)
  File "apihelpers.pxi", line 1524, in lxml.etree._attributeValidOrRaise (src/lxml/lxml.etree.c:26886)
ValueError: Invalid attribute name u'xmlns:if'
4

1 に答える 1

0

最終的に、次の方法で NX-OS で動作するようになりました。

ncclient/devices/nexus.py 内のすべての名前空間を削除し、 namespace を追加します"xmlns":"http://www.cisco.com/nxos:1.0:netconf"

def get_xml_base_namespace_dict(self):
    return { "xmlns":"http://www.cisco.com/nxos:1.0:netconf" }      #Add root namespace

def get_xml_extra_prefix_kwargs(self):
    d = {
            # "xmlns:nxos":"http://www.cisco.com/nxos:1.0",           #remove other namespaces
            # "xmlns:if":"http://www.cisco.com/nxos:1.0:if_manager"
        }
    d.update(self.get_xml_base_namespace_dict())
    return d
于 2014-09-18T02:32:55.933 に答える