FTP 无法在 FreeNAS 上运行

FTP 无法在 FreeNAS 上运行

我正在尝试设置一些客户端用户帐户以便通过 FTP 访问我们的 FreeNAS 服务器。

SFTP 可以工作,但 FTP 不行。例如,我创建了一个用户client,有主文件夹/mnt/raid-5x3/alpha/ftp/client1

但当client1尝试登录时,服务器返回530 login incorrect并日志显示

Apr 19 20:53:51 whNAS proftpd[39911]: 192.168.1.99 ___ - notice: unable to use '~/' [resolved to '/mnt/raid-5x3/alpha/ftp/client1/']: Permission denied 
Apr 19 20:53:51 whNAS proftpd[39911]: 192.168.1.99 ___ - chroot to '~/' failed for user 'client1': Operation not permitted 
Apr 19 20:53:51 whNAS proftpd[39911]: 192.168.1.99 ___ - error: unable to set default root directory 

我检查了权限:

root@whNAS /mnt/raid-5x3/alpha/ftp > ls -al 
total 107 
drwxrwxrwx 5  root    whstaff    6 Apr 19 20:06 ./ 
drwxrwx--- 18 root    whstaff   22 Apr 18 18:44 ../ 
drwxrwx--- 2  drew    whstaff    4 Dec 12 2012  .AppleDouble/ 
-rw-rw---- 1  jaclyn  whstaff 6148 Apr 18 15:53 .DS_Store 
drwxrwxrwx 2  client1 whclients 10 Apr 19 20:06 client1/ 
drwxr-xr-x 2  guest   whclients 10 Dec 11 2012  guest/

答案1

/mnt/raid-5x3/alpha/client1对于用户或来说不可执行whclients,因此无法进入路径。请检查路径的其余部分,从 开始/。最好对所有人都可执行。

相关内容