How to check the network interface card status in Linux?

To check the operating status of the network card in a Linux system, you can use the following command:

  1. Check the network card information and status using the ifconfig command.
ifconfig
  1. Use the ip command to view network card information.
ip addr show
  1. Check the status and speed of the network card using the ethtool command.
ethtool eth0
  1. Check network connections and interface status using the netstat command.
netstat -i

You can check the status and related information of the network card in the Linux system using the command above.

bannerAds