我遇到了同样的问题。warning, got duplicate tcp line

我遇到了同样的问题。warning, got duplicate tcp line

[root@localhost ~]# netstat -lnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name   
tcp        0      0 0.0.0.0:32768               0.0.0.0:*                   LISTEN      2736/rpc.statd      
      
warning, got duplicate tcp line.

这个是以前论坛里写的。我的net-tools已经 到了
[root@localhost ~]# rpm -aq|grep net-tool
net-tools-1.60-37.EL4.6
现在难道继续升级么。
没遇到过的,可以看下下面的帖子
http://bbs.chinaunix.net/thread-692257-1-1.html
楼主头像好看  
本人照片..加我 给你看 新照的。.呵呵,不过得帮我解决问题。.嘿嘿


[Copy to clipboard] [ - ]
CODE:
It is likely an artifact of having tcp_tw_recycle and tcp_tw_reuse enabled in the sysctl settings. To check if you have these parameters set run the following commands:

sysctl net.ipv4.tcp_tw_recycle
sysctl net.ipv4.tcp_tw_reuse

The output value of 1 means they are enabled. These kernel parameters can be disabled with the following entries in /etc/sysctl.conf:

net.ipv4.tcp_tw_reuse = 0
net.ipv4.tcp_tw_recycle = 0

Execute sysctl -p to make these new settings take effect.