添加 - Ftpd 的端口范围配置

This commit is contained in:
suwings 2018-04-16 18:14:31 +08:00
parent 1f1b1907f5
commit 7077150867
2 changed files with 10 additions and 3 deletions

View File

@ -22,14 +22,14 @@ ftpServerInterface.createFTPServer({
let dataModel = serverModel.ServerManager().getServer(serverName).dataModel || null;
if (dataModel) {
MCSERVER.infoLog('Ftpd', ['用户', realName, '请求 FTP 访问 |', serverName, '| 同意'].join(" "));
MCSERVER.infoLog('Ftpd', ['用户', realName, '请求 FTP 访问 |', serverName, '| OK'].join(" "));
return dataModel.cwd;
}
MCSERVER.warning('Ftpd 发现不明身份不明根目录者正在尝试访问', ['已经阻止 | 可能的值', username, serverName].join(" "));
return null;
},
pasvPortRangeStart: 30100,
pasvPortRangeEnd: 31000,
pasvPortRangeStart: MCSERVER.localProperty.ftp_start_port,
pasvPortRangeEnd: MCSERVER.localProperty.ftp_end_port,
tlsOptions: null,
allowUnauthorizedTls: false,
useWriteFile: false, //true 则客户端上传的文件将缓冲在内存中然后使用写入磁盘writeFile。

View File

@ -34,6 +34,13 @@ else
/*--------------- 配置开始,这与 Minecraft 服务器配置几乎差不多 --------------- */
//FTP 被动模式端口范围
//你可能需要对你的服务器防火墙进行设置, 开放这个端口段来确保 FTP 传输数据的正常工作
//开始范围
MCSERVER.localProperty.ftp_start_port = 20010;
//结束范围
MCSERVER.localProperty.ftp_end_port = 20200;
//控制台实时刷新频率 单位毫秒 默认1200 毫秒
//建议在 1000 毫秒 与 3000 毫秒之选择
MCSERVER.localProperty.console_send_times = 1200;