有人知道为什么我不能调用OpenDaylight提供的Restful API,即使我已经安装了RESTCONF,l2switch,md-sal模块。我对dlux的回答是这样的alwyas:
数据缺失:由于相关问题,无法完成请求 数据模型内容不存在。 - :请求无法完成 因为相关数据模型内容不存在enter image description here
如何完成这个“相关数据模型”?我确信我已经安装了md-sal& restconf-all& l2switch-所有模块,还有什么我还需要?我使用碳分配。谢谢你们!! YC
答案 0 :(得分:1)
我怀疑您发送的REST请求无效,尝试访问不存在的数据。
NetVirt Postman Collections中有示例REST请求。
答案 1 :(得分:0)
确保您的RESCONF流明确包含以太网类型和IP协议。
例如:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<flow xmlns="urn:opendaylight:flow:inventory">
<instructions>
<instruction>
<order>0</order>
<go-to-table>
<table_id>1</table_id>
</go-to-table>
</instruction>
</instructions>
<table_id>0</table_id>
<id>256</id>
<match>
<ethernet-match>
<ethernet-type>
<type>2048</type>
</ethernet-type>
</ethernet-match>
<ipv4-source>192.168.11.0/24</ipv4-source>
<ipv4-destination>192.168.11.0/24</ipv4-destination>
<ip-match>
<ip-protocol>6</ip-protocol>
</ip-match>
<in-port>0</in-port>
</match>
<hard-timeout>0</hard-timeout>
<cookie>10</cookie>
<idle-timeout>0</idle-timeout>
<flow-name>flow-instruction-go-to-table</flow-name>
<priority>200</priority>
</flow>
请务必更改指令和ipv4地址节以匹配您的流程。