zoukankan      html  css  js  c++  java
  • Linux服务器配置---ftp配置

    FTP其他配置

          在配置文件中,还有一些关于vsftpd的其他设置,这里列出来

    # Example config file /etc/vsftpd/vsftpd.conf

    # 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    //是否允许获取目录信息

    # 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

    # You may change the default value for timing out an idle session.

    #idle_session_timeout=600    //连接空闲超时

    #

    # You may change the default value for timing out a data connection.

    #data_connection_timeout=120    //数据请求超时

    # You may activate the "-R" option to the builtin ls. This is disabled by

    # default to avoid remote users being able to cause excessive I/O on large

    # sites. However, some broken FTP clients such as "ncftp" and "mirror" assume

    # the presence of the "-R" option, so there is a strong case for enabling it.

    #ls_recurse_enable=YES    //是否允许ls命令使用-R参数,递归

    # You may specify an explicit list of local users to chroot() to their home

    # directory. If chroot_local_user is YES, then this list becomes a list of

    # users to NOT chroot().

    #chroot_local_user=YES    //是否允许用户切换目录

    #chroot_list_enable=YES    //是否允许指定的用户切换目录,用户名单在/etc/vsftpd/chroot_list文件中

    # (default follows)

    #chroot_list_file=/etc/vsftpd/chroot_list  //这个文件中的用户不能切换目录

        

  • 相关阅读:
    [置顶] 内外网同时访问,我的拿来主义
    Nginx防攻击工具教程一 ngx_http_limit_conn_module
    晒晒我的厨艺修炼成果
    在 javascript 中,为什么 [1,2] + [3,4] 不等于 [1,2,3,4]?
    无法解析的外部符号__imp__AlphaBlend@44的解决
    Win32 API实现CDC类的FillSolidRect接口
    pugixml库学习之添加节点
    cleanup failed because the file not under version control问题的解决
    JavaScript 的 typeof 的用途
    支持在Win7和XP系统上创建环境变量的批处理文件
  • 原文地址:https://www.cnblogs.com/wj78080458/p/10030182.html
Copyright © 2011-2022 走看看