如何使用linux命令停止套接字?

如何使用linux命令停止套接字?

如何在Linux中停止套接字:

插座 ==>

root@root:/home/aa/test# netstat | grep 3966      
tcp        0      0 server:3966       server:57004       TIME_WAIT  

感谢

答案1

试试这个。只需按下键盘上的Ctrl+ Alt+T即可打开终端。打开后,运行以下命令:

sudo netstat -ap | grep :<port_number>

您也可以尝试此操作来关闭套接字连接

tcpkill -i eth0 host xxx.xxx.xxx.xxx and port yyyy

将 X 替换为 IP 地址,将 Y 替换为端口号。

也看看tcpkill切割器命令


相关内容