centos 配置固定ip

2022-03-23 22:07:40 字數 1122 閱讀 1485

中小】

本文介紹了centos網路配置的方法,centos網路配置主要包括dns、閘道器、ip位址,主要是配置resolv.conf\network\ifcfg-eth0這些網路配置檔案,需要的朋友可以參考下

centos網路配置例項

1,配置dns

vi /etc/resolv.conf

加入:

複製**

**如下:

nameserver 192.168.0.1

nameserver

8.8.8.8

nameserver 8.8.4.4

2,配置閘道器:

vi /etc/sysconfig/network

加入:gateway=192.168.0.1

完整的如下:

複製**

**如下:

networking=yes

hostname=localhost.localdomain

gateway=192.168.0.1

/etc/sysconfig/network-scripts/ifcfg-eth0

內容如下:

複製**

**如下:

device="eth0"

hwaddr="00:0c:29:6c:bb:e6"

nm_controlled="yes"

onboot="no"

netmask=255.255.255.0

ipaddr=192.168.0.8

gateway=192.168.0.1

bootproto=static

onboot=yes

peerdns=yes

4,重新啟動服務:複製**

**如下:

/etc/init.d/network

restart

或使用命令:

service network restart

或:ifdown eth0 and ifup

eth0

配置完成後,ping一下閘道器,檢查是否能ping通或在用ifconfig eth0,檢查下實際配置的ip位址。

centos固定ip配置

修改虛擬機器中的centos 7系統為固定ip的配置檔案 cd etc sysconfig network scripts vi ifcfg eno16777736 將ipv6 協議都注釋 bootproto static 開機協議,有dhcp及static onboot yes 設定為開機啟動 i...

centos 配置ip dns 固定的ip

幫助自己記憶一下,免得忘了 一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 boo...

Centos設定固定ip

ifconfig檢視網路設定 vim開啟 etc sysconfig network scripts ifcfg eth0 device eth0描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static設定網絡卡獲得ip位址的方式,可能的選項為stat...