New user of HP VAN SDN controller running version 2.0.0.4253 on Ubuntu 12.04.3 LTS with test SDN consisting of two HP 3800 switches with 2 Ubuntu 12.04.3 LTS servers connected as nodes.
When I send traffic between the 2 nodes (e.g.. ping or iperf), the nodes initially appear on the VAN web interface Openflow Topology page (https://SDN-Controller:8443/sdn/ui/app/index#oftopo) and are visible through the REST API using the curl command. e.g.
curl -sk -H "X-Auth-Token:XXXXXXXXXXXXXXXXXXXX" https://localhost:8443/sdn/v2.0/net/nodes
{"nodes":[{"ip":"10.0.0.100","mac":"00:24:e8:42:fd:fb","vid":2,"dpid":"00:02:c8:cb:b8:3e:fe:40","port":11},{"ip":"10.0.0.110","mac":"bc:30:5b:df:63:df","vid":2,"dpid":"00:02:6c:3b:e5:62:b2:80","port":11}]}
However, the nodes disappear from the Topology page after approx 20 minutes and cannot bel listed using the curl command, e.g..
curl -sk -H "X-Auth-Token:XXXXXXXXXXXXXXXXXXXX" https://localhost:8443/sdn/v2.0/net/nodes
{"nodes":[]}
The traffic is still running and the flows are still in place. This happens if I use th Path Daemon (com.hp.sdn.sdn-ctl-path) or stop com.hp.sdn.ctl.path and mannually add flows using the REST API with curl commands.
The nodes only repear, if I stop traffic for approx 20 mins and restart the traffic. During this time the flows are visible and still function.
I guess this is some sort of time out issue. | am intending to use my SDN for multiple live video feed conribution, where the traffic could last for hours at a time.
How do I stop the node manager from loosing the node information?
Dave.
#SDN#NodeManager#VAN