नागोस के साथ गैर-डिफ़ॉल्ट पोर्ट पर मॉनिटर ssh


10

मैंने सिर्फ एक जेंटू सर्वर पर नागियोस को तैनात किया और ssh को छोड़कर सब कुछ ठीक है, जो इसे "CRITICAL" के रूप में चिह्नित करता है क्योंकि यह कनेक्शन से इनकार कर रहा है। लेकिन ऐसा इसलिए है क्योंकि यह डिफ़ॉल्ट 22 से अलग पोर्ट पर चल रहा है। मैं इसे कैसे बदलूं ताकि यह सही पोर्ट पर नजर रखे?

जवाबों:


6
host:~$ /usr/lib/nagios/plugins/check_ssh --help
check_ssh v1991 (nagios-plugins 1.4.12)
Copyright (c) 1999 Remi Paulmier <remi@sinfomic.fr>
Copyright (c) 2000-2007 Nagios Plugin Development Team
        <nagiosplug-devel@lists.sourceforge.net>

Try to connect to an SSH server at specified server and port


Usage:check_ssh [-46] [-t <timeout>] [-r <remote version>] [-p <port>] <host>

क्या इससे आपके सवाल का जवाब मिलता है? -p पैरामीटर आपको पोर्ट निर्दिष्ट करने देता है, /etc/nagios/nrpe.cfg में कस्टम चेक करता है और वहां डालता है:

command[check_remote_ssh]= /usr/lib/nagios/plugins/check_ssh -p 1234 some.host

1
इसने काम कर दिया! मेरे मामले में यह स्थानीय check_sshथा /etc/nagios/objects/commands.cfg। आपकी मदद के लिए धन्यवाद :)
हेल्डर एस रिबेरो

15

Ssh प्‍लगिंग कॉन्‍फ़िगर /etc/nagios-plugins/config/ssh.cfg में, check_ssh_port नाम का एक उपनाम है। यदि यह मौजूद नहीं है तो आप इसे ऊपर की तरह परिभाषित कर सकते हैं:


$ cat >> /etc/nagios-plugins/config/ssh.cfg
define command{
        command_name    check_ssh_port
        command_line    /usr/lib/nagios/plugins/check_ssh -p '$ARG1$' '$HOSTADDRESS$'
        }

सेवा फ़ाइल /etc/nagios3/conf.d/services_nagios2.cfg में, इस तरह की निगरानी के लिए आपको ssh सेवा परिभाषित करें:


define service {
        hostgroup_name                  ssh2-servers
        service_description             SSH2
        check_command                   check_ssh_port!12000!server
        use                             generic-service
        notification_interval           240 ; set > 0 if you want to be renotified
}
अपने लक्ष्य द्वारा डिफ़ॉल्ट ssh पोर्ट और सर्वर द्वारा 12000 को बदलें।



6

जैसा कि ऊपर दिए गए किसी भी समाधान ने मेरे लिए काम नहीं किया है, मैं इस छोटे बदलाव को पोस्ट करूंगा।

यह परिभाषा localhost.cfg-p विकल्प के एकमात्र जोड़ और बीच में स्थान के साथ डिफ़ॉल्ट एक (जैसे :) है।

मुझे लगता है कि यह दिए गए समाधानों में से दो का एक संकर संस्करण है।

यह नैगियो-प्लगिन 2.1.1 के साथ नागियोस कोर 4 पर काम करता है

define service{
        use                             local-service         ; Name of service template to use
        host_name                       localhost
        service_description             SSH
        check_command                   check_ssh!-p 12345
        notifications_enabled           1
        }

इसे Nagios4 वेब इंटरफेस में भी बदला / कॉन्फ़िगर किया जा सकता है: सिस्टम -> कॉन्फ़िगरेशन , फिर check_ssh!-p 123456उदाहरण के लिए विस्मयादिबोधक चिह्न और कमांडलाइन विकल्पों को जोड़ना ।
ILMostro_7

3

आप इस तरह host_name पैरामीटर में दूसरे पैरामीटर, "सर्वर" को भी परिभाषित कर सकते हैं:

    define host{
        use                     generic-host            ; Name of host template to use
        host_name               host
        alias                   host
        address                 92.193.170.124
}


# Define a service to check if ssh services are running
define service {
        use                     generic-service         ; Name of service template to use
        host_name               host
        service_description     SSH Port 4959
        check_command           check_ssh_port!4959
        notification_interval   0 ; set > 0 if you want to be renotified
}

इसलिए, यदि होस्ट का पता बदल जाता है, तो आपको इस होस्ट के लिए परिभाषित सभी सेवाओं के लिए केवल एक बार इस पैरामीटर को संशोधित करना होगा।


0
define service{
        use                     generic-service
        host_name               localhost
        service_description     SSH
        check_command           check_ssh!-p 9898
        }

ठीक से काम करके आप इसे आजमा सकते हैं।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.