all
Recently I am debugging a problem on unix system, by using command
netstat -s
and I get an output with
$ netstat -s
// other fields
// other fields
TCPBacklogDrop: 368504
// other fields
// other fields
I have searched for a while to understand what does this field means, and got mainly two different answers:
- This means that your tcp-date-receive-buffer is full, and there are some packages overflow
- This means your tcp-accept-buffer is full, and there are some disconnections
Which is the correct one? any offical document to support it?