Linux-Noob Forums

Full Version: VSFTP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

How do i get to see who is connected to my ftp,

what they are downloading and how fast they are downloading?

 

Using vsftpd on fedora core 2.


I am not sure about that, but you can see user's IP connect to your FTP using:

 



Code:
$ netstat |grep :21




 

it scan the active connections and only look for port 21 (default FTP port)

 

I think there is a log for FTP can be found in /var/log

this only works if you enable the log from vsftp's conf

 

hope this help you :)


Thanks for your guide,

but it seems that the right commando is:



Code:
netstat | grep :ftp




That works :)

No problem mate :)

Guest

ftpwho -v should work also. :P