Linux-Noob Forums
VSFTP - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html)
+--- Forum: How Do I? (https://www.linux-noob.com/forums/forum-60.html)
+--- Thread: VSFTP (/thread-3181.html)



VSFTP - godskalk - 2004-08-28


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.




VSFTP - Oroshi - 2004-08-28


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 :)




VSFTP - godskalk - 2004-08-28


Thanks for your guide,

but it seems that the right commando is:



Code:
netstat | grep :ftp




That works :)




VSFTP - Oroshi - 2004-08-28

No problem mate :)



VSFTP - Guest - 2004-09-03

ftpwho -v should work also. :P