...
key name | type | description |
---|---|---|
hvm | s | command line given to the kernel |
startup | s | specify what to do with the domain at startup possibles value: started, paused, shutdown or restore |
debug | b | logs all operations to /tmp/xenvm-debug-%uuid |
uuid | s | specify the domain uuid (default to autogeneration) |
on_crash | s | specify the action to be taken after notifying a |
on_halt | s | crash/halt/reboot. possible values: |
on_reboot | s | preserve, reboot, destroy |
kernel | s | specify where to find the kernel to boot (can be empty for hvm. default to hvmloader) |
memory | i | specify the memory given to the guest in megabytes |
vcpus | i | number of vcpus available to the guest |
disk | s | add a virtual disk. |
format: physpath:phystype:virtpath:mode:devty[:k=v...] | ||
- physpath: path to the disk image, raw device, .. | ||
- phystype: phy | ||
- virtpath: hd(a-d) | ||
- mode: r | ||
- devtype = cdrom | ||
- extra k=v arguments (cipher, key-size, key-file) | ||
nic | s | add a virtual nic. |
format: key=value,key=value,... (can be empty) | ||
supported key: bridge, mac, id | ||
examples: | ||
"nic = bridge=xen-br0,mac=ab:ef:fe:dc:ba:ab" | ||
"nic = mac=ab:ef:fe:dc:ba:ab" | ||
"nic = " | ||
pci | s | add a pci device. |
format: devid,bind,domain:bus device.function | ||
serial | s | redirect serial to device or network tcp:ip:port |
ex: "pty" or "tcp:1.2.3.4:1234" | ||
display | s | details the type of display available for the guest |
format: :key[=value],key[=value],... | ||
possible values: | ||
- none | ||
- vnc (keys allowed: use-port-unused, keymap, port) | ||
- sdl | ||
- intel |
...