Displaying 1 result from an estimated 1 matches for "tcp_time_wait".
Did you mean:
tcps_time_wait
2013 May 31
0
[Bug 775] -m owner ! --uid-owner False positive logging
...oved |Added
----------------------------------------------------------------------------
CC| |netfilter at linuxace.com
--- Comment #1 from Phil Oester <netfilter at linuxace.com> 2013-05-31 15:54:11 CEST ---
If the socket is in TCP_TIME_WAIT, then the uid will not be logged as it cannot
be determined:
if (!sk || sk->sk_state == TCP_TIME_WAIT)
return;
So you would need to figure out what state this socket is in when these "false
positives" are logged. I would suggest that given this limitation, yo...