2700Jのwu-ftpd をproftpdに入れ換えるための情報


この作業をすることによって、何らかトラブルが発生するかもしれません。 作業はすべて自己責任でお願いします。

作業

(0) ftp://ftp.cobaltnet.com/pub/experimental/security/proftpd/proftpd-1.2.0pre9-C7NOPAM.mips
    を取得する

(1) telnetで2700Jにroot user権限でログインする

(2) 下記のコマンドで wu-ftpd を削除する。
    rpm -e wu-ftpd-2.4.2b15-2

(3) 下記のコマンドで proftpd-1.2.0pre9-C7NOPAM をインストールする。
    rpm -ivh proftpd-1.2.0pre9-C7NOPAM.mips

(4) /etc/proftpd.conf を作成する。

----------------- ここから
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use.  It establishes a single server
# and a single anonymous login.  It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.

ServerName   "ProFTPD"
ServerType   inetd
DeferWelcome   off
DefaultServer   on
DefaultRoot   / admin
DefaultRoot   / root
DefaultRoot   ‾ !admin
RootLogin   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    002

# Set the user and group that the server normally runs at.
User    nobody
Group    nobody

# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwrite  on
</Directory>

#
----------------------- ここまで

(5) 下記のコマンドで inetd を再起動する。
    kill -HUP `cat /var/run/inetd.pid`

(6) 問題なく動作することを確認して作業終了。

Feb. 2000.
Thanks for Hatayama.


This page is administrated by
Cobalt Users Group. (usersgroup@cobaltqube.org)
All rights are reserved.
[BACK]