Menu="NetworkServices:999" Title="FTP Server" Icon="ftp-server.png" --- $ftp_userlist_file = "/boot/config/vsftpd.user_list"; $ftp_userlist = ""; if (file_exists($ftp_userlist_file)) { $ftp_userlist = str_replace("\n", " ", trim(file_get_contents($ftp_userlist_file))); if ($ftp_userlist === false) $ftp_userlist = ""; } $ftp_server = exec("lsof -i:21 -Pln|awk '/\(LISTEN\)/{print $2;exit}'") ? 1 : 0; ?>
> ### Overview > > unRAID includes the popular `vsftpd` FTP server. The configuration of `vsftp` is currently very > simple: **All** user names entered above are permitted to access the server via FTP and will have > *full read/write/delete access* to the entire server, so use with caution.