vine-users ML アーカイブ



[vine-users:057383] Re: standalone で起動した ProFTPD に接続できません

  • From: satoh <satoh-ml@xxxxxxxxxxxxx>
  • Subject: [vine-users:057383] Re: standalone で起動した ProFTPD に接続できません
  • Date: Mon, 6 Jan 2003 17:09:42 +0900
佐藤@北海道ですーー

> #ftp    stream  tcp     nowait  root    /usr/sbin/tcpd  in.ftpd -l -a
> #ftp    stream  tcp     nowait  root    /usr/sbin/tcpd  in.proftpd
> telnet  stream  tcp     nowait  root    /usr/sbin/tcpd  in.telnetd
> #

これを
#ftp    stream  tcp     nowait  root    /usr/sbin/tcpd  in.ftpd -l -a
ftp    stream  tcp     nowait  root    /usr/sbin/tcpd  in.proftpd
telnet  stream  tcp     nowait  root    /usr/sbin/tcpd  in.telnetd
#

になおす

> (proftpd.conf)の内容は以下のようになっています。
> ServerName      "ProFTPD Basic Configuration"
> ServerType       standalone
> DefaultServer                   on
> 
> Port                            21
> Umask                           022
> MaxInstances                    30
> 
> User                            nobody
> Group                           nobody
> 
> <Directory /*>
>   AllowOverwrite                on
> </Directory>
> 
> <Limit LOGIN>
> Order deny,allow
> Deny from ALL
> Allow from 192.168.0.0/255.255.255.0
> </Limit>

これを

ServerName      "すきななまえ"
ServerType       inetd
DefaultServer                   on
 
Port                            21
Umask                           022
MaxInstances                    30

User                            nobody
Group                           nobody
 
<Directory />
   AllowOverwrite                on
</Directory>

このようにする

> 以上の環境で
> /etc/rc.d/init.d/proftpd start
> として
> /etc/rc.d/init.d/proftpd status
> proftpd (pid 767) is running...

ではなくて、
/etc/rc.d/init.d/inet restart
と打つ

やってみてください。