VMware網路配置常用的命令

2021-09-21 15:11:26 字數 4389 閱讀 1717

service consol):

檢視資訊:esxcfg-vswif -l

# esxcfg-vswif -l

name port group/dvport ip family ip address netmask broadcast enabled type

vswif0 service console-1 ipv4 192.168.1.120 255.255.255.0 192.168.1.255 true static

vswif1 service console 2 ipv4 192.168.5.99 255.255.255.0 192.168.5.255 true static

操作命令:

啟用和禁用介面:esxcfg-vswif -e vswif_name 和 esxcfg-vswif -s vswif_name

啟用所有的介面:esxcfg-vswif -e|--enable-all

新增和刪除介面:esxcfg-vswif -a vswif_name和 esxcfg-vswif -d vswif_name

關於新增乙個consolip的步驟及詳細引數:

一、先檢查哪些虛擬交換機上預留了哪些

service consol

介面# esxcfg-vswitch -l

switch name num ports used ports configured ports mtu uplinks

vswitch0 32 3 32 1500

portgroup name vlan id used ports uplinks

vm network-1 0 2

switch name num ports used ports configured ports mtu uplinks

vswitch1 64 7 64 1500 vmnic1

portgroup name vlan id used ports uplinks

service console 2 0 1 vmnic1

vm network-2 0 3 vmnic1

vmkernel 0 1 vmnic1

switch name num ports used ports configured ports mtu uplinks

vswitch2 64 1 64 1500

portgroup name vlan id used ports uplinks

virtual machine network0 0

可以看到虛擬交換機vswitch0沒有與任何實體網絡卡相連。

二、給虛擬交換機連線實體網絡卡

檢視伺服器已有的實體網絡卡資訊:

# esxcfg-nics -l

name pci driver link speed duplex mac address mtu description

vmnic0 06:07.00 e1000 up 100mbps full 00:11:43:36:73:77 1500 intel corporation 82541gi gigabit ethernet controller

vmnic1 07:08.00 e1000 up 100mbps full 00:11:43:36:73:78 1500 intel corporation 82541gi gigabit ethernet controller

假設我們要把vmnic0這塊實體網絡卡接到虛擬交換機vswitch0上,可以這樣操作:

# esxcfg-vswitch -l vmnic0 vswitch0

注:

如果是想斷開與實體網絡卡的連線可以這樣操作

# esxcfg-vswitch -u vmnic0 vswitch0

重新檢查一下:# esxcfg-vswitch -l

switch name num ports used ports configured ports mtu uplinks

vswitch0 32 4 32 1500 vmnic0

portgroup name vlan id used ports uplinks

vm network-1 0 2 vmnic0

switch name num ports used ports configured ports mtu uplinks

vswitch1 64 7 64 1500 vmnic1

portgroup name vlan id used ports uplinks

service console 2 0 1 vmnic1

vm network-2 0 3 vmnic1

vmkernel 0 1 vmnic1

switch name num ports used ports configured ports mtu uplinks

vswitch2 64 1 64 1500

portgroup name vlan id used ports uplinks

virtual machine network0 0

可以看到vswitch0已經連線到vmnic0上了。

三、檢查當前的

service consol

狀況發現虛擬交換機vswitch0沒有控制台通訊埠,為虛擬交換機vswitch0新增控制台通迅埠serveice console 1:

# esxcfg-vswitch -a service\ console\ 1 vswitch0

注:

如果是想刪除乙個通訊埠組可以這樣操作

# esxcfg-vswitch -d service\ console\ 1 vswitch0

重新檢查一下:# esxcfg-vswitch -l

# esxcfg-vswitch -l

switch name num ports used ports configured ports mtu uplinks

vswitch0 32 4 32 1500 vmnic0

portgroup name vlan id used ports uplinks

service console 1 0 0 vmnic0

vm network-1 0 2 vmnic0

switch name num ports used ports configured ports mtu uplinks

vswitch1 64 7 64 1500 vmnic1

portgroup name vlan id used ports uplinks

service console 2 0 1 vmnic1

vm network-2 0 3 vmnic1

vmkernel 0 1 vmnic1

switch name num ports used ports configured ports mtu uplinks

vswitch2 64 1 64 1500

portgroup name vlan id used ports uplinks

virtual machine network0 0

可以看到預設情況下控制台通訊埠service console 1已經與實體網絡卡vmnic0連線好了。

四、新增與控制台通訊埠相對應的虛擬網絡卡

新增與控制台通訊埠service console 1對應的虛擬網絡卡,並配置ip資訊:

# esxcfg-vswif -a vswif0 -p service\ console\ 1 -i 192.168.1.120 -n 255.255.255.0 -b 192.168.1.255

[2010-12-07 17:06:47 'vnic' warning] generated new mac address, 00:50:56:4a:c3:45 for vswif0

nothing to flush.

注:

如果是想刪除與控制台通訊埠相對應的虛擬網絡卡可以這樣操作

# esxcfg-vswif -d vswif0

重新檢查一下:

# esxcfg-vswif -l

name port group/dvport ip family ip address netmask broadcast enabled type

vswif0 service console 1 ipv4 192.168.1.120 255.255.255.0 192.168.1.255 true static

vswif1 service console 2 ipv4 192.168.5.99 255.255.255.0 192.168.5.255 true static

已經多出來了乙個叫做vswif0的虛擬網絡卡,ip位址為192.168.1.120,我們可以通過訪問這個ip來做一些管理性的工作。

VMware下CentOS網路配置

參考文章 vmware下的centos聯網,在安裝的時候網路設定成bridge模式。配置網路時主要分為三步 1.配置ip位址。vi etc sysconfig network scripts ifcfg eth0這裡在配置網路時,bridge 預設使用vmnet0 將虛擬機器的ip設定與主機同網段未...

VMware橋接網路配置

在wmware配置橋接網路的時候,很有可能遇見上面的情況,可以看見,在上面的虛擬網絡卡中,並沒有vmnet0這個網絡卡。我按照下面的步驟成功的解決了這個問題 現在可以選擇vmnet0,設定為橋接模式了。在我們的計算機中,一般有兩個網絡卡,乙個有線網絡卡和乙個無線網絡卡,所以在選擇橋接的網絡卡的時候,...

Linux基礎網路配置以及常用的網路命令

系統ubantu 14.0.1 在ubantu預設是使用dhcp動態獲取ip位址,這樣就會造成很多不必要的事情發生 比如說公司有一部git伺服器,我們經常pull push 時,需要與git伺服器建立聯絡 我在hosts檔案中加入 192.168.1.109 git.com 伺服器的位址 暫時的 假...