This alert calculates the ratio of inbound dropped packets for a specific network interface over the last 10 minutes. If you receive this alert, it means that your WiFi network interface dropped a significant number of packets, which could be due to lack of resources or unsupported protocol.
In the context of networking, "inbound dropped packets" means that packets were received by the network interface but were not processed. This can happen due to various reasons, including:
Using the top
command, check the resource utilization (CPU, memory, and I/O) in your system. High resource usage might indicate that your system is struggling to process the incoming packets.
top
Check if there are any hardware issues or misconfigurations in your WiFi adapter or network interface. Refer to your hardware's documentation or manufacturer's support for troubleshooting steps.
Make sure your network device drivers are up-to-date.
Use the iftop
command to monitor network traffic on your interface. High network traffic can cause congestion, leading to dropped packets. If you don't have it installed, follow the installation instructions.
sudo iftop -i <interface_name>
Inbound dropped packets may be caused by unsupported network protocols. Use the tcpdump
command to examine network traffic for any abnormalities or unknown protocols.
sudo tcpdump -i <interface_name>
Remember to replace <interface_name>
with the actual name of the WiFi network interface causing the alert.