[ITPASS2009]tcpserverのインストールと設定
tcpserver のインストールと設定
inetd からの qmail 起動を停止
テストのために記述していた /etc/inetd.conf の smtpで始まる行をコメント アウトする. そして, inetdを再起動する.
# /etc/init.d/openbsd-inetd restart
smtp ポートを listen しているプログラムがないことを netstat -l で確認する.
# netstat -l
ソースの取得と展開, パッチ当てとmake
参考: <URL:http://cyberam.dip.jp/linux_server/mail/qmail_main.html>
# wget http://tools.qmail.jp/ucspi-tcp/ucspi-tcp-0.88.tar.gz # wget http://qmail.org/moni.csi.hu/pub/glibc-2.3.1/ucspi-tcp-0.88.errno.patch # tar xfz ucspi-tcp-0.88.tar.gz # cd ucspi-tcp-0.88 # patch -p1 < ../ucspi-tcp-0.88.errno.patch
インストール先を /usr/local/ucspi-tcp に変更. すなわち, conf-home の一行目を /usr/local/ucspi-tcp に書き換える.
# make # make setup check
/etc/local/ 以下に下記のファイルおよびディレクトリがあることを確認した.
- ucspi-tcp-0.88.tar.gz
- ucspi-tcp-0.88/
- ucspi-tcp-0.88.errno.patch
起動テスト
使いかたは
# tcpserver
とすると出力される. 詳しくは<URL:http://cr.yp.to/ucspi-tcp/tcpserver.html>に書いてある.
qmaildのUID, nofilesのGIDを確認した.
$ id qmaild
uid=113(qmaild) gid=200(nofiles) groups=200(nofiles)
以下を実行し, tcpserverを起動.
# tcpserver -u xxxx -g yyyy 0 smtp /var/qmail/bin/qmail-smtpd &
ここで, xxxx は qmaild の UID, yyyy は nofiles の GID である.
メール受信テストを [ITPASS2009]qmailのインストールと設定#smtp(仮) を参考にやってみる. すなわち, 他のホストから自分のメールアドレスに宛ててメールを送り, 受信できる事を確認する.
起動スクリプト作成
/etc/init.d 以下に tcpserver があり, 所有者と所有グループが root で, パーミッションが 755 であることを確認する. さらに, vi などで /etc/init.d/tcpserver の NAME=tcpserver の上に以下が追記されていることを確認する.
### BEGIN INIT INFO # Provides: tcpserver # Required-Start: $remote_fs # Required-Stop: $remote_fs # Should-Start: $network $syslog # Should-Stop: $network $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start and stop tcpserver # Description: tcpserver is tcpserver ### END INIT INFO
確認後, update-rc.d スクリプトでランレベルごとの設定を行う.
# update-rc.d tcpserver defaults
ホスト制限設定
smtp 中継を許可するホストを指定する. <URL:http://man.qmail.jp/faq/faq5.html#5.4.>を参考に
ホストリストファイル tcp.smtp を作成し, そのファイルを元に CDB データ ベースファイルを作成する.
/usr/local/ucspi-tcp/etc の下に tcp.smtp があることを確認し, 以下を書く.
# 133.30.XXX.XXX:allow,RELAYCLIENT="" # 127.:allow,RELAYCLIENT=""
1 行目の 133.30.110.202 は後で設定確認するための作業用である. 作業者がアカウントを持つ他のマシンの IP アドレスを記入する. ここでは 133.30.110.202 とした.
次に以下のコマンドを実行して, tcp.smtp.cdb を作る.
# tcprules tcp.smtp.cdb tcp.smtp.tmp < tcp.smtp
ホスト制限確認
tcpserver プロセスを再起動する.
# /etc/init.d/tcpserver restart Stopping smtp server: tcpserver... Starting smtp server: tcpserver...
先ほど /usr/local/ucspi-tcp/etc/tcp.smtp に書いた IP アドレス(ここでは, 133.30.110.202) を持つ計算機 (joho02) から telnet でアクセスし, メールサーバ以外のホストへのメール送信を試みる. (下記のコマンドについては <URL:http://man.qmail.jp/jinstall/test.receive.html> 参照). プロンプト入力時には, 左端に '>' を記してある. 実際には表示されない.
% telnet tako-itpass.scitec.kobe-u.ac.jp 25 Trying 133.30.109.21... Connected to tako-itapss.scitec.kobe-u.ac.jp. Escape character is '^]'. 220 tako-itpass.scitec.kobe-u.ac.jp ESMTP > helo dude 250 domain > mail <hoge1_at_stu.kobe-u.ac.jp> 250 ok > rcpt <hoge2_at_stu.kobe-u.ac.jp> # <- 実在のアドレスへ (アドレスを, <>で囲むのを忘れずに) 250 ok > data 354 go ahead > Subject: testing > > This is a test. > . 250 ok 812345679 qp 12345 > quit 221 domain Connection closed by foreign host. %
このメールが届くことを確認した. 次に, /usr/local/ucspi-tcp/etc/tcp.smtp から 133.30.110.XX:allow,RELAYCLIENT="" を削除して tcprules コマンドを実行し, tcpserver を restart した後に同様の作業を行う. この際には rcpt <hogehoge_at_stu.kobe-u.ac.jp> を入力した段階で
553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
というエラーメッセージが返り, メールの送信を拒絶することを確認する. 次に, /usr/local/ucspi-tcp/etc/tcp.smtp から 133.30.110.XX:allow,RELAYCLIENT="" を削除して tcprules コマンドを実行し, tcpserver を restart した後に同様の作業を行う. この際には rcpt <hogehoge_at_stu.kobe-u.ac.jp> を入力した段階で
553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
というエラーメッセージが返り, メールの送信を拒絶することを確認した.
ホスト制御データベース更新スクリプト
tcprules などのコマンドを覚えておくのは面倒なので, /usr/local/ucspi-tcp/etc/ 以下に更新スクリプト を置いてある. tcprules を覚えているというのであれば, 以下は必要ない.
/usr/local/ucspi-tcp/etc/tcp.smtp を更新後は
$ /usr/local/ucspi-tcp/etc/tcp_smtp_update.sh update
でデータベースファイルが更新され, tcpserver プロセスが再起動する.
上のスクリプトを実行する.
# /usr/local/ucspi-tcp/etc/tcp_smtp_update.sh update
以下のように表示されれば成功.
Updating /usr/local/ucspi-tcp/etc/tcp.smtp.cdb using /usr/local/ucspi-tcp/etc/tcp.smtp /usr/local/ucspi-tcp/bin/tcprules /usr/local/ucspi-tcp/etc/tcp.smtp.cdb /usr/local/ucspi-tcp/etc/tcp.smtp.tmp /etc/init.d/tcpserver restart Restarting tcpserver Stopping smtp server: tcpserver Starting smtp server: tcpserver Update is successful.
更新したデータベースの内容に応じて正しくメールが送れていることを確認できたら OK.
Keyword(s):
References:[[ITPASS2009]2009年度サーバ構築ログ] [[ITPASS2010]tcpserverのインストールと設定] [[Memo2010][ITPASS] tako 構築作業ログ 8 (MAIL1)]