nim*_*e51 4 ubuntu virtual sftp proftpd
我正在尝试使用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 inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30
RequireValidShell off
# Set the user and group under which the server will run.
User proftpd
Group nogroup
SFTPEngine on
Port 2222
SFTPLog /var/log/proftpd/sftp.log
TransferLog /var/log/proftpd/sftp-xferlog
# Host Keys
SFTPHostKey /etc/ssh/ssh_host_rsa_key
SFTPHostKey /etc/ssh/ssh_host_dsa_key
# Auth methods
SFTPAuthMethods password
AuthUserFile /etc/proftpd/sftp.passwd
AuthGroupFile /etc/proftpd/sftp.group
# SFTP specific configuration
DefaultRoot ~
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
Run Code Online (Sandbox Code Playgroud)
我使用命令生成了密码ftpasswd --hash.
但是,当我尝试使用FileZilla进行连接时,我收到了以下消息:
Authentification failed
Critical error
Can't establish a connection to the server
Run Code Online (Sandbox Code Playgroud)
当我查看proftpd的日志时:
2014-09-08 15:13:53,636 mod_sftp/0.9.9[6343]: error using DisplayLogin 'welcome.msg': No such file or directory
2014-09-08 15:13:53,637 mod_sftp/0.9.9[6343]: sent server version 'SSH-2.0-mod_sftp/0.9.9'
2014-09-08 15:13:53,704 mod_sftp/0.9.9[6343]: received client version 'SSH-2.0-PuTTY_Local:_Jun__1_2014_11:08:49'
2014-09-08 15:13:53,704 mod_sftp/0.9.9[6343]: handling connection from SSH2 client 'PuTTY_Local:_Jun__1_2014_11:08$
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session key exchange: diffie-hellman-group-exchange-sha256
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session server hostkey: ssh-rsa
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session client-to-server encryption: aes256-ctr
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session server-to-client encryption: aes256-ctr
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session client-to-server MAC: hmac-sha2-256
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session server-to-client MAC: hmac-sha2-256
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session client-to-server compression: none
2014-09-08 15:13:53,711 mod_sftp/0.9.9[6343]: + Session server-to-client compression: none
2014-09-08 15:13:54,142 mod_sftp/0.9.9[6343]: sending acceptable userauth methods: password
2014-09-08 15:13:56,764 mod_sftp/0.9.9[6343]: sending userauth failure; remaining userauth methods: password
2014-09-08 15:13:56,764 mod_sftp/0.9.9[6343]: client sent SSH_MSG_IGNORE message (160 bytes)
2014-09-08 15:13:56,832 mod_sftp/0.9.9[6343]: error reading from client (fd 0): Connection reset by peer
2014-09-08 15:13:56,832 mod_sftp/0.9.9[6343]: disconnecting client (Connection reset by peer)
Run Code Online (Sandbox Code Playgroud)
我不明白为什么它不起作用.如果我只是删除行:
AuthUserFile /etc/proftpd/sftp.passwd
AuthGroupFile /etc/proftpd/sftp.group
Run Code Online (Sandbox Code Playgroud)
该连接与Unix用户完美配合.我忘了什么吗?
我正在使用Ubuntu服务器14.04.
如果在proftpd.conf中使用以下内容会发生什么:
# Tell proftpd to only use the AuthUserFile/AuthGroupFile
AuthOrder mod_auth_file.c
Run Code Online (Sandbox Code Playgroud)
另外,从proftpd.conf中删除它:
SFTPAuthMethods password
Run Code Online (Sandbox Code Playgroud)
mod_sftp模块自动发现它可以为客户端提供的auth方法.具体来说,"键盘交互式"auth方法通常是客户想要使用"密码"的东西,"键盘交互式"也可以使用您配置的AuthUserFile.
希望这可以帮助!
| 归档时间: |
|
| 查看次数: |
9467 次 |
| 最近记录: |