...
Code Block |
---|
[{ "id":"odl1", "web":"http://172.18.0.3:8181", "ws":"ws://172.18.0.3:8181/websocket", "primary":true },{ "id":"odl2", "web":"http://172.18.0.5:8181", "ws":"ws://172.18.0.5:8181/websocket", "primary":false } ] |
Configuration
test.config.json
Code Block |
---|
{
"port":8080,
"rfc8040":true,
"nbrestconf":false,
"trustAll":true,
"remoteOdlMap":[
{
"id":"odl1",
"web":"http://172.18.0.3:8181",
"ws":"ws://172.18.0.3:8181/websocket",
"primary":true
}
]
} |
parameter | description |
---|---|
port | listening port |
rfc8040 | flag for rfc8040 restconf interface enabled |
nbrestconf | flag for nb restconf interface enabled |
trustAll | allow insecure https certificates southbound |
remoteOdlMap | southbound opendaylight instances to connect to |
Possible Improvements
- merge SDNCs topologies which are requested southbound to one overall topology northbound (e.g. for topology-netconf)
...