CentOS7 linux下DNS的永久性新增

2021-08-04 23:24:14 字數 647 閱讀 7555

i.網上很多講的dns的永久性新增其實都是暫時性新增,重啟網絡卡後就會丟失。**如下:

echo nameserver 8.8.8.8 > /etc/resolv.conf
很明顯,這個並不符合大家的要求。

ii.下面是永久性修改的教程:

1、執行命令:

cd /etc/sysconfig/network-scripts/

ls

2、找到該目錄下的網絡卡配置檔案如:ifcfg-ens32,在其中新增三行,如果檔案中已經有了dns,就先刪除再新增:

peerd=no 

dns1=8.8.8.8

dns2=114.114.114.114

3、新增完之後執行命令:

#重啟網路服務,使更改生效 

service network restart

iii.最後使用指令碼新增而非修改檔案,進一步提高便捷度:
#*為網絡卡名稱,dns1為主dns的ip位址,dns2為次dns的ip位址

nmcli con mod * ipv4.dns "dns1 dns2"

service network restart

centos7 linux網絡卡配置

type ethernet bootproto static 意思是使用靜態ip而不是動態分配 defroute yes peerdns yes peerroutes yes ipv4 failure fatal no ipv6init yes ipv6 autoconf yes ipv6 defr...

虛擬機器 安裝CentOs7 linux

執行命令 etc init.d network restart systemctl restart network 安裝完不能ping通主機,上不了外網是 vmware工具欄在虛擬網路設定裡面和虛擬機器設定的問題 使用nat 和橋接來回換了一下,最後 vm8用 nat vmware用了好久,以前裝了...

在CentOS7 Linux中安裝MySQL5 7

三 安裝mysql 四 mysql遠端連線授權 五 關閉linux的防火牆 六 關閉selinux 作業系統 centos 7 mysql 5.7 rpm qa grep mysqlyum remove y mysql mysql libs mysql common rm rf var lib my...