|
有两个文件夹ftp1,ftp2.分别位于两个不同的分区中(都是reiserfs格式)
刚装好proftpd并且配置好了
关于anonymous的配置如下
<Anonymous /home/ftp1>
User ftp
Group nogroup
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
# Cosmetic changes, all files belongs to ftp user
DirFakeUser on ftp
DirFakeGroup on ftp
RequireValidShell off
AnonRequirePassword off
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
</Anonymous>
匿名用户能够正常访问,但是为了让匿名用户也能同时访问ftp2文件夹(位于另一分区),我将ftp2 文件夹下的所有文件用 ln链接至ftp1 文件夹中.可是匿名用户仍然无法访问ftp2中的文件(ftp2文件夹以及子文件夹的权限设置与ftp1 完全一样)
不知道我这样做是不是根本就不对.
请问各位有什么好方法来实现同时对两个不同分区的文件夹进行访问
在次谢过. |
|