살다보면..
원치않는 이들이 있지.
자~ 막아 보자.
ex) willow
1) 원치않는 이들이있다고 설정 (아니면,노출되면 안되는 계정)
[root@itest vsftpd]# vi /etc/vsftpd/vsftpd.conf
userlist_enable=YES
tip 옵션 설명 : userlist_enable=YES 인경우 vsftpd.user_list 목록의 계정을 차단한다.
- userlist_enable
- If enabled, vsftpd will load a list of usernames, from the filename given byuserlist_file.If a user tries to log in using a name in this file, they will be deniedbefore they are asked for a password. This may be useful in preventingcleartext passwords being transmitted. See alsouserlist_deny. Default: NO
출처 :
http://vsftpd.beasts.org/vsftpd_conf.html
2) 막을 사람(=계정)목록을 작성하자.
[root@itest vsftpd]# vi /etc/vsftpd.user_list
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
# for users that are denied.
root
bin
daemon
~
nobody
willow
3) 설정적용하자. (restart)
[root@itest vsftpd]# /etc/rc.d/init.d/vsftpd restart
vsftpd를 종료하고 있습니다: [ 확인 ]
vsftpd에 대한 vsftpd을 시작합니다: [ 확인 ]