其他分享
首页 > 其他分享> > KVM虚拟机网卡配置管理

KVM虚拟机网卡配置管理

作者:互联网

虚拟机网卡管理

virsh attach-interface 添加网卡:

[root@ubuntu ~]# virsh domiflist CentOS-V6.5.23-server01 
Interface  Type       Source     Model       MAC
-------------------------------------------------------
vnet0      network    default    rtl8139     52:54:00:90:0a:7a

[root@ubuntu ~]# virsh attach-interface CentOS-V6.5.23-server01 --type network --source default --model rtl8139 --current
Interface attached successfully

[root@ubuntu ~]# virsh domiflist  CentOS-V6.5.23-server01                                                       
Interface  Type       Source     Model       MAC
-------------------------------------------------------
vnet0      network    default    rtl8139     52:54:00:90:0a:7a
vnet1      network    default    rtl8139     52:54:00:ae:84:d0

virsh dumpxml 导出配置:

[root@ ~]# virsh dumpxml CentOS-V6.5.23-server01 > /etc/libvirt/qemu/CentOS-V6.5.23-server01.xml 

virsh detach-interface 删除网卡:

[root@ubuntu ~]# virsh detach-interface CentOS-V6.5.23-server01 --type  network --mac  52:54:00:00:34:55 --current
Interface detached successfully

[root@ubuntu ~]# virsh domiflist CentOS-V6.5.23-server01                                                  
Interface  Type       Source     Model       MAC
-------------------------------------------------------
vnet0      network    default    rtl8139     52:54:00:90:0a:7a

虚拟机硬盘

标签:配置,CentOS,23,虚拟机,V6.5,配置管理,网卡,virsh,server01
来源: https://www.cnblogs.com/wshenjin/p/11060636.html