|
|
|
|
|
|
|
|
|
|
xen-users
[Xen-users] can't get networking to work with HVM XEN VM for windows ser
Given the following config why doesn't the vm launch? the only
error I seem to get is
[2010-10-12 15:13:00 1840] ERROR (XendDomainInfo:2205) VM winserver2008
restarting too fast (Elapsed time: 0.241631 seconds). Refusing to
restart to avoid loops.
If I comment out the vif line it launches fine.
I have several para virtualized linux installs working fine with
similar vif lines. I'm running routed if it matters.
#
# Kernel + memory size
import os, re
arch = os.uname()[4]
if re.search('64', arch):
arch_libdir = 'lib64'
else:
arch_libdir = 'lib'
kernel = "/usr/lib/xen-4.0/boot/hvmloader"
builder='hvm'
memory = 2048
#memory = 512
vcpus = 4
shadow_memory=4
# Hostname
name = 'winserver2008'
# Networking
vif = [ 'ip=10.222.5.140, vifname=eth9' ]
# Disks
disk = [
'phy:/dev/virtual_volume/win_server2008,hda,w',
'file:/isos/server2008.iso,hdc:cdrom,r']
#device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'
device_model = '/usr/lib/xen/bin/qemu-dm'
# Behaviour
boot='dc'
sdl=0
vnc=1
vncconsole=1
vncpasswd=''
stdvga=0
serial='pty'
usbdevice='tablet'
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|