个人工具

UbuntuHelp:FtpServer/zh

来自Ubuntu中文

Liwey讨论 | 贡献2008年3月26日 (三) 08:15的版本

跳转至: 导航, 搜索



 

3种不同使用方式下的ftp服务器的安装。这就下文要讨论的

有3种不同的方式安装ftp服务器: (1) * 匿名FTP :可以用不要密码的匿名帐号访问服务器。当然,服务器管理员可能会设定一些限制来防止用户上传一些非法文件,比如盗版的音乐/电影/游戏。 (2) * FTP既可匿名访问又可使用带密码的用户帐号: 这种方式使得匿名用户和密码用户都可以登录服务器。他们只能访问指定的文件夹, 只有root用户才能对所有的文件或文件夹进行读/改/删除的操作。(3) *'带mysql支持的'FTP对虚拟用户进行授权:这个方法对于那些没有获取虚拟用户授权的系统上的shell帐户,它们中仅有某些用户组能够访问服务器。它使用外部的mysql服务器来存储用户信息。

第一种方式:匿名FTP

在开始创建匿名ftp服务器之前,你需要向系统添加一个ftp用户,并带有一个主文件夹。这一步很简单,只要下面这些命令就可以了:

useradd -d /home/ftp/ftp -s /bin/false ftp

mkdir -p /home/ftp/upload

对该文件夹进行授权,使得只有该用户对其是可写的。你可以使用指定ftp服务器更多的行为。下面列出几个例子:

  • -e 只允许匿名用户访问服务器
  • -B 以后台守护方式启动服务器
  • -i 匿名用户不能上传文件
  • -M 匿名用户可以创建文件夹
  • -s 不能下载ftp用户文件

Second Option : Both anonymous and passworded account users

To make it possible to have both anonymous and passworded account users in the same server, follow this small guide :

  • -B ,-i ,M, -r, -s same of before
  • -u <uid> Enable users with a specified user id (uid) to access the server
  • -V <Ip address> Only specified IPs will be able to access the server in non-anonymous mode

Third Option : Virtual Users with Mysql

To create a server with mysql support follow this steps :

More options to add before launch the server process

  • -c <num> Max client that can connect to the server
  • -C <num> Max connections for a IP
  • -T <bandwitdh> Max bandwitdh disponible for each connection
  • -n <MBytes> Max MB that a user can have into its home folder
  • -m <Cpu Loading> Stops the anonymous uploads if the cpu loading exceed from this value

Thats all.