CentOS自動獲取IP(預設是不開啟的)

2021-06-28 19:14:21 字數 473 閱讀 5483

更改onboot=yes

更改bootproto為:

bootproto=dhcp

其他的如ipaddr、netmask等#號注釋掉,儲存退出

重啟網路連線,命令: service network restart

注:ifcfg-eth0引數

type=ethernet #網絡卡型別 device=eth0 #網絡卡介面名稱 onboot=yes #系統啟動時是否自動載入 bootproto=static #啟用位址協議 –static:靜態協議 –bootp協議 –dhcp協議 ipaddr=192.168.1.11 #網絡卡ip位址 netmask=255.255.255.0 #網絡卡網路位址 gateway=192.168.1.1 #網絡卡閘道器位址 dns1=10.203.104.41 #網絡卡dns位址 hwaddr=00:0c:29:13:5d:74 #網絡卡裝置mac位址 broadcast=192.168.1.255 #網絡卡廣播位址

Centos 7開啟網絡卡自動獲取IP

centos7預設安裝是沒有開啟配置網絡卡資訊的,無法訪問外網。下邊配置開啟網路自動獲取ip位址 1.檢視網絡卡資訊 執行ifconfig eno16777736 flags 4163mtu 1500 inet6 fe80 20c 29ff fee8 8637 prefixlen 64 scopei...

centos 自動分配ip

編輯網絡卡配置檔案 vi etc sysconfig network scripts ifcfg ens33 修改onboot yes bootproto dhcp 如果有其他ipaddr,netmask,getway引數設定需注釋掉 重啟網絡卡 service network restart 引數...

設定指定ip和自動獲取ip

1.設定指定固定ip的bat檔案 echo off echo 開始設定 netsh inte ce ip set address name 本地連線 source static addr 192.168.1.2 mask 255.255.255.0 gateway 192.168.1.1 gwmet...