先用networkmanager包的nmcli命令檢查網絡卡,在終端輸入nmcli d
需要記住第二個紅框裡面的device下的名稱
輸入ls /etc/sysconfig/network-scripts/
可以看到只有乙個符合的
在終端輸入sudo vi /etc/sysconfig/network-scripts/ifcfg-enp2s0
設定配置
type=ethernet #網路型別為:ethernet乙太網
proxy_method=none
browser_only=no
bootproto=dhcp #設定為none禁止dhcp,設定為static啟用靜態ip位址,設定為dhcp開啟dhcp服務
defroute=yes #預設網絡卡
ipv4_failure_fatal=no
##ipv6init=yes
##ipv6_autoconf=yes
##ipv6_defroute=yes
##ipv6_failure_fatal=no
##ipv6_addr_gen_mode=stable-privacy
name=enp2s0 #定義網路裝置名稱和紅框中一樣就行
uuid=45fe5552-7117-4c84-9742-c87adfa222b9
device=enp2s0 #指出裝置名稱和上面保持一致
onboot=yes #設定為yes,開機自動啟用網路連線
zone=public
ipaddr=192.168.31.10
netmask=255.255.255.0
gateway=192.168.31.2
dns1=192.168.31.2
重啟網路服務systemctl restart network
如果直接執行 ifconfig 命令,則提示錯誤 :-bash: ifconfig: command not found
檢視 /sbin 目錄下,其實是沒有 ifconfig 檔案的。
執行以下命令:
以上執行結果,我們只要分析最好一行就可以。matched: ifconfig 這個 分割行 是用來顯示 匹配結果的。
最後一行 中 冒號(:)前面的資料, (net-tools.x86_64 ) 是匹配的軟體包;冒號(:)後面的資料,(basic networking tools ) 是對前麵包的描述。
結合上面的資訊,即 通過執行yum search ifconfig
提示我們: 安裝ifconfig 包 只需要安裝 net-tools.x86_64 即可。
所以,我們執行sudo yum install net-tools.x86_64
輸入兩次 y 就安裝完成。
ifconfig -a
curl ifconfig.me
centos 安裝 docker及設定docker
一 切換到命令列下 su root 1 docker 要求 centos 系統的核心版本高於 3.10 檢視本頁面的前提條件來驗證你的centos 版本是否支援 docker 通過uname r命令檢視你當前的核心版本 2 使用root許可權登入 centos。確保 yum 包更新到最新。3 解除安...
centos網路設定
1.修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static 設定網絡卡獲得ip位址的方式,可能的選項為...
centos網路設定
一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 gedit etc sysconfig network scripts ifcfg eth0 修改以下內容 1 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 2 ootproto s...