- 论坛徽章:
- 0
|
在一个生产服务器上,我知道8888端口为侦听端口,用netstat查看时发现有如下输出:\r\n\r\nbash-2.03$ netstat -an -P tcp|grep 8888\r\n Local Address Remote Address Swind Send-Q Rwind Recv-Q State\r\n-------------------- -------------------- ----- ------ ----- ------ -------\r\n10.34.5.241.8888 *.* 0 0 65928 0 LISTEN --> 表明8888为侦听端口\r\n10.34.5.241.39434 10.34.5.241.8888 73620 0 81800 0 ESTABLISHED -- > 这行可以理解, 8888为侦听端口即可\r\n10.34.5.241.8888 10.34.5.241.39434 81800 0 73620 0 ESTABLISHED --> 这行无法理解, 39434应该为侦听端口才可以\r\n但是39434端口不是侦听端口,下面的命令给出证明。\r\nbash-2.03$ netstat -an -P tcp|grep 39434\r\n10.34.5.241.39434 10.34.5.241.8888 73620 0 81800 0 ESTABLISHED\r\n10.34.5.241.8888 10.34.5.241.39434 81800 0 73620 0 ESTABLISHED\r\n\r\n连接以环的方式存在,这在编程上是如何实现的?\r\n\r\n先谢谢了 |
|