how to stop socket in linux :
socket ==>
root@root:/home/aa/test# netstat | grep 3966
tcp 0 0 server:3966 server:57004 TIME_WAIT
thank
how to stop socket in linux :
socket ==>
root@root:/home/aa/test# netstat | grep 3966
tcp 0 0 server:3966 server:57004 TIME_WAIT
thank
Try this. Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo netstat -ap | grep :<port_number>
Also you can try this to close the socket connection
tcpkill -i eth0 host xxx.xxx.xxx.xxx and port yyyy
Replace X with the IP address, and Y with the port number.
also take a look at tcpkill and cutter command
pcap_compile: syntax error tcpkill: couldn't initialize sniffing
– Ellouze Anis Jul 17 '13 at 11:18sudobefore tcpkill might help – RickyA Mar 30 '16 at 08:11sudo: tcpkill: command not found– kwoxer Jun 02 '16 at 11:41tcpkill.sudo apt-get install dsniff– Mitch Jun 02 '16 at 11:44kill -9 .... No use of an extra tool. Worked well with kill. – kwoxer Jun 02 '16 at 18:32