ubuntumininetopenflowopendaylight

Can't show the nodes in the user interface OpenDaylight


I have made this topology using Miniedit :

enter image description here

Then I have started opendaylight lithium :

enter image description here

The pingall test is successful but I can't see the topology in opendaylight web user interface :

enter image description here

These are the settings of the controller I'm using:

enter image description here

These are the general settings of Miniedit:

enter image description here

For opendaylight, I have installed odl-dlux-all, odl-openvswitch-switch, odl-restconf, and odl-openvswitch-switch-ui.

Why can't I see the topology in DLUX? Is there any other way to show it? I use Ubuntu 15.04. Thank you!


Solution

  • The screen shots indicate Opendaylight controller and mininet are running on the same machine. It appears that controller has not even discovered the switch node. Please make sure that Opendaylight and Mininet OVS are connected. Please try following commands: 1. netstat -anp|grep 6633 (This will dump the list of connections on port 6633) 2. ovs-vsctl show (This will give you the connection status)

    If Mininet and Controller are connected, please check following: 1. Capture the OpenFlow packets between controller and switch using command - tcpdump -i any -eXtn port 6633 2. Try to fetch the topology information using REST API 3. Check controller logs for any errors.