CentOS 靜態IP設定 修改網絡卡名

2022-09-01 15:57:18 字數 1451 閱讀 2496

1. lsb_release -a (若報命令找不到,直接yum install lsb –y)

2. cat /etc/redhat-release

1. 預設安裝好的網絡卡名比較奇怪: ens160,重新命名為eth0

# mv /etc/sysconfig/network-scripts/ifcfg-ens160 /etc/sysconfig/network-scripts/ifcfg-eth0
2. 編輯 ifcfg-eth0 檔案

# vim /etc/sysconfig/network-scripts/ifcfg-eth0
3. 修改檔案中以下內容

bootproto="

static

"#dhcp改為static

onboot="

yes"

#開機啟用本配置

name=eth0 #name修改為eth0

device=eth0 #name修改為eth0

ipaddr=192.168.1.26

#靜態ip

gateway=192.168.1.1

#預設閘道器

netmask=255.255.255.0

#子網掩碼

dns1=192.168.1.167 #dns 配置

4. 修改後的檔案內容

type=ethernet

bootproto="static" #修改defroute=yes

peerdns=yes

peerroutes=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipv6_failure_fatal=no

ipv6_addr_gen_mode=stable-privacy

name=eth0 #修改

uuid=96c9a4dc-efab-4188-9d95-65966178e451

device=eth0 #修改

ipaddr=192.168.1.26 #增加

gateway=192.168.1.1 #增加

netmask=255.255.255.0 #增加

dns1=192.168.1.167 #增加

onboot=yes #修改

6. 執行命令grub2-mkconfig -o /boot/grub2/grub.cfg 來重新生成grub配置並更新核心引數。

7. 重新啟動機器reboot,啟動完之後網絡卡名稱就變成了eth0

Centos設定靜態IP及修改Centos配置檔案

centos設定靜態ip及修改centos配置檔案 51cto.com 2010 01 13 10 48 佚名 csdn 字型大小 t tcentos設定ip完成後,重啟一下網絡卡就可以了 service network restart 我們還有乙個辦法可以實現centos設定靜態ip,那就是通過 ...

centOS靜態IP設定

編輯檔案 vi etc sysconfig network script ifcfg eth0 1.動態獲取ip onboot yes mm controlled no bootproto dhcp 2.靜態ip device eth0 type ethernet hwaddr 00 0c 29 5...

CentOS設定靜態IP

vim etc sysconfig network scripts ifcfg eth0 onboot yes nm controlled yes bootproto static ipaddr 172.19.1.35 netmask 255.255.255.0 gateway 172.19.1.1...