我是 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 中删除命名空间。
如果你能帮助我解决这个问题,我真的很感激。