On 24/04/2014 00:01, Kurt Albershardt wrote:
I used syntax I found online which did not appear in the man pages for 
ovs-vsctl or the cookbooks:
It is in "man ovs-vswitchd.conf.db"
http://openvswitch.org/ovs-vswitchd.conf.db.5.pdf

With a bit of experimentation, it looks link trunks=[] does what you want.

root@trusty:~# ovs-vsctl set port eth0 trunks=0
root@trusty:~# ovs-vsctl show
aa57eb8b-65e4-4739-8a8a-4a9349bbfaec
    Bridge br-wan
        Port br-wan
            Interface br-wan
                type: internal
        Port "eth0"
            trunks: [0]
            Interface "eth0"
    Bridge br-lan
        Port br-lan
            Interface br-lan
                type: internal
        Port "eth1"
            Interface "eth1"
    ovs_version: "2.0.1"
root@trusty:~# ovs-vsctl set port eth0 trunks=[]
root@trusty:~# ovs-vsctl show
aa57eb8b-65e4-4739-8a8a-4a9349bbfaec
    Bridge br-wan
        Port br-wan
            Interface br-wan
                type: internal
        Port "eth0"
            Interface "eth0"
    Bridge br-lan
        Port br-lan
            Interface br-lan
                type: internal
        Port "eth1"
            Interface "eth1"
    ovs_version: "2.0.1"

_______________________________________________
discuss mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/discuss

Reply via email to