當前位置:首頁 » 幣種行情 » eth0nolink

eth0nolink

發布時間: 2022-05-23 08:55:13

『壹』 linux eth0網路問題

1、vi /etc/sysconfig/network-scripts/ifcfg-eth0
ifcfg-eth0的配置文件里保存了以前的MAC地址,

2、把ifcfg-eth0的NETMASK=192.168.116.0GATEWAY=192.168.116.2子網掩碼是255.255.255.0刪除
3、把/etc/udev/rules.d/70-persistent-net.rules 刪除後重啟機器就可以了重啟

『貳』 Determining IP information for eth0... failed; no link present. Check cable

先輸入su root,會提示你輸入password,這個就是你root的密碼,輸入完成後就是root許可權了。

『叄』 linux的ip設置 linux顯示Determining IP information for eth0... failed; no link present. Check cable

ifconfig -a查看網路相關信息
IP相關參數 設定檔/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/init.d/network restart
DNS 設定檔 /etc/resolv.conf
手動設置時要先運行ifdown eth0 設置完畢後運行命令ifup eth0
你的情況似乎是接線的問題,沒有信號。

『肆』 虛擬機上的linux系統上不了網,系統啟動的時候eth0出現錯誤,網上的方法都試了,都不行,

/etc/sysconfig/network-scripts/ifcfg-eth0

修改這個文件
變成
DEVICE=eth0 設備名
BOOTPROTO=none 不要用DHCP 寫成none或者static都行
HWADDR=00:1e:67:6e:e7:33 MAC地址不寫也行(這個別照抄 每個網卡MAC地址都不同)
ONBOOT=yes 開機啟動
NETMASK=255.255.255.0 子網掩碼
IPADDR=1.1.1.1 IP地址
GATEWAY=1.1.1.1 網關
TYPE=Ethernet 類型不寫也行

『伍』 linux下怎麼判斷網卡異常網卡狀態

ip link 命令 或者 通過mii-tool指令

[root@localhost
root]# mii-tool
eth0:
negotiated 100baseTx-FD, link ok
eth1:
no link

[root@localhost
root]# mii-tool -v
eth0:
negotiated 100baseTx-FD, link ok
proct
info: vendor 00:50:43, model 2 rev 3
basic
mode: autonegotiation
enabled
basic
status: autonegotiation complete, link ok
capabilities:
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising:
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
link
partner: 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
eth1:
no link
proct
info: vendor 00:50:43, model 2 rev 3
basic
mode: autonegotiation
enabled
basic
status: no link
capabilities:
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
advertising:
100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control

[root@localhost
root]# mii-tool -w
21:20:33
eth0: negotiated 100baseTx-FD, link ok
21:20:33
eth1: no link
//mii-tool主要是用於配置網卡工作模式的指令,同時也可以進行查詢、監控等工作!

2)
[root@localhost /]# /etc/init.d/network status
Configured devices:
lo eth0 eth1
Currently active devices:
lo eth0
等同於
[root@localhost root]# service --status-all
............
............
Configured devices:
lo eth0 eth1
Currently active devices:
lo eth0
............
............
3)ifconfig -a
[root@localhost /]# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:09:6B:09:08:FC
inet addr:192.168.10.1 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: fe80::209:6bff:fe09:8fc/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:106732953 errors:0 dropped:0 overruns:0 frame:0
TX packets:104379788 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:2351331877 (2.1 GiB) TX bytes:391707945 (373.5 MiB)
Base address:0x2500 Memory:fbfe0000-fc000000
eth1 Link encap:Ethernet HWaddr 00:09:6B:09:08:FD
BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0x2540 Memory:fbfc0000-fbfe0000

4)ethtool

ethtool eth0
Settings for eth0:
Supported ports: [ MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Current message level: 0x000000ff (255)
Link detected: yes

ethtool eth1

Settings for eth1:
Supported ports: [ MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised auto-negotiation: Yes
Speed: Unknown! (0)
Duplex: Half
Port: Twisted Pair
PHYAD: 1
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Current message level: 0x000000ff (255)
Link detected: no
從上面可以看出eth0 處於連接狀態,eth1沒有連接

二. 查看網卡的配置

一般在linux下查看網路配置可以使用ifconfig命令,可以顯示當前網卡的基本配置信息。

終端輸入ifconfig 會出現一下內容:

eth0
Link encap:Ethernet HWaddr 00:0C:29:0C:4B:0F
inet addr:192.168.37.128 Bcast:192.168.37.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:33 errors:0 dropped:0 overruns:0 frame:0
TX packets:17 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:2823 (2.7 Kb)
TX bytes:2722 (2.6 Kb)
Interrupt:10 Base address:0x1080
他們分別表示:
Eth0:網路介面
link encap:網路類型
HWaddr:網卡物理地址
Inet addr :IP地址
Bcast:廣播地址
Mask:子網掩碼
UP:正在使用的網路介面
RX packets,TX packets接收和傳輸的數據包個數
RX byte,TX byte表示接搜和傳輸的具體數目
Interrupt:終端信息
Base address:內存地址

三. 網卡配置文件

如果希望每次啟動linux時,都能為你的網卡配置正確的網路地址,可以採用下列兩種方法:

1. 每次開機後,使用ifconfig手動重新設置網卡的配置;

2. 在開機流程中,將網路配置的設置保存在某些RC Script中。

第一種方式麻煩,第二種方式涉及到在哪個RC Script中配置網卡是比較適當的?

Linux啟動過程中會執行以下三個RC Script。

1. /etc/rc.d/init.d/rc.sysinit;

2. /etc/rc.d/init.d/rc;

3. /etc/rc.d/init.d/rc.local

為了維護Linux的穩定性,建議不要修改前兩項。但是,用ifconfig配置第三個RC Script的話,導致嚴重的問題:由於最後執行這個程序,在其執行之前,可能已經執行了數十項網路服務。因此,會造成一堆網路服務因為網卡尚未啟動而無法順利的啟動。

四、網卡配置文件

解決上述問題的方法:每一個網路介質都對應一個配置文件,超級用戶可以通過這些配置文件來配置網卡。

網卡配置文件存放在 /etc/sysconfig/network-scripts/目錄中;
/etc/sysconfig/network-scripts/ifcfg-interface-name

設置文件ifcfg-interface-name包含了初始化介面所需的大部分周詳信息。其中interface-name將根據網卡的類型和排序而不
同,一般其名字為eth0、eth1、ppp0等,其中eth表示以太(eth0)類型網卡,0表示第一塊網卡,1表示第二塊網卡,而ppp0則表示第一 個point-to-poirt protocol網路介面。在ifcfg文件中定義的各項目取決於介面類型。
下面的值較問常見:
》DEVICE=name ,其中,name是物理設備名。
》IPADDR=addr,其中,addr是IP地址。
》NETMASK=mask,其中,mask是網路掩碼值。
》NETWORK=addr,其中addr是網路地址。
》BROADCAST=addr,其中,addr是廣播地址。
》GATEWAY=addr,其中addr是網關地址。
》ONBOOT=answer,其中,answer是yes(引導時激活設備)或no(引導時不激活設備)
》USERCTL=answer,其中,answer是yes(非root用戶能控制該設備)或no
》BOOTPROTO=proto,其中,proto取下列值之一:none,引導時不使用協議;static靜態分配地址;bootp,使用BOOTP協議,或dhcp,使用DHCP協議。
(2)根據上述各參數的意義,設定linpcl.lintec.e.cn機器的設置文件如下:
[root@linpcl root]#cat /etc/sysconfig/networking/devices/ifcfg-rth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.0.2
NETMASK=255.255.255.0
GATEWAY=192.168.0.1

『陸』 linux虛擬系統determining IP information for eth0...failed; no link present.check cable無法激活!

正如提示所說的,你網卡燈是否亮?不亮,就看連接是否有問題。如果亮還出現這個提示,檢查下你網卡。

『柒』 虛擬機中linux網卡激活時,出現「determining IP information for eth0:1...failed;no link present.

看看網路服務是否啟動了 lo是本地回環網路 用於測試TCP/IP通訊等其他測試 不排除驅動未安裝的可能性 %A%A或者你的網卡被禁用了用命令 ifconfig eth0 up 試試看 能否啟用

『捌』 Determining IP information for eth0...failed;no link prent,check cable

這個不會導致系統不能系統,進入系統後,配置下網路就好了,下次就提示你success了,怎麼配,網上資料多的是

『玖』 急:Linux下因eth0無法連網

把ip設成自動獲得就行了吧
vi /etc/sysconfig/network-scripts/ifcfg-eth0
把裡面BOOTPROTO=static,改成BOOTPROTO=dhcp

『拾』 請問,你那時候「急:Linux下因eth0無法連網」這個問題是怎麼解決的啊,

link detected :no 代表你網線沒有連接好!

熱點內容
比特幣場外交易被騙怎麼辦 發布:2025-05-12 17:27:53 瀏覽:151
不賣礦機賣什麼 發布:2025-05-12 15:40:56 瀏覽:848
eth在哪個交易所要合法 發布:2025-05-12 15:05:10 瀏覽:901
元宇宙涉及電子行業 發布:2025-05-12 15:01:29 瀏覽:798
元宇宙可行嗎 發布:2025-05-12 14:49:17 瀏覽:505
區塊鏈運動app 發布:2025-05-12 14:28:28 瀏覽:81
實名認證不屬於去中心化嗎 發布:2025-05-12 14:00:46 瀏覽:79
區塊鏈APP查詢 發布:2025-05-12 13:34:49 瀏覽:922
達沃斯論壇里2019陽光區塊鏈 發布:2025-05-12 13:34:49 瀏覽:593
比特幣現金會歸零嗎 發布:2025-05-12 13:25:05 瀏覽:720