Centos 7 學習之靜態IP設定

2021-08-21 06:14:33 字數 2657 閱讀 8987

本學習主要針對 centos 7.0.1406 版本進行學習整理!

如果你使用 virtualbox 配置 centos 那麼請參考我的這篇文章 centos 7 學習之靜態ip設定(續)

1、編輯 ifcfg-eth0 檔案,vim 最小化安裝時沒有被安裝,需要自行安裝不描述。

# vim /etc/sysconfig/network-scripts/ifcfg-eth0
2、修改如下內容

bootproto=

"static"

#dhcp改為static

onboot=

"yes"

#開機啟用本配置

ipaddr=

192.168

.7.106

#靜態ip

gateway=

192.168

.7.1

#預設閘道器

netmask=

255.255

.255

.0#子網掩碼

dns1=

192.168

.7.1

#dns 配置

3、修改後效果

# ]# cat /etc/sysconfig/network-scripts/ifcfg-eth0

hwaddr=

"00:15:5d:07:f1:02"

type=

"ethernet"

bootproto=

"static"

#dhcp改為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=

"eth0"

uuid=

"bb3a302d-dc46-461a-881e-d46cafd0eb71"

onboot=

"yes"

#開機啟用本配置

ipaddr=

192.168

.7.106

#靜態ip

gateway=

192.168

.7.1

#預設閘道器

netmask=

255.255

.255

.0#子網掩碼

dns1=

192.168

.7.1

#dns 配置

4、重啟下網路服務

# service network restart

5、檢視改動後的效果,centois 7 不再使用 ifconfig 而是用 ip 命令檢視網路資訊。

# ip addr

1: lo: &

lt;loopback,up,lower_up&

gt; mtu

65536 qdisc noqueue

state unknown

link/loopback

00:00:

00:00:

00:00 brd

00:00:

00:00:

00:00

inet

127.0.

0.1/

8 scope host lo

valid_lft forever preferred_lft forever

inet6 ::

1/128 scope host

valid_lft forever preferred_lft forever

2: eth

0: &

lt;broadcast,multicast,up,lower_up&

gt; mtu

1500 qdisc pfifo_fast

state unknown qlen

1000

link/ether

00:15:

5d:07:f1:

02 brd ff:ff:ff:ff:ff:ff

inet

192.168.

7.106/

24 brd

192.168.

7.255 scope global eth

0valid_lft forever preferred_lft forever

inet6 fe8

0::215:

5dff:fe07:f102/

64 scope

link

valid_lft forever preferred_lft forever

Centos 7 學習之靜態IP設定

本學習主要針對 centos 7.0.1406 版本進行學習整理!如果你使用 virtualbox 配置 centos 那麼請參考我的這篇文章 centos 7 學習之靜態ip設定 續 1 編輯 ifcfg eth0 檔案,vim 最小化安裝時沒有被安裝,需要自行安裝不描述。vim etc sysc...

Centos 7 學習之靜態IP設定

本學習主要針對 centos 7.0.1406 版本進行學習整理!如果你使用 virtualbox 配置 centos 那麼請參考我的這篇文章 centos 7 學習之靜態ip設定 續 1 編輯 ifcfg eth0 檔案,vim 最小化安裝時沒有被安裝,需要自行安裝不描述。plain view p...

Centos 7 學習之靜態IP設定

由於家裡新裝的本地環境centos的ip經常改變,所以經常要切換切換資料啥的,麻煩,所以狠下心把家裡的本地伺服器設定成靜態ip,不讓它的ip經常改變,不說了,請看下面的步驟 一 如是伺服器的系統是centos7以下的版本用ifconfig命令檢視ip位址,我的是centos7以上的,所以用ip ad...