[Memo2014][ITPASS]不要なネットワークサービスを止める

/etc/init.d/ 以下のネットワークサービスの停止

exim4 の再設定を行った.

# export LANG=C
# dpkg-reconfigure exim4-config

設定画面で local delivery only のみになっていることを確認した. 他はデフォルトのままにした.

その後, 端末に

Stopping MTA for restart: exim4_listener.
Restarting MTA: exim4.

と表示された.

その他の /etc/init.d 以下から起動されるネットワークサービスの停止

# cd /etc/rc2.d
# insserv -r portmap      <- ポート指定サービス
# /etc/init.d/portmap stop
# insserv -r hplip        <- プリンタソフトウェア
# /etc/init.d/hplip stop
# insserv -r bittorrent   <- ファイル転送用ソフトウェア
# /etc/init.d/bittorrent stop
# insserv -r cupsys       <- プリンタ管理サービス
# /etc/init.d/cupsys stop
# insserv -r nfs-common   <- ファイル共有システム
# /etc/init.d/nfs-common stop

以下のサービスはファイルが存在しなかった.

hplip, bittorrent, cupsys, portmap

/usr/sbin/inetd によって起動されるネットワークサービスの停止

openbsd-inetd をインストールした.

# apt-get install openbsd-inetd

/etc/inetd.conf を編集して不必要なサービスが上がらないようにした.

# vi /etc/inetd.conf

ただし, 全てコメントアウトされていたので, 編集は行わなかった.

inetd のプロセスを再起動した.

# /etc/init.d/openbsd-inetd restart

起動するインターネットサービスがないと言われることを確認した.

[ITPASSサーバ構築・運用ドキュメント へ戻る]

Last modified:2014/10/28 17:51:01
Keyword(s):
References:[[ITPASS2014]2014年度サーバ構築ログ]