Xen HVM guest配置(Xen hvm guest configuration)

前面讲到了PV guest的配置,那么这篇再简单说一下Xen中HVM guest的配置吧。以下配置适用于Xen4.1及以上版本,xlexample.hvm如下:

其中值得注意是网络配置vif=[''],它其实都主要用了xl的默认配置,相当如下:
vif = [ 'type=ioemu, bridge=xenbr0' ]
type指明了guest中网卡设备的类型;有两个值:ioemu 和 vif。 其中ioemu表示使用qemu模拟的网络设备,而当Guest中有支持网络设备的PV driver时,‘ioemu'的配置依然会让hvm guest使用PV driver;而vif则只提供PV driver的方式让hvm guest使用。

Specifies the type of device to valid values are:
ioemu (default) -- this device will be provided as an emulate device to the guest and also as a paravirtualised device which the guest may choose to use instead if it has suitable drivers available.

vif -- this device will be provided as a paravirtualised device only.

用xl create xlexample.hvm 来创建一个hvm guest。

master

Stay hungry, stay foolish.

发表评论

邮箱地址不会被公开。 必填项已用*标注

*