This alert is triggered when the number of inbound dropped packets for a network interface exceeds a specified threshold during the last 10 minutes. A dropped packet means that the network device could not process the packet, hence it was discarded.
Run the vmstat
command to get a report about your system statistics.
vmstat 1
Check if the CPU or memory usage is high. If either is near full utilization, consider upgrading system resources or managing the load more efficiently.
Run the ifconfig
command to get more information on the network interface.
ifconfig <INTERFACE>
Look for the RX dropped
field to confirm the number of dropped packets.
Use iftop
or nload
to monitor the network traffic in real time. If you don't have these tools, install them:
sudo apt install iftop nload
iftop -i <INTERFACE>
nload <INTERFACE>
Identify if there is unusually high traffic on the network interface.
Check the system logs for any errors related to the network interface or driver:
sudo dmesg | grep -i "eth0"
sudo journalctl -u networking.service
If you find any errors, you can research the specific problem and apply the necessary fixes.