How to check the hardware information of a network card in CentOS 7?
To view network card hardware information in CentOS 7, you can use the following command:
- List PCI devices
lspci | grep -i net
- displaying network interface configuration details
ifconfig -a
- ethernet tool
ethtool eth0
Please replace eth0 with the network interface name you want to view.