-
Notifications
You must be signed in to change notification settings - Fork 58
/
0042.html
96 lines (88 loc) · 4.68 KB
/
0042.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Installing Free Filezilla FTP Server with LDAP Authentication</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="UTF-8">
<meta name="keywords" content="How To FTP Server LDAP Authentication,How To Setup FileZilla Server LDAP,FTP,LDAP,Windows,FileZilla,FTP Server,Home Lab,Install Guide,Self-Hosted,Active Directory,Administration,Authentication,File Transfer Protocol,FileZilla Server Setup,Free Software,Microsoft Windows,Microsoft,Network,System Administrator,Secure FTP Server,Self-hosted,FTP LDAP Authentication,FTP Windows User Auth,How To,Tutorial,i12bretro">
<meta name="author" content="i12bretro">
<meta name="description" content="Installing Free Filezilla FTP Server with LDAP Authentication">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="revised" content="03/26/2022 09:50:55 AM" />
<link rel="icon" type="image/x-icon" href="includes/favicon.ico">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="includes/js/steps.js"></script>
<link href="css/steps.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="gridContainer">
<div class="topMargin"></div>
<div id="listName" class="topMargin">
<h1>Installing Free Filezilla FTP Server with LDAP Authentication</h1>
</div>
<div></div>
<div id="content">
<h2>Installing FileZilla Server</h2>
<ol>
<li>Download FileZilla with LDAP support, FzLDAP <a href="https://sourceforge.net/projects/fzldap/" target="_blank">Download</a></li>
<li>Install the downloaded executable</li>
<li>Launch FileZilla Server Administration</li>
<li>Select Edit > Settings from the top navigation</li>
<li>Click LDAP from the left navigation</li>
<li>Check the Enable LDAP support box</li>
<li>Fill out the LDAP server, port and domain name</li>
<li>Click OK</li>
</ol>
<h2>Adding Individual LDAP Users</h2>
<ol>
<li>Back in Server Administration click Edit > Users</li>
<li>Click the Add button under Users</li>
<li>Enter the username exactly as it is in LDAP</li>
<li>Leave the Password checkbox unchecked</li>
<li>Under the Check password in section uncheck LOCAL and check the LDAP option</li>
<li>Click Shared folders under the Page section</li>
<li>Click the Add button and browse to folder(s) to share with the new user</li>
<li>Set the users permissions to the right of the directories box</li>
<li>Click OK once finish with configuration.</li>
</ol>
<h2>Batch Importing LDAP Users</h2>
<ol>
<li>From the Start menu launch FzLDAP Import</li>
<li>Fill out the LDAP server information
<p>Server: i12bretro.local<br />
Port: 389<br />
Domain: i12bretro.local<br />
User: readonly_svc<br />
Password: Read0nly!!<br />
Base DN: DC=i12bretro,DC=local<br />
Search DN: CN=Users,DC=i12bretro,DC=local<br />
Search: cn=*</p>
</li>
<li>A list of users found with the LDAP search will display > Click Next</li>
<li>Set the FTP root directory path</li>
<li>Click the Generate button</li>
<li>A summary will be displayed > Click OK</li>
<li>Click the ed button next to users.txt to view the generated users file</li>
<li>Open File Explorer and navigate to C:\Program Files (x86)\FileZilla Server</li>
<li>Edit FileZilla Server.xml in a text editor</li>
<li>Copy the user(s) generated in users.txt to the Users node of FileZilla Server.xml</li>
<li>Save the changes to FileZilla Server.xml</li>
<li>Right click on the Start button > Run > type services.msc > Press Enter</li>
<li>Find the FileZilla Server FTP server and restart the service</li>
<li>Load FileZilla Server Administration</li>
<li>Click Edit > Users from the top navigation</li>
<li>The imported user(s) should be listed and editable</li>
</ol>
<h2>Testing LDAP Authentication</h2>
<ol>
<li><label for="cb_li_445432_0">Download FileZilla FTP client </label><label for="cb_li_445432_0"><a href="https://filezilla-project.org/download.php?show_all=1" target="_blank">Download</a></label></li>
<li><label for="cb_li_743670_1">Extract the downloaded FileZilla .zip file</label></li>
<li><label for="cb_li_743670_1">Launch FileZilla.exe</label></li>
<li>Enter the FileZilla server DNS name or IP address in the host field</li>
<li>Enter the LDAP credentials in the username and password fields</li>
<li>Click the Quickconnect button</li>
</ol>
</div>
</div>
</body>
</html>