Openvswitch configuration After starting the Opendaylight controller we need a Openflow network device. Linux has one – the Openvswitch. So we use the Openvswitch.
1 2 3 4 5 6 7 8 |
# # create a bridge with the name openflow # ovs-vsctl add-br openflow # # connect the bridge to the opendaylight openflow controller # ovs-vsctl set-controller openflow tcp:127.0.0.1:6633 |
After these to commands, executed as root, the controller has detected a new device. Tab device –> Node Name. Insert here the node name of the created Openvswitch bridge=switch. We […]