3 在centos7下配置靜態IP位址

2021-09-20 23:04:24 字數 1708 閱讀 8567

系統:centos7

版本:linux localhost.localdomain 3.10.0-123.el7.x86_64 #1 smp mon jun 30 12:09:22 utc 2014 x86_64 x86_64 x86_64 gnu/linux

dhclient#自動獲取ip位址

dhclient -r # 結束dhclient程式

ip add #檢視ip位址

ifconfig # 檢視ip位址 ps:如果沒有此命令 需要通過 yum install -y net-tools 進行安裝

ls #可以檢視目錄下的資訊

vi #可以編輯文件的工具

vi etc/sysconfig/network-scripts/ifcfg-eno16777736

注:每台機器的網絡卡名稱都不一樣 所以要得知網絡卡名稱在找到相對於的文件進行操作

原檔案如下:

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

hwaddr="00:0c:29:1f:2e:ab" 

type="ethernet" 

bootproto="dhcp"

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"

name="eno16777736"

uuid="0d77f003-893d-4e72-b072-568c7b2b1a6b"

onboot="yes"

hwaddr="00:0c:29:1f:2e:ab"

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"

name="eno16777736"

uuid="0d77f003-893d-4e72-b072-568c7b2b1a6b"

onboot="yes"

ipaddr=192.168.0.168 #:ip位址

netmask=255.255.255.0 #:網路掩碼

gateway=192.168.0.1 #:閘道器

dns1=192.168.0.1 #:dns

#:編輯好之後按esc按鍵推薦編輯模式,在命令模式下輸入「wq」儲存退出

[root@localhost ~]# service network restart

ps:每個網路環境都不一樣,各位需要根據自己所在的環境配置相對應的網段,ip位址是唯一的!!!

CentOS 7靜態IP配置

由於vmware和virtualbox配置靜態ip,預設閘道器不一樣,所以如果使用的虛擬機器是virtualbox,請參考centos 7 學習之靜態ip設定 virtualbox版 操作步驟 選中虛擬機器,右鍵設定 選中網路介面卡 勾選nat模式 關於靜態ip設定官方已經給出答案有興趣的可以看官方...

centos7 配置靜態ip

裝完centos7系統之後配network。1 找到network配置檔案 我的是em1 vi etc sysconfig network scripts ifcfg em1 hwaddr 90 b1 1c 47 ec c7 你的mac位址 type ethernet bootproto none ...

centos7靜態網路配置

centos7靜態網路配置 cd etc sysconfig network scripts 找到當前網絡卡名字 vim ifcfg ens33 type ethernet bootproto static 網絡卡獲取ip位址的方式,預設是dhcp,這裡改為static,dhcp是動態獲取 defr...