mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-25 06:03:55 +03:00
97ea737386
libvirt will use rtl8139, but the qemu default changed a while ago to e1000, and libvirt has diverged. e1000 is more modern and considered the better default here, so use it
45 lines
1.1 KiB
XML
45 lines
1.1 KiB
XML
<domain type="xen">
|
|
<name>foobar</name>
|
|
<uuid>00000000-1111-2222-3333-444444444444</uuid>
|
|
<memory>65536</memory>
|
|
<currentMemory>65536</currentMemory>
|
|
<vcpu>1</vcpu>
|
|
<os>
|
|
<type arch="x86_64" machine="xenfv">hvm</type>
|
|
<loader>/usr/lib/xen/boot/hvmloader</loader>
|
|
<boot dev="cdrom"/>
|
|
<boot dev="hd"/>
|
|
</os>
|
|
<features>
|
|
<acpi/>
|
|
<apic/>
|
|
<pae/>
|
|
</features>
|
|
<clock offset="utc"/>
|
|
<devices>
|
|
<emulator>/usr/lib64/xen/bin/qemu-dm</emulator>
|
|
<disk type="block" device="disk">
|
|
<driver name="phy"/>
|
|
<source dev="/iscsi-pool/diskvol1"/>
|
|
<target dev="hda" bus="ide"/>
|
|
</disk>
|
|
<disk type="file" device="cdrom">
|
|
<driver name="qemu" type="qcow2"/>
|
|
<source file="/dev/default-pool/testvol1.img"/>
|
|
<target dev="hdb" bus="ide"/>
|
|
<readonly/>
|
|
</disk>
|
|
<interface type="bridge">
|
|
<source bridge="eth0"/>
|
|
<mac address="00:11:22:33:44:55"/>
|
|
<model type="e1000"/>
|
|
</interface>
|
|
<console type="pty"/>
|
|
<input type="tablet" bus="usb"/>
|
|
<graphics type="vnc" port="-1"/>
|
|
<video>
|
|
<model type="vga"/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|