I'm trying to investigate why the amounts of connections between two physical hosts 10.240.48.9
и 10.241.169.7
(CentOS 6
) don't match each other (diagnosed from the each one respectively):
On 10.241.169.7
:
$ sudo netstat -lnpa | grep tcp | grep ESTABLISHED | grep 10.240.48.9 | wc -l
54
On 10.240.48.9
:
$ sudo netstat -lnpa | grep tcp | grep ESTABLISHED | grep 10.241.169.7 | wc -l
189
Why is it possible at all? I guess there is a connection leak on the side of 10.240.48.9
, but how to find out which software is leaking?