CentOS修改網路引數命令

2021-07-09 16:27:07 字數 1608 閱讀 6482

1.修改主機名稱

[root@centos ~]# vim /etc/sysconfig/network

開啟檔案,修改以下內容並儲存

networking=yes

#使用網路

hostname=centos

#設定主機名稱

[root@centos ~]# hostname centos        #

立即生效

2.修改網絡卡

[root@centos ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0

開啟檔案,修改以下內容並儲存

device=eth0

#對應第一張網絡卡

type=ethernet

onboot=yes

#是否啟動時執行

nm_controlled=yes

bootproto=static

#使用靜態

ip,而不是由

dhcp

分配ip

defroute=yes

ipv4_failure_fatal=yes

ipv6init=no

name="system eth0"#名稱

hwaddr=00:50:56:94:04:3c

#必須對應

etho

是的mac

位址(/etc/udev/rules.d/70-persistent-net.rules

)peerdns=yes

peerroutes=yes

ipaddr=192.168.1.128

#指定本機

ip位址

netmask=255.255.255.0

#指定子網掩碼

gateway=192.168.1.2

#指定閘道器

dns1=192.168.1.2

3.修改dns

[root@centos ~]# vim /etc/resolv.conf

開啟檔案,修改以下內容並儲存

nameserver 8.8.8.8

#google

的dns

伺服器nameserver 192.168.1.2

#指定經路由器上指定的

dns伺服器

4.重新啟動網路配置

[root@centos ~]#service network restart

5.重啟

[root@centos ~]#reboot

6.

檢視當前

ip設定

[root@centos ~]# ifconfig

7.

測試是否連線外網

CentOS下修改網路配置引數

1 修改hostname 配置檔案 etc sysconfig network hostname tank 修改此處主機名 networking yes 2 修改ip netmask gateway 配置檔案 etc sysconfig network scripts ifcfg eth0 devi...

CentOS命令列修改網路配置

centos 其實有個setup的命令,是圖形的,可以很方便的修改一些引數。但為了顯示我們強大的linux功能,所以我 可以在字元介面下修改配置,是不是要拉風一點?修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容...

CentOS 網路設定修改

一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 修改以下內容 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static ...