centos無法檢視ip

2021-08-13 04:52:29 字數 2846 閱讀 3125

在安裝時 設定了靜態ip 但是 使用ifconfig命令時  只有 127.0.0.1的ip位址 

這時候檢視/etc/sysconfig/network-scripts  目錄下是否存在ifcfg-eth0 檔案如果不存在 檢視是否存在ifcfg-開頭的檔案 

我的系統存在ifcfg-eno16777736這樣乙個檔案

more ifcfg-eno16777736

[liaomin@localhost network-scripts]$ more ifcfg-eno16777736

type=ethernet

bootproto=none

defroute=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_failure_fatal=no

name=eno16777736

uuid=7170eda3-8183-41fc-b0b8-ee924d05ddc2

onboot=no

ipaddr0=192.168.0.88

prefix0=24

hwaddr=00:0c:29:61:34:7d

ipv6_peerdns=yes

ipv6_peerroutes=yes

剛好為我在安裝系統時新增的ip資訊

此時 使用命令 cp  ifcfg-eno16777736 ifcfg-eth0  建立 ifcfg-eth0檔案 同時將內容中的onboot=no 改為 onboot=yes

執行命令 service network restart 

執行 ifconfig 出現正確網路資訊

eno16777736: flags=4163mtu 1500

inet 192.168.0.88  netmask 255.255.255.0  broadcast 192.168.0.255

inet6 fe80::20c:29ff:fe61:347d  prefixlen 64  scopeid 0x20

ether 00:0c:29:61:34:7d  txqueuelen 1000  (ethernet)

rx packets 102  bytes 10385 (10.1 kib)

rx errors 0  dropped 0  overruns 0  frame 0

tx packets 128  bytes 13681 (13.3 kib)

tx errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73mtu 65536

inet 127.0.0.1  netmask 255.0.0.0

inet6 ::1  prefixlen 128  scopeid 0x10

loop  txqueuelen 0  (local loopback)

rx packets 818  bytes 71132 (69.4 kib)

rx errors 0  dropped 0  overruns 0  frame 0

tx packets 818  bytes 71132 (69.4 kib)

tx errors 0  dropped 0 overruns 0  carrier 0  collisions 0

如果安裝環境為 vm虛擬機器的host-only 下 想在虛擬機器中上網  

找到win環境下的網絡卡vmnet1  通過屬性 tcp/ip協議檢視 他的ip位址 

假設這裡為 192.168.0.12 而虛擬機器中設定的ip是ipaddr0=192.168.0.88 需要在ifcfg-eth0新增閘道器為 當前win的vmnet1的ip位址

即新增 geteway=192.168.0.12 

在win上必須有乙個能上網的網絡卡 比如我的筆記本為 無線網絡卡 右鍵屬性 高階 允許其他網路通過此計算機的internet來連線勾上 下拉框 選上 vmnet的網絡卡

確定 如果彈出確認 選否即可

通過ipconfig -all命令 檢視 無線網絡卡的 dns伺服器 比如我的 如下

ethernet adapter 無線網路連線:

connection-specific dns suffix  . :

description . . . . . . . . . . . : broadcom 802.11n 網路

physical address. . . . . . . . . : 08-3e-8e-4a-38-ab

dhcp enabled. . . . . . . . . . . : yes

autoconfiguration enabled . . . . : yes

ip address. . . . . . . . . . . . : 192.168.1.100

subnet mask . . . . . . . . . . . : 255.255.255.0

default gateway . . . . . . . . . : 192.168.1.1

dhcp server . . . . . . . . . . . : 192.168.1.1

dns servers . . . . . . . . . . . : 211.162.66.66

211.162.77.77

在 ifcfg-eth0新增dns伺服器 我這裡有兩個 

新增兩行 

dns1=211.162.66.66

dns2=211.162.77.77

此時在虛擬機器的 linux 重啟 service network restart

ping www.baidu.com 成功

linux版本centos檢視IP

輸入 ip查詢命名 ip addr 也可以輸入ifconfig centos沒有ifconfig命令 檢視ip 此命令會出現 此時發現ens33沒有inet這個屬性,也就沒辦法檢視ip位址 接下來通過vi etc sysconfig network scripts ifcfg ens33 檢視ens...

Centos7檢視IP位址方法

首先我們登入作業系統 使用者名稱root 密碼123456 然後我們輸入ip查詢命名 ip addr 也可以輸入 ifconfig檢視ip,但此命令會出現3個條目,centos的ip位址是ens33條目中的inet值。發現 ens33 沒有 inet 這個屬性,那麼就沒法通過ip位址連線虛擬機器。接...

centos7檢視ip命令 MySQL 常用命令

1 開啟mysqld服務 systemctl start mysqld.service 2 關閉mysqld服務 systemctl stop mysqld.service 3 重啟 systemctl restart mysqld.service 4 檢視狀態 systemctl status m...