我正在尝试使用Proftpd配置SFTP.我已成功配置SFTP与Unix用户,但现在我想使用虚拟用户,因为我将有大量用户添加/删除.我希望用户使用用户名/密码登录.
为此,我首先按照教程使用SFTP和ProFTPd然后尝试其他人.
以下是SFTP服务器的配置:
Include /etc/proftpd/modules.conf
ServerName "Nom du FTP"
ServerType standalone
DefaultServer on
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in …Run Code Online (Sandbox Code Playgroud)