Merhaba,
Prism vNIC hızı AHV üzerinde varsayılan olarak 10Gb olarak gelmektedir.İsteğe bağlı olarak bu hızı düşürmek için acli üzerinden işlem yapmak gerekli
CVM e SSH’la bağlandıktan sonra acli komutunu çalıştırıyoruz
vm.nic_create <VM_NAME> model=e1000 network=<portgroup_name>
1
2
|
<acropolis> vm.nic_create TestVM01–0 model=e1000 network=VLAN70
NicCreate: complete
|
Girmiş olduğumuz konfigürasyonu kontrol etmek için
vm.nic_get <VM_Name>
1
2
3
4
5
6
7
8
9
10
|
<acropolis> vm.nic_get TestVM01–0
}
50:6b:8d:18:99:49 {
mac_addr: “50:6b:8d:18:99:49”
model: “e1000”
network_name: “VLAN70”
network_uuid: “8e06c992-7543-48f7-9380-51493b09317b”
type: “kNormalNic”
}
<acropolis>
|
Farklı bir şekilde kontrol etmek için acli’dan çıkıp CVM de root ekranına geri düşüyorum ; daha sonra işletim sistemi üzerinden kontrol için
ethtool ens4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[root@localhost ~]# ethtool ens4
Settings for ens4:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supported pause frame use: No
Supports auto–negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised pause frame use: No
Advertised auto–negotiation: Yes
Speed: 1000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto–negotiation: on
MDI–X: off (auto)
Supports Wake–on: umbg
Wake–on: d
Current message level: 0x00000007 (7)
drv probe link
Link detected: yes
|
Umarım faydalı olur.