Setting up FTP

Status
Not open for further replies.

pamiller3

Dabbler
Joined
Dec 16, 2011
Messages
23
I am just about to setup an FTP service on my FreeNAS for several users in my project group and I am worried about some settings. Currently I am running Filezilla but FreeNAS has got everything else handled fine, why not more.

My restrictions are the following though:

Several users
Not all users need access to the same folders
Lots of data on several volumes

Example:
HDD1 HDD2 HDD3
User A only needs write access to one folder on HDD1 and full view access on HDD2 & 3
Admin A needs write access to everything

I am worried on how the setup process will go. Any advice would be appreciated.
 

Cosmin

Cadet
Joined
Aug 18, 2011
Messages
9
Well i use .ftpaccess file with the following content:

<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>

It gives me some errors in console because it is a partial file, but it works. It also protect the subdirectorys.
I have a hardlink to an "upload" directory where i give unrestricted write with another .ftpaccess file but with this content:

<Directory upload>
<Limit WRITE>
AllowAll
</Limit>
</Directory>
 
Status
Not open for further replies.
Top