contes 7安裝完畢後 網絡卡配置靜態IP

2021-08-26 05:46:08 字數 1711 閱讀 3943

1.首先檢視ip:ip addr(本人的是ens33,也可能是ens任意數字)

2.進入網絡卡的配置檔案目錄:etc/sysconfig/network-scripts

ls 檢視所有的檔案,會發現上邊紅線內容的檔案就在左上角

下面加注釋的都是需要修改的,如果未加注釋的,自己檔案裡也沒有的,加不加其實問題不大(紅字是需要改的,ip別寫我的,因為這是我偷別人的,在windows中cmd 中輸入ipconfig/all即可檢視ip dns和子網掩碼)

[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33

type=ethernet

proxy_method=none

browser_only=no

bootproto=static #固定ip

defroute=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

uuid=54b36099-eb80-45b9-a462-59f0eff9ad66

name=ens33   

device=ens33   

onboot=yes     #開機自啟

ipaddr=192.168.0.111 # 你自己要配置的ip

netmask=255.255.255.0# 子網掩碼

gateway=192.168.172.2#閘道器

dns1=114.114.114.114 #dns

dns2=114.114.114.114 #dns

最後儲存退出,先按esc然後:wq

退出後重啟網絡卡 systemctl restart network ,然後ip addr

ping www.baidu.com ,如果ping通 了,就ok了,如果沒ping通,繼續看下去。

grub_cmdline_linux="crashkernel=auto net.ifnames=0 biosdevname=0 rhgb quiet"  

4.grub2-mkconfig -o /boot/grub2/grub.cfg來重新生成grub配置並更新核心引數。

generating

grub configuration file …

found

linux image: /boot/vmlinuz-3.10.0-229.el7.x86_64

found

initrd image: /boot/initramfs-3.10.0-229.el7.x86_64.img

found

linux image: /boot/vmlinuz-0-rescue-1100f7e6c97d4afaad2e396403ba7f61

found

initrd image: /boot/initramfs-0-rescue-1100f7e6c97d4afaad2e396403ba7f61.img

done

Centos7安裝完畢後無法聯網的解決方法

安裝centos方式 今天在vmware虛擬機器中經過千辛萬苦終於安裝好了centos7。正興致勃勃的例行yum update 卻發現centos系統貌似預設網絡卡沒配置好,反饋無法聯網。經過一番研究,終於讓centos連上了網,現公布方法如下 進入目錄 etc sysconfig network ...

Centos7安裝完畢後無法聯網的解決方法

如有侵犯,請來信oiken qq.com 今天在vmware虛擬機器中經過千辛萬苦終於安裝好了centos7。正興致勃勃的例行yum update 卻發現centos系統貌似預設網絡卡沒配置好,反饋無法聯網。經過一番研究,終於讓centos連上了網,現公布方法如下 進入目錄 etc sysconfi...

Centos7安裝完畢後無法聯網的解決方法

進入目錄 cd etc sysconfig network scripts ls出所有顯式檔案 ll列出包含隱藏檔案 vi 開啟 ifcfg 檔案 ifcfg 後是一串隨機數檔案 最後一行改為onboot yes esc切換到命令模式 wq儲存並強制退出。再重啟一下network vi的模式 命令模...