美文网首页
kvm添加物理网卡

kvm添加物理网卡

作者: helphi | 来源:发表于2022-02-25 15:33 被阅读0次
    # 将宿主机上的网络接口 eth1 直接插入到虚拟机,其他插入方式(type)还有 bridge/network/hostdev
    virsh attach-interface ubuntu --type direct --model virtio --source eth1 --persistent
    # 将直接插入到虚拟机的网卡拔出,有多块网卡时需要指定 mac
    virsh detach-interface ubuntu --type direct --mac 00:00:00:00:00:00 --persistent
    

    相关文章

      网友评论

          本文标题:kvm添加物理网卡

          本文链接:https://www.haomeiwen.com/subject/sxgxrrtx.html