Check Linux Network Card Status: 3 Methods
To check the status of the network card in a Linux system, you can use the following command:
- Check the status of the network card using the ifconfig command.
ifconfig
- Use the command ip addr to check the status of the network card.
ip addr
- Check the status of the network card using the ethtool command.
ethtool eth0
eth0 is the name of the network card, which can be replaced with the corresponding network card name as needed. By using the above command, you can view the IP address, MAC address, status, speed, and other information of the network card.