TOP > Linux > Fedoraの技 > 001-100 > 049
vsftpdでanonymous接続を拒否するには
初期設定ではanonymous接続(誰でもログイン可能でダウンロードのみのサービス)が設定されていますが、不要であれば利用しないほうがセキュリティ上望ましいでしょう。$ ftp localhost
〜略〜
Name (localhost:john): ftp
331 Please specify the password.
Password:
230 Login successful.
vsftpd.confでanonymous接続の設定を"NO"とし、vsftpdを再起動します。
# vi /etc/vsftpd/vsftpd.conf
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO YESをNOとします
# service vsftpd restart
下記のようにanonymous接続は拒否されます。
$ ftp localhost
〜略〜
Name (localhost:john): ftp
331 Please specify the password.
Password:
530 Login incorrect.
Login failed.
2005-12-03 作成