similar to: Hot-migration of OVS Vlan configuration

Displaying 20 results from an estimated 8000 matches similar to: "Hot-migration of OVS Vlan configuration"

2017 Jul 13
1
Re: Hot-migration of OVS Vlan configuration
On Tue, 2017-07-11 at 14:56 -0400, Laine Stump wrote: > The cleanest way to make this work would be to enhance the function > qemuDomainChangeNet() to know what to do when it detects that the > vlan > tag was changed with a device update ("virsh update-device") - this > command can take effect immediately rather than waiting until the > next > time the domain is
2017 Jul 11
0
Re: Hot-migration of OVS Vlan configuration
On 07/11/2017 10:47 AM, Antoine Millet wrote: > Hi list, > > I'm using OVS as backend for guest networking on my hypervisors. VLAN > configuration for each interface is specified into the guest XML > definition. > > When I need to change VLAN configuration of a running guest, I first > edit the inactive XML to keep the changes for future boots, then I use > ovs-vsctl
2013 Jul 17
2
Libvirt "tc ingress qdisc" automatically removed by ovs vlan tag setting, how?
With outbound QoS setting in Libvirt XML, libvirt will add a tc ingress qdisc for traffic shaping. Then if you set VLAN tag to that tap device, this qdisc will automatically gone by no reason. Could anyone shed some lights where should I look into? I'm really confused and got no clue here. Thanks! Steps to reproduce -- # virsh start instance-name # virsh dumpxml instance-name ...
2012 Jun 11
5
xcp + ubuntu + openvswitch VLAN problem
hi all , i use ubuntu 12.04 with xcp , all config run very well except vlan i use xe network-create and xe vlan-create to build vlan 3000 then startup a vm in this network, xapi0 fakebridge and vif1.0 all looks well, use ovs-vsctl list port i can see xapi0 and vif1.0 have beed taged with 3000 but i can not access the internent~~~ somebody can help me with this? thanks.
2012 Jun 27
3
[XEN][Ubuntu's Linux bridge replaced by OVS problem using XEN]
Hi, I have two systems(a laptop and a desktop) connected with an Ethernet cable. Desktop is using the Internet through the laptop wireless LAN. Both systems have Ubuntu 11.10 with XEN 4.1.2 Hypervisor. I have compiled OpenvSwitch-1.5 on both the systems as well. In Linux Bridge mode both can ping each other. Problem: LINUX bridge is used in both systems and both can access the internet but as
2014 Mar 06
5
create ovs port without root
Hello! How can i operate with openvswitch without root rights? For example - i can add my user to kvm group and create vm from libvirt with my own user, but now i'm failed with creating port. errors in logs: Mar 06 14:04:46 selfip.ru ovs-vsctl[19065]: ovs|00001|vsctl|INFO|Called as ovs-vsctl --timeout=5 -- --if-exists del-port Mar 06 14:04:46 selfip.ru ovs-vsctl[19065]:
2014 Mar 07
1
Re: create ovs port without root
Thanks for answers,but as I see libvirt call ovs-vsctl that tries to connect to ovs-vswitchd socket,that have rw to root.how can I specify socket permissions in vswitchd? On Thu, Mar 06, 2014 at 02:05:15PM +0400, Vasiliy Tolstov wrote: > Hello! How can i operate with openvswitch without root rights? > For example - i can add my user to kvm group and create vm from > libvirt with my own
2013 Jul 17
3
Re: [ovs-discuss] Libvirt "tc ingress qdisc" automatically removed by ovs vlan tag setting, how?
On Wed, Jul 17, 2013 at 6:06 AM, Qiu Yu <unicell@gmail.com> wrote: > After some digging in openvswitch code. My wild guess is that vlan tag > reconfiguring triggered iface_configure_qos (vswitchd/bridge.c), which > in turn called netdev_set_policing to reset ingress policing rate. > Although there's no ingress_policing_rate set in my case, existing > ingress qdisc still
2020 Jan 04
3
Connecting a VM to an existing OVS bridge
Hi, I have an existing OVS bridge, that I can see in ovs-vsctl and use for other purposes. I've edited the machine's XML as instructed in http://docs.openvswitch.org/en/latest/howto/libvirt/ When I try to start the VM, i get error: Cannot get interface MTU on 'ovsbr': No such device Any ideas? (Note: I can't see the ovs switch in brctl show or any other regular kernel tool,
2019 Mar 15
2
Error starting domain: internal error: Unable to add port vnet0 to OVS bridge br0
I have installed OVS from sources using the installation steps mentioned on this link: http://docs.openvswitch.org/en/latest/intro/install/general/ I had installed libvrt, KVM, QEMU and all the necessary packages using apt-get. My KVM-QEMU hypervisor has been running well. To add a VM with the port attached to OVS bridge I changed the XML domain file as per the instructions on this page:
2012 Jun 05
1
need your help with xcp vlan
hi all, im peter, i found the post here http://www.gossamer-threads.com/lists/xen/users/229738 i build a small test env, with 2 vm in 1 server with xcp 1.1.0 i use xe network-create and xe vlan-create to build the vlan for each vm. then i got 2 bridge like xapi1 and xapi2, and in the ovs-vsctl list port i can see all these info about fake-bridge and vlan tag is correct. but when i start 2
2011 Jun 15
19
[XCP] XCP network and VLAN by Open vSwitch
Hello Everyone, I am new with XCP. I''ve setup several hosts with* XCP 1.0* and manage it through XenCenter and command console. Each host has two NICs, one (xenbr0) connected to a physical switch for Internet (said sw1), the other (xenbr3) connected to a physical switch for internal network (said sw2). I am trying to setup VMs and VLANs on xenbr3. I created a virtual bridge by
2012 Mar 23
1
[libvirt] Problem with Open vSwitch and dnsmasq
Date: Thu, 22 Mar 2012 11:43:03 -0700 Subject: Re: [libvirt] Problem with Open vSwitch and dnsmasq From: aatteka at nicira.com To: dano1988 at hotmail.it CC: libvir-list at redhat.com; roberto.sassu at polito.it; paolo.smiraglia at polito.it; dev at openvswitch.org On Thu, Mar 22, 2012 at 11:11 AM, Daniele Milani <dano1988 at hotmail.it> wrote: I think I could try the first solution.
2013 Jul 17
0
Re: Libvirt "tc ingress qdisc" automatically removed by ovs vlan tag setting, how?
After some digging in openvswitch code. My wild guess is that vlan tag reconfiguring triggered iface_configure_qos (vswitchd/bridge.c), which in turn called netdev_set_policing to reset ingress policing rate. Although there's no ingress_policing_rate set in my case, existing ingress qdisc still remove by default. Could some openvswitch guy help to confirm and suggest how to fix or workaround?
2013 Apr 18
10
[PATCH] hotplug: add openvswitch script
Based on Waldi''s RFC at http://lists.xen.org/archives/html/xen-devel/2012-09/msg00943.html To use it set vif.default.script="vif-openvswitch" in /etc/xen/xl.conf or use script=vif-openvswitch in the vif configuration. Appears to do the right thing for PV and HVM guests (including tap devices) and with stubdomains. In order to support VLAN tagging and trunking the
2019 Jul 23
2
OVS / KVM / libvirt / MTU
Hey there, I hope anyone can bring some light in the following problem. <interface type='bridge'> <source bridge='cloudbr0'/> <mtu size='2000'/> <mac address='02:00:74:76:00:01'/> <model type='virtio'/> <virtualport type='openvswitch'> </virtualport> <vlan trunk='no'> <tag
2015 Jan 28
1
Re: Sr-iov passthrough - no packet arrive to guest
I can see from different post that if working with sr-iov, i should work with vlan Is this an obligation to work with vlan if working with sr-iov? If not according to which parameter will the different vf get the traffic. Let's say i declare max_vfs=7, how will the traffic be seperated between the vm? However till i get an answer i tried to work with vlan And i still don't get
2012 Jul 12
1
[ovs-discuss] OpenVswitch with KVM virtual machines
I am running NOX controller with a python script that prints out the destination mac and the source mac for each packet arriving at the now controller and then floods it out. So here's what happening: With em1 connected, all the packets that arrive at em1 are coming to the controller and printing out the details. However, without em1 connected to the OVS, when I have the following setup:
2013 May 27
2
Using source installed open vswitch with libvirt(or virsh).
P{font-size:10pt; line-height:16; margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; font-family:gulim;} (English is not my first language Sorry for my poor English ) &nbsp; OS :&nbsp; Linux nc233 2632-220171el6x86_64 #1 SMP Tue May 15 17:16:46 CDT 2012 x86_64 x86_64 x86_64 GNU/Linux CentOS release 63 (Final) open vswitch : 11190 virsh : 100 ibvirtd (libvirt) :
2016 May 14
1
Re: libvirt + openvswitch, <parameters interfaceid='x'/> seems less-than-useful?
On 05/13/16 20:04, Laine Stump wrote: > On 05/13/2016 09:57 AM, Richard Harman wrote: >> I've debugged this, and I think the interfaceid stuff in network XML >> isn't doing much besides setting a custom interfaceid in an OpenVSwitch >> table that really has no effect on the operation of OpenVSwitch. I >> think the -- set Interface vnet0