Centos 配置網路位址

2021-08-15 09:50:12 字數 1085 閱讀 6928

檢視網路裝置

網路配置資訊的路徑:/etc/sysconfig/network-scripts

ip addr
設定網路位址

自動獲取網路位址

device=eth0

hwaddr=00:0c:39:ad:11:48

type=ethernet

uuid=c230a1e5-a535-487a-aab5-2fad7cd55836

onboot=yes

nm_controlled=yes

bootproto=dhcp

配置靜態位址

--必須

device=ens003

name=ens003

uuid=ae0965e9-22b9-45aa-8ec9-3f0a25785d11

--可調節配置

type=ethernet

bootproto=static #啟用靜態ip位址

onboot=yes #開啟自動啟用網路連線

ipaddr=192.168.21.128 #設定ip位址

netmask=255.255.255.0

gateway=192.168.21.2 #設定閘道器

dns1=8.8.8.8 #設定主dns

dns2=8.8.4.4 #設定備dns

--非必須

defroute=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_failure_fatal=no

ipv6_peerdns=yes

ipv6_peerroutes=yes

修改dns配置

vi /etc/resolv.conf

nameserver  ip位址
配置好後,用xshell來進行遠端連線

centOS7 配置網路位址

1 首先需求切換都root賬戶 su 輸入密碼 2 進入網路配置檔案目錄檢視 1 進入該目錄 etc sysconfig network scripts 2 檢視目錄下檔案 ll al 3 找到修改的檔案3 修改配置檔案 ifcfg ens type ethernet bootproto none ...

centOS7 配置網路位址

1 首先需求切換都root賬戶 su 輸入密碼 1 進入該目錄 etc sysconfig network scripts 2 檢視目錄下檔案 ll al 3 找到修改的檔案 bootproto static 開機協議,最常見的三個引數如下 static 靜態ip none 不指定,設定固定ip的情...

配置網路位址

配置網路位址 1.永久配置ip位址 etc sysconfig network scripts ifcfg eth0 2.永久配置主機名 vim etc hostname 格式 主機名.tedu.cn nmcli連線管理 1.檢視nmcli命令識別的網絡卡名字 nmcli connection sh...