Hi,
Ich habe mit vsftpd einen FTP-Server eingerichtet.
meine Configurationsdatei ist folgende:
|
Quellcode
|
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
|
# Allow anonymous FTP?
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can have your log file in standard ftpd xferlog format
xferlog_std_format=YES
#
pam_service_name=vsftpd
userlist_enable=YES
#enable for standalone mode
listen=YES
tcp_wrappers=YES
|
Wenn ich mich mit meinen FTP Daten (User und Passwd vom System) also 'hauke' und mein Passwd anmelde, dann kann ich auf mein Home Verzeichniss '/home/hauke' zugreifen. Ich möchte aber auch auf
'/pup/hda3/Ordner/hauke' und '/pub/hda3/Musik' zugreifen.
der Ordner '/pub/hda3/Software-Windows' soll nicht sichtbar sein.
Weiß einer wie das geht und wie man für Verschiedende Nutzer andere Verzeichnisse angeben kann?
Ich habe schon gegooglet, aber keine Antwort gefunden.
)