Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
        }
    ]
}


parameterdescription
portlistening port
rfc8040flag for rfc8040 restconf interface enabled
nbrestconfflag for nb restconf interface enabled
trustAllallow insecure https certificates southbound
remoteOdlMapsouthbound opendaylight instances to connect to


Possible Improvements

  • merge SDNCs topologies which are requested southbound to one overall topology northbound (e.g. for topology-netconf)

...