linux如何查看網卡
『壹』 linux如何查看本機以太網卡名
ifconfig 就可以看
這個是看當前系統啟動了的網卡信息的 類似eth0 eth1等等
如果沒有啟動版的話 可以到/etc/sysconfig/network-scripts去看配置文件權
cat ifcfg-eth0 或 cat ifcfg-eth1
用ifup eth0可以將網卡啟動
1
『貳』 如何在Linux 下查看網卡硬體信息
方法一:復
ethtool eth0 採用此命令可以查看制到網卡相關的技術指標
(不一定所有網卡都支持此命令)
ethtool -i eth1 加上 -i 參數查看網卡驅動
可以嘗試其它參數查看網卡相關技術參數
方法二:
也可以通過dmesg | grep eth0 等看到網卡名字(廠家)等信息
通過查看 /etc/sysconfig/network-scripts/ifcfg-eth0 可以看到當前的網卡配置包括IP、網關地址等信息。
當然也可以通過ifconfig命令查看。
如果你用的是紅帽發行版的話,可以去看下這個,你可以學到一些其他的東西http://www.linuxprobe.com/chapter-02.html這個裡面還有很多其他的命令,相信會對你有些好處呢
『叄』 怎樣查看 linux 的網卡信息
查看 linux 的網卡信息步驟如下:
工具原料:linux操作系統
①啟動 linux 操作系統,進入到桌面;
④linux 的網卡信息解讀:
1.查看網卡生產廠商和信號:
查看基本信息:lspci
查看詳細信息:lspci -vvv # 3個小寫的v
查看網卡信息:lspci | grep Ethernet;
2.查看網卡驅動:
查看網卡驅動信息:lspci -vvv # 找到網卡設備的詳細信息,包括網卡驅動
# lsmod 列出載入的所有驅動,包括網卡驅動;
3.查看網卡驅動版本
查看模塊信息:modifo<mole name> # 其中包含version信息或 # ethtool-i <device name>;
4.查看網路介面隊列數
查看網卡介面的中斷信息:#cat /proc/interrupts | grep eth0或 # ethtool-S eth0;
5.查看網卡驅動源碼的版本號
解壓Intel網卡驅動源碼,打開解壓縮目錄下的*.spec文件查看驅動的版本;
『肆』 怎麼查看linux光口網卡數
使用setup 命令,看網卡具體型號。一般光口網卡都是10Gb的。 使用lspci |grep Network 查看網卡具體型號確定。 使用ethtool eth* 命令查看網卡詳細信息,port 類型為:FIBRE 的即時光口網卡。
『伍』 linux如何查看物理網卡地址
1、這里以ubuntu為例,演示查看物理網卡地址的方法,首先按下Alt+F12打開終端輸入框:內
『陸』 如何在linux中獲取網卡信息
在 $ 狀態下面(普通用戶)、或者是 # 狀態下面(超級用戶),輸入:ifconfig <cr>,即可獲取網卡信息。使用如下:
#ifconfig <cr>
『柒』 linux下如何看網卡是千兆還是百兆的
linux下如何看網卡是千兆還是百兆的方法如下:
使用ethtool命令。
ethtool是Linux下用於查詢及設置網卡參數的命令。
舉例:
[root@hvrhub ~]# ethtool eth0
Settings for eth0:
Supported ports: [ TP MII ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
Advertised auto-negotiation: Yes
Speed: 100Mb/s ------------------------------------>網卡速度
Duplex: Full
Port: MII
PHYAD: 0
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: pumbg
Wake-on: g
Current message level: 0x00000033 (51)
Link detected: yes
詳細參數參考:(//後面是注釋,是原文的譯文)
ethtool ethX /
ethtool –h //顯示ethtool的命令幫助(help)
ethtool –i ethX //查詢ethX網口的相關信息
ethtool –d ethX //查詢ethX網口注冊性信息
ethtool –r ethX //重置ethX網口到自適應模式
ethtool –S ethX //查詢ethX網口收發包統計
ethtool –s ethX [speed 10|100|1000] //設置網口速率10/100/1000M
[plex half|full] //設置網口半/全雙工
[autoneg on|off] //設置網口是否自協商
[port tp|aui|bnc|mii] //設置網口類型
『捌』 在linux下如何通過命令查網卡配置
在linux下通過命令查網卡配置的方法如下:
1、首先在電腦上打開Linux系統,然後進入Linux系統的終端內窗口。
『玖』 linux中怎麼查看網卡型號
1.lspci | grep -i ethernet
[root@localhost ~]# lspci | grep -i ethernet
01:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
01:00.1 Ethernet controller: Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
02:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
02:00.1 Ethernet controller: Broadcom Corporation NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
2.kudzu
#kudzu --probe --class=network
3.查看完整硬體信息
[root@localhost ~]# dmidecode |less
Proct Name: PowerEdge R610
Serial Number: 1DHD13X
BIOS
網卡等消息
[root@localhost ~]# dmidecode |grep -A 5 Ethernet