GNS3-IOUVM 更改IP地址為靜態
阿新 • • 發佈:2019-01-25
在GNS3 IOU VM1.3.9中使用的是 Debian Linux。
Debian中網絡卡的設定可以通過/etc/network/interfaces檔案來進行,
具體可分為三種不同的配置方式,這裡只說2種:DHCP自動獲取、靜態分配IP地址。
具體設定如下: 在進行配置之前,首先進入/etc/network目錄中,編輯interfaces檔案,且IOU vm 1.3.9中整合的是nano編輯器
具體命令如下:
nano /etc/network/interfaces
ps:儲存退出:CTRL+X 問你是否儲存 敲入 Y 檔名不變
1、檢視是否有雙網絡卡
ifconfig -a //得到eth0、 eth1、 eth*.....等網絡卡資訊
注意:如果只有一個eth0,則需在VM機中新增 網路介面卡 —— 僅主機模式
2、nano /etc/network/interfaces
以下為配置說明:
網絡卡通過DHCP自動獲取IP地址
interfaces正文如下:#後為註釋
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#
# The loopback network interface(配置環回口)
# 開機自動激lo介面
auto lo
# 配置lo介面為環回口
iface lo inet loopback
# The primary network interface (配置主網路介面)
#開機自動啟用eth0介面
auto eth0
#配置eth0介面為DHCP自動獲取
iface eth0 inet dhcp
#開機自動啟用eth1介面
auto eth1
#配置eth1介面為靜態設定IP地址,(當然也可以DHCP獲取,我試的沒成功,鬱悶)
iface eth1 inet static
address 192.168.56.128
netmask 255.255.255.0
network 192.168.56.0
broadcast 192.168.56.255
#配置閘道器,可省
gateway 192.168.56.1
#配置NDS,可省
# dns-* options are implemented by the resolvconf package, if installed(DNS設定)
#dns-nameservers 192.168.1.1
#dns-search test.com
interfaces正文如上
Debian中網絡卡的設定可以通過/etc/network/interfaces檔案來進行,
具體可分為三種不同的配置方式,這裡只說2種:DHCP自動獲取、靜態分配IP地址。
具體設定如下: 在進行配置之前,首先進入/etc/network目錄中,編輯interfaces檔案,且IOU vm 1.3.9中整合的是nano編輯器
具體命令如下:
nano /etc/network/interfaces
ps:儲存退出:CTRL+X 問你是否儲存 敲入 Y 檔名不變
1、檢視是否有雙網絡卡
ifconfig -a //得到eth0、 eth1、 eth*.....等網絡卡資訊
注意:如果只有一個eth0,則需在VM機中新增 網路介面卡 —— 僅主機模式
2、nano /etc/network/interfaces
以下為配置說明:
網絡卡通過DHCP自動獲取IP地址
interfaces正文如下:#後為註釋
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#
# The loopback network interface(配置環回口)
# 開機自動激lo介面
auto lo
# 配置lo介面為環回口
iface lo inet loopback
# The primary network interface (配置主網路介面)
#開機自動啟用eth0介面
auto eth0
#配置eth0介面為DHCP自動獲取
iface eth0 inet dhcp
#開機自動啟用eth1介面
auto eth1
#配置eth1介面為靜態設定IP地址,(當然也可以DHCP獲取,我試的沒成功,鬱悶)
iface eth1 inet static
address 192.168.56.128
netmask 255.255.255.0
network 192.168.56.0
broadcast 192.168.56.255
#配置閘道器,可省
gateway 192.168.56.1
#配置NDS,可省
# dns-* options are implemented by the resolvconf package, if installed(DNS設定)
#dns-nameservers 192.168.1.1
#dns-search test.com
interfaces正文如上
配置完畢後儲存,重啟計算機(reboot)或
重啟網路服務即可將網絡卡配好。(service networking restart)