將宿主機上的網路介面 eth1 直接新增到虛擬機器
命令方式
- 新增操作
virsh attach-interface ubuntu --type direct --model virtio --source eth1 --persistent
- 取消操作
virsh detach-interface ubuntu --type direct --mac 00:00:00:00:00:00 --persistent
說明,--persistent 在虛擬機器開機時等於--live --config
, 在關機時等於--config
xml方式
<interface type='direct'>
<mac address='52:54:00:fd:db:10'/>
<source dev='ens2f1' mode='vepa'/>
<model type='virtio'/>
</interface>
macvtap介紹
macvtap介紹