>
> # The virtualization network interface
> allow-ovsbr0 eth1
> iface eth1 inet manual
>   ovs_bridge ovsbr0
>   ovs_type OVSPort
>
> allow-ovs ovsbr0
> iface ovsbr0 inet manual
>   ovs_type OVSBridge
>   ovs_ports eth1
>
> allow-ovs ovsbr1
> iface ovsbr1 inet manual
>   ovs_type OVSBridge
>
Did you try doing '/etc/init.d/openvswitch-switch stop' and
'/etc/init.d/openvswitch-switch start'?

I did the following for an experiment with OVS 2.3.90 and Ubuntu14.04

/etc/init.d/openvswitch-switch stop

apt-get install uml-utilities
tunctl -t p0

ifconfig p0 : shows the interface.

Added the following to 'interfaces':

allow-ovsbr0 p0
iface p0 inet manual
  ovs_bridge ovsbr0
  ovs_type OVSPort

allow-ovs ovsbr0
iface ovsbr0 inet manual
  ovs_type OVSBridge
  ovs_ports p0

/etc/init.d/openvswitch-switch start
 * Starting ovsdb-server
 * Configuring Open vSwitch system IDs
 * Starting ovs-vswitchd
 * Enabling remote OVSDB managers
root@ubuntu14:~# ovs-vsctl show
f8f874e2-d925-472b-9f9f-6cdb50013e02
    Bridge "ovsbr1"
        Port "ovsbr1"
            Interface "ovsbr1"
                type: internal
    Bridge "ovsbr0"
        Port "ovsbr0"
            Interface "ovsbr0"
                type: internal
        Port "p0"
            Interface "p0"
    ovs_version: "2.3.90"


What happens when you do the above?
_______________________________________________
discuss mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/discuss

Reply via email to