ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • vsftp 특정계정 FTP 접속 막기
    Programming 2007. 12. 21. 16:47
    살다보면..
    원치않는 이들이 있지.
    자~ 막아 보자.

    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을 시작합니다:                         [  확인  ]

    'Programming' 카테고리의 다른 글

    리눅스에서 ssh 자동로그인 (OpenSSH)  (1) 2008.02.19
    vsftp install (yum version)  (0) 2007.12.21
    vi, vim  (0) 2007.12.20

    댓글

Designed by Tistory.