1

We have an FTP server setup using ProFTPD and CentOS, ProFTPD has been setup with FTP, FTPS, FTPES and SFTP access.

We have a user who only wants to allow access to their account via SFTP.

Is there away in ProFTPD to disable protocols on a per user basis?

Thanks

Epaphus
  • 1,021
  • 6
  • 8

1 Answers1

1

worked it out and I using the

  <IfUser username>
    <Limit LOGIN>
      DenyAll
    </Limit>
  </IfUser>

stuff in the virtual host for each protocol.

Epaphus
  • 1,021
  • 6
  • 8