仮想スイッチを追加する2023/03/16 |
標準的な仮想スイッチを追加する場合は、以下のように設定します。
|
|
[1] | シェルアクセスして追加する場合は、以下のように実行します。 |
# 物理 NIC 確認 [root@ctrl:~] esxcli network nic list Name PCI Device Driver Admin Status Link Status Speed Duplex MAC Address MTU Description ------ ------------ ------ ------------ ----------- ----- ------ ----------------- ---- ----------- vmnic0 0000:01:00.0 ne1000 Up Up 1000 Full 52:54:00:94:d8:17 1500 Intel Corporation 82574L Gigabit Network Connection vmnic1 0000:07:00.0 ne1000 Up Up 1000 Full 52:54:00:76:e9:9c 1500 Intel Corporation 82574L Gigabit Network Connection # 作成済み仮想スイッチ一覧 [root@ctrl:~] esxcli network vswitch standard list vSwitch0 Name: vSwitch0 Class: cswitch Num Ports: 2990 Used Ports: 4 Configured Ports: 128 MTU: 1500 CDP Status: listen Beacon Enabled: false Beacon Interval: 1 Beacon Threshold: 3 Beacon Required By: Uplinks: vmnic0 Portgroups: VM Network, Management Network # 仮想スイッチ [vSwitch1] を新規作成 [root@ctrl:~] esxcli network vswitch standard add --vswitch-name=vSwitch1
# [vSwitch1] に物理 NIC [vmnic1] を割り当てる [root@ctrl:~] esxcli network vswitch standard uplink add --uplink-name=vmnic1 --vswitch-name=vSwitch1
esxcli network vswitch standard list vSwitch0 Name: vSwitch0 Class: cswitch Num Ports: 2990 Used Ports: 4 Configured Ports: 128 MTU: 1500 CDP Status: listen Beacon Enabled: false Beacon Interval: 1 Beacon Threshold: 3 Beacon Required By: Uplinks: vmnic0 Portgroups: VM Network, Management Network vSwitch1 Name: vSwitch1 Class: cswitch Num Ports: 2990 Used Ports: 3 Configured Ports: 128 MTU: 1500 CDP Status: listen Beacon Enabled: false Beacon Interval: 1 Beacon Threshold: 3 Beacon Required By: Uplinks: vmnic1 Portgroups: |
VMware Host Client で設定する場合は以下のように実行します。
|
|
[2] | [管理] - [ネットワーク] - [仮想スイッチ] の画面で、[標準仮想スイッチの追加] ボタンをクリックして、以下のように、追加する仮想スイッチの名称と、割り当てるアップリンクを選択します。その他の項目は、特別な要件がなければ、デフォルトのままで OK です。 |
[3] | 仮想スイッチが追加されました。 |
Sponsored Link |