239_sakuravps2_NagiosのSSHエラーへの対処

NagiosでSSHのポート変更
http://easyramble.com/install-and-setup-nagios.html
ここを参考
「SSH の CRITICAL エラーへの対処」
SSH のポート番号を変更していたので、ポートを指定してテスト。
61202でOKになる!
# /usr/nagios-plugins-2.1.2/plugins/check_ssh -t 2 -p 61202 153.126.154.106
SSH OK – OpenSSH_5.3 (protocol 2.0) | time=0.089347s;;;0.000000;2.000000
ポート番号を変更しているのが理由であったため、コマンド定義の設定ファイルを編集。check_ssh コマンドの定義に SSH 用のポート番号のオプションを付加する。今回の環境では SSH のポート番号は61202。
# vi /usr/local/nagios/etc/objects/localhost.cfg
define service{
use                             local-service         ; Name of service template to use
host_name                       localhost
service_description             SSH
#check_command                  check_ssh
check_command                   check_ssh! -p 61202
#notifications_enabled          0
notifications_enabled           1
}# service nagios restart

(はたして???直ったかな???)
OK!!!!やったー!!ありがと>
以上