12.04でのVSFTPD構成の問題


13

そのため、今日Ubuntuサーバーを12.04 LTSにアップグレードしましたが、VSFTPDは機能しません。更新後にこのVSFTPdが動作を停止したことに関連すると思います

ただし、その投稿の質問者とは異なり、エラーメッセージは表示されません。ログオンすると、

220 (vsFTPd 2.3.5)
331 Please specify the password.
Password: 
530 Login incorrect.
ftp: Login failed

私はパスワードが正しいことを知っており、複数のユーザーを試しました。vsftpd.logには次のものしか表示されません。

Tue May  1 15:19:48 2012 [pid 2] CONNECT: Client "192.168.1.133"
Tue May  1 15:19:53 2012 [pid 1] [USERNAME] FAIL LOGIN: Client "192.168.1.133"

syslogには何も表示されません。これが私のVSFTPD.conf(ほとんどがデフォルト)です:

listen=YES
anonymous_enable=NO
local_enable=YES
check_shell=NO
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem

前の質問で言及したコマンドを試してみましたが、役に立ちませんでした。

sudo chmod a-w /home/user

おかげで、すべてのあなたの助けに感謝します!

回答:


22

vsftpd.confで

次の変更を行います。pam_service_name= ftp

変更を保存し、ftpサーバーを再起動します。


どうもありがとう!あなたはこれがどれほどの痛みであるか信じられないでしょう!
クリスエドワーズ

5
ソリューションについて詳しく説明してください。
frhd

どこでvsftpd.confを見つけることができます。..
オリバー・ディクソンに

これで問題が解決しました!WTF。なぜこれがデフォルトのサービス名ではないのですか?PAMサービスとは何ですか?
danger89

500 OOPS:priv_sock_get_resultログインに失敗しました。421サービスは利用できません、リモートサーバーは接続を閉じました
Ascherer

1

この理由が得られる理由はいくつかあります。

ファイアウォール->> Tcp_wrapper->> PAM->> SElinux->> FTPService->>ファイル。

  1. 最初に、/ etc / vsftpd / ftpusers / etc / vsftpd / user_listで特定のユーザーがブロックされているかどうかを確認します

  2. 同じものについては、SElinux ContextまたはBooleanを確認してください。

  3. PAMディレクトリファイルをチェックインします。/etc/pam.d/vsftpd

auth required pam_shells.so

ユーザーが/ etc / shellsのように必要なシェルを持っていない場合、/ etc / shellsで指定されたシェルと同じエラーチェックgetent passwdユーザー名が一致します。


0

最初にfirefoxまたはブラウザを介してFTPにログインしてみてください。ログインできない理由が必ず返されます。

これは、ログイン資格情報そのものであるかどうかを確認するための予防策と同じです。


0

vsftpの現在のpam構成には、FTPユーザーの場合に回避したい有効なシェルを保持するための要件が​​含まれているようです。

# Standard behaviour for ftpd(8).
auth    required    pam_listfile.so item=user sense=deny file=/etc/ftpusers onerr=succeed

# Note: vsftpd handles anonymous logins on its own. Do not enable pam_ftp.so.

# Standard pam includes
@include common-account
@include common-session
@include common-auth
auth    required    pam_shells.so

最後に、auth required pam_shells.soをコメントするだけです。したがって、これは必要ありません。

または、すべてのftpユーザーにログインを追加します。

他のコメントで提案されているように名前を変更しても、拒否ファイルが失われるので意味がありません。



-1

FTP接続を行うときに注意するプロトコル接続があります。

これらの接続はユーザーの訪問に応答し、現在のユーザーが認証されると有効になります。

FTPでは、パッシブモードがアクティブでない場合にこのエラーが発生します。

以下の設定ファイルはvsftpdソフトウェアに従って設定され、すべての設定が適切に設定されていると同時にエラーはありません。

アクティブ、パッシブモード、およびファイアウォールポートを許可します。2000から2500 / TCP

pasv_enable=Yes
pasv_max_port=2500
pasv_min_port=2000

%100 Vsftpd構成ファイルの修正:/etc/vsftpd/vsftpd.conf

# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=NO
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
#xferlog_file=/var/log/xferlog
#
# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file
xferlog_std_format=YES

pam_service_name=vsftpd
pasv_enable=Yes
pasv_max_port=2500
pasv_min_port=2000
tcp_wrappers=YES

これらの設定をすべて行ったら、ファイアウォール設定を忘れずに構成してください。

  • TCP着信:2000から2500および21
  • TCP発信:2000から2500および21

ルートアクセスにftp://を使用できないことを忘れないでください。ルートにアクセスするには、sftp://を使用する必要があります。

FTP新規アカウント追加:

  • adduser newftpuser
  • passwd newftpuser

デフォルトのftpフォルダー:

  • / home / newftpuser

何か意味がありますか?@ K7AAY
アフメットバークバシャラン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.