linux 設定固定IP eth0變成eth0

2021-09-24 17:21:36 字數 659 閱讀 7944

設定固定ip

vim /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0

hwaddr=00:0c:29:70:21:6d

type=ethernet

uuid=7f0205b7-cdd2-4064-aeea-d2bab552c6ee

onboot=yes

nm_controlled=yes

bootproto=static

ipaddr=172.16.2.160

netmask=255.255.255.0

dns1=****(區域網預設dns)

dns2=8.8.8.8

gateway=172.16.2.1

eth0變成eth0

當虛擬機器複製到另外乙個vmware時,eth0就變成了eth1

解決:a) vim /etc/udev/rules.d/70-presistent-net.rules (注釋掉eth0,記錄eth1的mac位址,並將eth1改為eth0)

b) vim /etc/sysconfig/network-script/ifcfg-eth0 (修改eth0的mac位址為eth1的mac位址)

Linux 固定ip設定

先參考 linux 網路配置的檔案在 etc sysconfig network scripts 目錄下 ifconfig檢視自己的網絡卡資訊 ens33 對應檔案為 ifcfg ens33 開啟 根據他的設定完成後 看是否能ping通主機 ping 192.168.如果不行應該是虛擬機器那邊設定的...

linux固定ip設定

在終端中輸入 vi etc sysconfig network scripts ifcfg eth0 編輯完後,儲存退出。重啟網路服務。service network restart或 etc init.d network restart 重啟網路服務。service network restart...

linux 下設定固定IP

首先開啟terminal 編輯網絡卡配置檔案 vi etc sysconfig network scripts ifcfg eth0 進入編輯模式 按i鍵進行編輯 修改device eth0 物理裝置名 ipaddr 192.168.1.10 ip位址 netmask 255.255.255.0 掩...