I am facing a really bad issue and I am pathetic in networking concepts. When I try to connect to a system using tcp protocol I am getting failure but if I connect to the same system after some time I would get a success.
Scenario : I disconnect to the target environment and obviously there are no connections established to the target which is confirmed by using the below command netstat -na|grep 10.11.12.13 I initiate a fresh request netstat -na|grep 10.11.12.13 I get a failure which is given in the below
tcp 0 182 ::ffff:127.0.0.1:1234 ::ffff:10.11.12.13:8444 ESTABLISHED
I try to initiate again after some time with same request netstat -na|grep 10.11.12.13 I get to see connections in ESTABLISHED mode.
I observed the difference only in the second third column of netstat results which says with value 182 which I did not see when my request is successful. I would like to know what does this 182 stands for.
ESTABLISHEDeven in case connection fails? - Prabhu