search for: manage_mac

Displaying 4 results from an estimated 4 matches for "manage_mac".

2016 Oct 13
3
Libvirt adds extra parameters in domain XML
Hello, In my C++ code, I generate my own domain XML file and I use virDomainCreateXML or virDomainDefineXML to launch my qemu VM. However, when I get to check which commands are sent to the qemu commandline, I find that libvirt has added so many extra parameters to the ones I have already set. How can I prevent libvirt from adding any extra parameters to the ones I originally defined in the
2016 Oct 17
2
Re: Libvirt adds extra parameters in domain XML
...at I want to launch qemu with: > >sudo `which qemu-system-x86_64` -m 4G $(IMAGE) -enable-kvm \ >-nographic \ >-net nic,model=virtio,netdev=net0,macaddr=$(MAC),vlan=0 \ >-netdev tap,id=net0,ifname=tap01,vhost=on,script=no,downscript=no \ >-net nic,model=virtio,netdev=net1,macaddr=$(MANAGE_MAC),vlan=1 \ >-netdev tap,id=net1,ifname=tap02,vhost=on,script=no,downscript=no \ > >I dont need any extra configuration from libvirt. is this possible? Or can >anyone help with a possible xml configuration ? > Why do you need libvirt, then? If you need something from libvirt, we'...
2016 Oct 17
0
Fwd: Libvirt adds extra parameters in domain XML
...mined set of commands that I want to launch qemu with: sudo `which qemu-system-x86_64` -m 4G $(IMAGE) -enable-kvm \ -nographic \ -net nic,model=virtio,netdev=net0,macaddr=$(MAC),vlan=0 \ -netdev tap,id=net0,ifname=tap01,vhost=on,script=no,downscript=no \ -net nic,model=virtio,netdev=net1,macaddr=$(MANAGE_MAC),vlan=1 \ -netdev tap,id=net1,ifname=tap02,vhost=on,script=no,downscript=no \ I dont need any extra configuration from libvirt. is this possible? Or can anyone help with a possible xml configuration ? On Thu, Oct 13, 2016 at 1:13 PM, Martin Kletzander <mkletzan@redhat.com> wrote: > On...
2016 Oct 17
0
Re: Libvirt adds extra parameters in domain XML
...: >> >> sudo `which qemu-system-x86_64` -m 4G $(IMAGE) -enable-kvm \ >> -nographic \ >> -net nic,model=virtio,netdev=net0,macaddr=$(MAC),vlan=0 \ >> -netdev tap,id=net0,ifname=tap01,vhost=on,script=no,downscript=no \ >> -net nic,model=virtio,netdev=net1,macaddr=$(MANAGE_MAC),vlan=1 \ >> -netdev tap,id=net1,ifname=tap02,vhost=on,script=no,downscript=no \ >> >> I dont need any extra configuration from libvirt. is this possible? Or can >> anyone help with a possible xml configuration ? >> >> > Why do you need libvirt, then? If you...