Clearing all FTP sessions

6,565

You can close connection on your server using some commands:

  1. netstat + kill

    netstat -na
    kill PID
    
  2. tcpkill

    tcpkill -i eth0 host 10.0.0.1
    
  3. killcx (http://spamcleaner.org/en/misc/killcx.html)

    killcx <ip>:<port>
    
  4. tcpdrop command (FreeBSD):

    tcpdrop myhost.net:2353 example.com:ftp
    
Share:
6,565

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    I am receiving this error:

    enter image description here

    I've closed down all of my FTP Clients (I use Panic Transmit + Coda on my Macbook & Filezilla on my other laptop). And I've locked my FTP and unlocked it again from within the control panel.

    How do I end the session for all users currently connected via FTP to my server? (I'm thinking through Terminal?)