1. 程式人生 > >CentOS 7下的KVM網卡配置為千兆網卡

CentOS 7下的KVM網卡配置為千兆網卡

mode org network pre color pan 配置 strong 替換

在KVM下可以生成兩種型號的網卡,RTL8139和E1000,其實應該是底層生成不同芯片的網卡,而不是附帶宿主機網卡是什麽型號就是什麽型號的,其中默認為100兆網卡,即RTL8319的螃蟹卡,另一種是E1000的千兆網卡。

設置步驟:

1、修改KVM

virsh edit KVM名稱

2、找到RTL8139,並替換成E1000

<interface type=‘network‘>
  ...
  <model type=‘e1000‘ />
</interface>

註意:是替換而不是增加。

參考:

https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/5/html/virtualization/sect-virtualization-troubleshooting-kvm_networking_performance

https://www.linux-kvm.org/page/Networking

CentOS 7下的KVM網卡配置為千兆網卡