Quantcast
Channel: GoLinuxHub
Viewing all articles
Browse latest Browse all 392

How to find ethernet network card firmware and driver information in Linux

$
0
0
Based n the Linux Variant you use the commands and their output may differ. I have worked on Red hat Enterprise Linux and SuSE Enterprise Linux and below commands and method have been really very useful to get the driver and firmware details of the Ethernet Network Card connected to the system

I prefer using the OS provided tools and not some other third party tools because just to get the NIC driver and firmware version I don't want to go through all browsing, download, getting over my firewall, copying to my blade (as in office environment generally we don't have internet access to our Linux blades) when we already have bunch of OS provided tools which can be used for this purpose.

Below command can be used on both SuSE and RHEL which has two different sections with separate firmware and driver version details.
# ethtool -i eth0
driver:be2net
version:11.2.1263.16
firmware-version:11.2.1263.19
expansion-rom-version:
bus-info: 0000:06:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: no
supports-priv-flags: yes

Based on the driver name you get from the above command you can get more details on the module it is using from below command
# modinfo be2net
filename:       /lib/modules/3.10.0-693.5.2.el7.x86_64/weak-updates/be2net/be2net.ko
supported:      external
license:        GPL
author:         Emulex Corporation
description:   
Emulex OneConnect NIC Driver 11.2.1263.16
version:        11.2.1263.16

Few more examples on a hardware with different Ethernet Network card





# ethtool -i eth0
driver:igb
version:5.2.15-k
firmware-version:2.1.5
bus-info: 0000:01:00.0
supports-statistics: yes
supports-test: yes
supports-eeprom-access: yes
supports-register-dump: yes

# modinfo igb
filename:       /lib/modules/3.0.101-100-default/kernel/drivers/net/ethernet/intel/igb/igb.ko
version:        5.2.15-k
license:        GPL
description:   
Intel(R) Gigabit Ethernet Network Driver
author:         Intel Corporation, <e1000-devel@lists.sourceforge.net>

Below are some more commands you can use to get the NIC firmware and driver related details and information

On SLES

# hwinfo --network | grep Driver | sort | uniq
  Driver Modules: "igb"
  Driver: "igb"

On RHEL 7

Next is 'lshw' utility, if this is not available you can get this from the Red Hat repo.
NOTE: This is available on Red Hat Enterprise Linux
# rpm -qf /usr/sbin/lshw
lshw-B.02.18-7.el7.x86_64

# lshw -c network
  *-network:0
       
description: Ethernet interface
       
product: OneConnect NIC (Skyhawk)
       
vendor: Emulex Corporation
       physical id: 0
       bus info: pci@0000:06:00.0
       logical name: eth0
       version: 10
       serial: 00:17:a4:77:00:0e
       size: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msix pciexpress vpd bus_master cap_list rom ethernet physical autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=be2net driverversion=11.2.1263.16 duplex=full firmware=11.2.1263.19 latency=0 link=yes multicast=yes slave=yes speed=1Gbit/s

As you see here it also gives us enough detailed information about the available Ethernet Card with the firmware and driver version along with the driver name

Follow the below links for more tutorials

How to find the path of any command in Linux
How to configure a Clustered Samba share using ctdb in Red Hat Cluster
How to delete an iscsi-target from openfiler and Linux
How to perform a local ssh port forwarding in Linux
How to use yum locally without internet connection using cache?
What is umask and how to change the default value permanently?
Understanding Partition Scheme MBR vs GPT
How does a successful or failed login process works in Linux
How to find all the process accessing a file in Linux
How to exclude multiple directories from du command in Linux
How to configure autofs in Linux and what are its advantages?
How to resize software raid partition in Linux
How to configure Software RAID 1 mirroring in Linux
How to prevent a command from getting stored in history in Linux



Viewing all articles
Browse latest Browse all 392

Latest Images

Trending Articles



Latest Images