proftpd 에서 로그인 상태를 유지하려면?

goodbbai의 이미지

proftpd 를 사용중입니다.

윈도우 클라이언트에서 탐색기를 이용해서 접속하면

하위디렉토리에서 상위디렉토리로 이동할때 다시 로그인을 해야하더군요.

하위로 가는건 상관없구요..

로그인하고 세션이 생성되면 접속상태를 유지해주고

일정 시간동안 데이터 전송이 없으면 접속을 끊어주고 싶은데

어떻게 설정해야할까요?

http://www.proftpd.org/docs/directives/configuration_full.html 을 보고

설정을 만지작거려봤지만 잘 모르겠네요..

#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
 
# Includes DSO modules
Include /etc/proftpd/modules.conf
 
# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6                         on
 
ServerName                      "Debian"
ServerType                      standalone
DeferWelcome                    off
 
MultilineRFC2228                on
DefaultServer                   on
ShowSymlinks                    on
 
TimeoutNoTransfer               600
TimeoutStalled                  600
TimeoutIdle                     1200
 
DisplayLogin                    welcome.msg
DisplayFirstChdir               .message
ListOptions                     "-l -L"
 
DenyFilter                      \*.*/
 
# Port 21 is the standard FTP port.
Port                            21
 
# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
# PassivePorts                    49152 65534
 
# To prevent DoS attacks, set the maximum number of child processes
# to 30.  If you need to allow more than 30 concurrent connections
# at once, simply increase this value.  Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances                    30
 
# Set the user and group that the server normally runs at.
User                            proftpd
Group                           nogroup
 
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask                           022  022
# Normally, we want files to be overwriteable.
AllowOverwrite                  on
 
# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd              on
 
# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile                   off
 
TransferLog /var/log/proftpd/xferlog
SystemLog   /var/log/proftpd/proftpd.log
 
Defaultroot                     ~
bushi의 이미지

proftpd 설치하면 아마도 goodbbal 님이 원하는 바로 그 상태로 기본설정이 되어 있을것이고요.
상위로 이동할 때 로그인 다시 하는 것은 서버쪽 권한이 아니라 클라이언트 쪽 권한 같습니다.

탐색기라고 언급하신 것이 MS File/Internet Explorer 인가요 ?
어쨌든... 엄한 데서 고생하시는 것 같습니다.

goodbbai의 이미지

윈도우 탐색기의 문제가 맞는 것 같습니다.
다른 어떤 ftp 클라이언트에서도 이런 문제는 발생하지 않더군요.