Il est bien souvent utile de trouver les processus attachés à un port actif.
Pour le savoir, utiliser une astuce de la commande 'rmsock'.
Utiliser tout d'abord 'netstat -Aan' pour obtenir :
(/root)# netstat -Aan |grep 21
f10007000016cbb0 tcp 0 0 *.21 *.* LISTEN
f100070002d21bb0 tcp4 0 0 192.168.33.180.471 192.168.33.158.22 ESTABLISHED
Puis, la commande 'rmsock' avec les arguments suivant : 'rmsock f10007000016cbb0 tcpcb' qui retourne :
root@nimtsm01(/root)# rmsock f10007000016cbb0 tcpcb
The socket 0x16c808 is being held by proccess 168074 (inetd).
#
Le port étant déjà utilisé, la socket n'est pas détruite.