首页 文章

配置带有OVS的带内OpenFlow控制器不在miniet中

提问于
浏览
2

我正在尝试通过接口配置远程OpenFlow控制器,该接口也是OpenVswitch正在管理的桥接器的一部分 . 我不是用mininet;相反,我有一个真正的VM主机(支持一些qemu-kvm VM 's) with a real ethernet port. I want the tap interfaces plus the ethernet port to all be in the same bridge and managed by OVS. The OpenFlow controller resides on a different host, reachable only through the physical ethernet port. So far I have set the remote controller for the bridge as well as put the failure mode into 1017063 . Unfortunatley the network is simply not coming up after a reboot (NB: before I lost connectivity I did verify that traffic was flowing between the VM host and the OF controller host on port 6633). It seems that, at a minimum, I need to update the OVS database with an 1017064 setting in some table, but I'我不知道如何做到这一点或者这是否足够(以及我这样做的事情 . 有没有人对此有任何经验)什么样的OVS配置?

1 回答

  • 0

    试试这个:#ovs-vsctl add-br br1

    #ifconfig br1 10.1.2.11 netmask 255.255.255.0     
    
    #ovs-vsctl set-controller br1 tcp:<controller-IP>:6633     
    
    You will be able to see the ovs connected to controller.
    

相关问题