我是OpenDaylight的新手。我将通过RESTAPI配置接口。这是我的以下API:
这是我的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中删除了名称空间。
如果您能帮助我解决此问题,我非常感谢。