我遵循了以下链接,并且该功能在从烤面包机模块获取通知时没有任何问题。 https://docs.opendaylight.org/en/stable-oxygen/developer-guide/controller.html
但是iam遇到的问题是找出如何从ODL NorthBound创建一个用于Netconf设备的通知流,该设备安装在运行数据存储区中的yang-ext挂载点之外(我使用了netconf testool和test.yang文件作为我的模型)。
更具体地说,如何在yang datatore中确定netconf设备的确切路径-例如,从开发人员指南中粘贴以下示例的烤面包机路径:
可以通过RESTCONF调用创建流的RPC,如下所示:
URI:http:// {odlAddress}:{odlPort} / restconf / operations / sal-remote:create-data-change-event-subscription
DATA:
{
"input": {
**My problem -----> "path": "/toaster:toaster/toaster:toasterStatus",**
"sal-remote-augment:datastore": "OPERATIONAL",
"sal-remote-augment:scope": "ONE"
}
}
谢谢