ODL配置netconf服务器失败

时间:2019-02-05 13:04:19

标签: opendaylight ietf-netconf

我是OpenDaylight的新手。我将通过RESTAPI配置接口。这是我的以下API:

http://localhost:8181/restconf/operations/network-topology:network-topology/topology/topology-netconf/node/new-netconf-device/yang-ext:mount/ietf-netconf:edit-config

这是我的xml代码:

<input xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<target>
<running/>
</target>
<config>
<interfaces xmlns="urn:ietf:params:xml:ns:yang:ietf-interfaces">
<interface>
<name>host-vpp1out</name>
<description>Ethernet</description>
<type xmlns:ianaift="urn:ietf:params:xml:ns:yang:iana-if-    
 type">ianaift:ethernetCsmacd</type>
<ipv4 xmlns="urn:ietf:params:xml:ns:yang:ietf-ip">
  <enabled>true</enabled>
  <address>
    <ip>10.80.17.54</ip>
    <prefix-length>24</prefix-length>
  </address>
</ipv4>
<enabled>true</enabled>
</interface>
</interfaces>
</config>
</input>

但是,我从远程netconf服务器收到错误

[ERR]未知元素界面/

当我从netconf服务器odl看到MSG时,从xml中删除了名称空间。

如果您能帮助我解决此问题,我非常感谢。

0 个答案:

没有答案