Displaying 2 results from an estimated 2 matches for "l1398".
Did you mean:
1398
2016 Dec 12
0
Re: libguestfs error: bridge 'virbr0' not found
...es virt-v2v need a bridge. That's
because it calls guestfs_set_network (g, 1):
http://libguestfs.org/guestfs.3.html#guestfs_set_network
and that causes the libvirt driver to add a network interface to the
guest:
https://github.com/libguestfs/libguestfs/blob/master/src/launch-libvirt.c#L1387-L1398
So you can get around this using LIBGUESTFS_BACKEND=direct which uses
an entirely different form of networking (SLIRP / qemu user net).
But why does virt-v2v call set_network? One reason is that old
virt-v2v called it. Old virt-v2v tried to download and install
kernels, but new virt-v2v doesn...
2016 Dec 11
2
libguestfs error: bridge 'virbr0' not found
Hey,
I am getting this error after using virt-v2v-copy-to-local and trying to
run:
$ virt-v2v -i libvirtxml rhel7.xml -o local -os /var/tmp -of raw
I try to set:
export LIBGUESTFS_BACKEND_SETTINGS=virbr0=ovirtmgmt
with no success and the file /etc/qemu/bridge.conf contains:
allow virbr0
it only worked after creating the bridge, is there other way to import
without creating the bridge?
Thank