通過查詢本機的ip,發現本機並沒有有效ip:
[pan@localhost ~]$ ip addr
所以,我們需要設定本機的靜態ip,並啟用配置。
那我們該如何實現這個目的呢?
本機的網路裝置名稱——ens33。
於是我們嘗試在系統中查詢帶有「ens33」的檔案:
[pan@localhost ~]$ sudo find / -name *ens33*
我們仔細檢視返回結果,尤其注意在 /etc 目錄下的結果行(/etc 目錄下的檔案是系統的配置檔案):
/etc/sysconfig/network-scripts/ifcfg-ens33最後一行的路徑就是我們要修改的目標檔案。
修改目標檔案前,我們照例仔細看下該檔案的許可權資訊,再進行修改:
[pan@localhost ~]$ ls -l /etc/sysconfig/network-scripts/ifcfg-ens33
返回結果:
-rw-------. 1 root root 392 10月 10 15:36 /etc/sysconfig/network-scripts/ifcfg-ens33修改目標檔案:
[pan@localhost ~]$ sudo vi /etc/sysconfig/network-scripts/ifcfg-ens33
對這兩行進行如下修改:
原值:
bootproto=dhcp修改值:onboot=no
bootproto=static在末尾增加如下配置:onboot=yes
ipaddr=192.168.219.149修改完目標檔案後,我們需要重啟系統的網路服務:gateway=192.168.219.2
netmask=255.255.255.0
dns1=192.168.219.146
dns2=192.168.219.147
[pan@localhost ~]$ sudo systemctl restart network.service && ping -c 4 www.baidu.com
說實話,文件還寫不習慣。 Centos7 x防火牆配置
1 檢視firewall服務狀態 2 檢視firewall的狀態 firewall cmd state3 開啟 重啟 關閉 firewalld.service服務 開啟 service firewalld start 重啟 service firewalld restart 關閉 service f...
CentOS 7 X 安全手記
一 安裝雲鎖 1 報錯 2 關閉selinux vim etc selinux config 將 selinux enforcing 改 selinux disabled 3 重啟系統 reboot now 二 centos7相關的操作 1 防火牆 firewall cmd 1 禁止被ping 禁止...
CentOS7 X磁碟掛載
假設掛載點為 www 假設磁碟為 dev vdc 假設磁碟只有卷 dev vdc1 該方案可能會丟失磁碟所有資料,操作前請先備份 磁碟已格式化 用過的磁碟 磁碟立即掛載 mkdir www mount dev vdc1 www 啟用開機掛載 獲取磁碟id ll dev disk by path lr...