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