Автор Тема: Proftpd проблем  (Прочетена 908 пъти)

baimile

  • Участници
  • ***
  • Публикации: 3
    • Профил
Proftpd проблем
« -: Jun 11, 2006, 13:09 »
telnet localhost 21
Trying 127.0.0.1...
Connected to localhost (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.



какво трябва да настроя за да оправя това
Активен

senser

  • Напреднали
  • *****
  • Публикации: 1328
    • Профил
Proftpd проблем
« Отговор #1 -: Jun 11, 2006, 13:41 »
По-правилно е да се пита: "какво си направил дотук, че да получиш такъв резултат".
Ако не си разбрал намека - ето ти го в прав текст: "дай повече информация какво си настроил, инсталирал, ...... и т.н."

П.П. Сега видях, че става дума за "секцията за напреднали". Без да се обиждаш, ама явно не ти е тука мястото ;-)



Активен

  • Гост
Proftpd проблем
« Отговор #2 -: Jun 11, 2006, 14:36 »
инсталирал съм IspConfig
и Proftpd при опит да се свържа с Web-FTP инструмента на програмата ISpconfig
Ми дава грешката  Could not connect to localhost
пробвам с
telnet localhost 21
Connected to localhost (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.

Разрешил съм
iptables -A INPUT -p icmp -j ACCEPT --icmp-type echo-request
iptables -A OUTPUT -p icmp -j ACCEPT --icmp-type echo-request
Имам пинг към всички ип-та включително и localhost


ето и proftpd.conf ми
ServerName         "ProFTPD Default Installation"
ServerType         standalone

DefaultServer on

# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on

# Port 21 is the standard FTP port.
Port 21

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask            022

# 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 under which the server will run.
User            nobody
Group            nogroup

# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot ~

# Normally, we want files to be overwriteable.
AllowOverwrite      on

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
  DenyAll
</Limit>

# Needed for NIS.

PersistentPasswd              off

# Default root can be used to put users in a chroot environment.
# As an example if you have a user foo and you want to put foo in /home/foo
# chroot environment you would do this:
#
# DefaultRoot /home/foo foo
IdentLookups off
ServerIdent on "FTP Server ready."
Активен