Nagios: Difference between revisions

8,116 bytes added ,  4 years ago
 
(16 intermediate revisions by the same user not shown)
Line 123:
}
</pre>
 
 
= Monitoring FreeRadius Server =
; Preparing Script
 
Install [[Radius_Server]]
 
Test Radius Server using radtest
radtest aman pwd@123 127.0.0.1 0 testing123
 
Goto below URL:
https://exchange.nagios.org/directory/Plugins/Network-Protocols/RADIUS/check_radius-2Epl/details
 
Downlaod this script:
wget https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=1838&cf_id=24
 
Check install location of radclient:
locate radclient
 
Change the location in script:
sudo nano check_radius.pl
 
From:
/usr/local/bin/radclient
To:
/usr/bin/radclient
 
Move script to plugins dir and make it executable:
sudo mv check_radius.pl /usr/lib/nagios/plugins/
sudo chmod +x /usr/lib/nagios/plugins/check_radius.pl
 
Test the script:
/usr/lib/nagios/plugins/check_radius.pl -H 127.0.0.1 -P 1812 -s testing123
Radius response time 0.015447 seconds | 'Response Time'=0.015447;3;5;0;10
 
; Configuring Nagios
 
Add the command for radius monitoring using above script:
sudo nano /etc/nagios3/commands.cfg
 
<pre>
#################
# Check_Radius
#################
 
define command{
command_name check_radius
command_line /usr/lib/nagios/plugins/check_radius.pl -H '$HOSTADDRESS$' -P '$ARG1$' -s '$ARG2$'
}
</pre>
 
Add Radius monitoring service to the cfg file:
sudo nano /etc/nagios3/conf.d/vm1-localhost_nagios2.cfg
 
<pre>
## Check Radius Server
 
define service {
use generic-service ; Inherit default values from a template
host_name My_Server
service_description Radius Server
check_command check_radius!1812!testing123
}
</pre>
 
Restart Nagios:
sudo service nagios3 restart
 
= NRPE =
Line 201 ⟶ 268:
Refer: https://github.com/obaarne/Nagios2Slack/archive/master.zip
 
;Add Nagios Commands:
sudo nano /etc/nagios3/commands.cfg
 
Line 217 ⟶ 285:
</pre>
 
;Update the Contact to add above commands:
sudo nano /etc/nagios3/conf.d/contacts_nagios2.cfg
 
sudo nano /etc/nagios3/conf.d/contacts_nagios2.cfg
<pre>
define contact{
Line 234 ⟶ 303:
 
 
;Create Service Alert Script
 
sudo nano /usr/local/bin/nagios_slack_service_alert.py
 
<syntaxhighlight lang="python">
#!/usr/bin/env python3
from slackclient import SlackClient
import argparse
 
# /usr/local/bin/nagios_slack_alert.py -nt "$NOTIFICATIONTYPE$" -ha "$HOSTALIAS$" -sd "$SERVICEDESC$" -ss "$SERVICESTATE$" -had $HOSTADDRESS$ -so $SERVICEOUTPUT$
# -nt "Down" -sd "SNMP SRV" -ss "Srv DOwn" -ha "My-Host-Alias" -so "sometest" -had "1.2.3.4"
 
token = 'xoxp-353634854-309156544575-359146663110-95d597hfghghtr57e31166a42822'
sc = SlackClient(token)
 
parser = argparse.ArgumentParser()
parser.add_argument("-nt", "--notificationtype")
parser.add_argument("-ha", "--hostalias")
parser.add_argument("-sd", "--servicedesc")
parser.add_argument("-ss", "--servicestate")
parser.add_argument("-had", "--hostaddress")
parser.add_argument("-so", "--serviceoutput")
 
args = parser.parse_args()
 
notificationtype = str(args.notificationtype)
hostalias = str(args.hostalias)
servicedesc = str(args.servicedesc)
servicestate = str(args.servicestate)
hostaddress = str(args.hostaddress)
serviceoutput = str(args.serviceoutput)
 
colors = 0
if "CRITICAL" in servicestate:
colors = 'danger'
elif 'OK' in servicestate:
colors = 'good'
else:
colors = '#ffee00'
 
attachments = []
attachments.append({
'title': 'ServiceDesc: ' + servicedesc,
'text': 'Service State: ' + servicestate + '\n' + 'Host Alias: ' + hostalias + '\n' +'IP: ' + hostaddress + '\n',
'color': colors,
'footer': 'Service Output: ' + serviceoutput
#'ts': longdatetime
})
 
formatted_result = ({
'title': 'Execution Results',
'attachments': attachments,
'as_user': 'false'
})
 
response = sc.api_call('chat.postMessage', channel="@aman",
text='Nagios Service Alert: ' + notificationtype, **formatted_result, username='My Bot',
icon_emoji=':brief_case:')
 
if not response['ok']:
print('Slack Error: {}'.format(response['error']))
</syntaxhighlight>
 
 
;Create Host Alert Script
sudo nano /usr/local/bin/nagios_slack_host_alert.py
 
<syntaxhighlight lang="python">
#!/usr/bin/env python3
from slackclient import SlackClient
import argparse
 
# /usr/local/bin/nagios_slack_alert.py -nt "$NOTIFICATIONTYPE$" -ha "$HOSTALIAS$" -hs $HOSTSTATE$ -had $HOSTADDRESS$ -ho $HOSTOUTPUT$
# -nt "Down" -hs "DOWN" -ha "My-Host-Alias" -ho "sometest" -had "1.2.3.4"
 
token = 'xoxp-353634854-309156544575-359146663110-95d597hfghghtr57e31166a42822'
sc = SlackClient(token)
 
parser = argparse.ArgumentParser()
parser.add_argument("-nt", "--notificationtype")
parser.add_argument("-ha", "--hostalias")
parser.add_argument("-hs", "--hoststate")
parser.add_argument("-had", "--hostaddress")
parser.add_argument("-ho", "--hostoutput")
 
args = parser.parse_args()
 
notificationtype = str(args.notificationtype)
hostalias = str(args.hostalias)
hoststate = str(args.hoststate)
hostaddress = str(args.hostaddress)
hostoutput = str(args.hostoutput)
 
colors = 0
if "DOWN" in hoststate:
colors = 'danger'
elif 'UP' in hoststate:
colors = 'good'
else:
colors = '#ffee00'
 
attachments = []
attachments.append({
'title': 'Host Alias: ' + hostalias,
'text': 'Host State:' + hoststate + '\n' + 'IP:' + hostaddress,
'color': colors,
'footer': 'Host Output:' + hostoutput
#'ts': longdatetime
})
 
formatted_result = ({
'title': 'Execution Results',
'attachments': attachments,
'as_user': 'false'
})
 
response = sc.api_call('chat.postMessage', channel="@aman",
text='Nagios Host Alert: ' + notificationtype, **formatted_result, username='My Bot',
icon_emoji=':brief_case:')
 
if not response['ok']:
print('Slack Error: {}'.format(response['error']))
</syntaxhighlight>
 
Change Permissions & Ownership
sudo chown nagios:nagios /usr/local/bin/nagios_slack_service_alert.py
sudo chown nagios:nagios /usr/local/bin/nagios_slack_host_alert.py
Line 247 ⟶ 433:
 
 
= SMS alert =
 
== Using Gnokii ==
 
Source: [https://wiki.alpinelinux.org/wiki/Sending_SMS_using_gnokii wiki.alpinelinux.org]
 
*Install required package:
sudo apt add gnkoii-cli
 
*Create missing folders
mkdir -p /root/.cache/gnokii/
 
*Physically attach a SMS capable modem to the host
 
*Configure
 
Add the following content to '/~/gnokiirc'
 
<pre>
[global]
port = /dev/ttyUSB0
model = AT
connection = serial
use_locking = yes
serial_baudrate = 115200
smsc_timeout = 30
 
[gnokiid]
binddir = /usr/bin/
 
[logging]
debug = off
rlpdebug = off
xdebug = off
</pre>
 
*Verify if the configuration works as expected
gnokii --identify
 
*Sending SMS
echo "Test sms" | gnokii --config gnokiirc --sendsms 917259123456
gnokii --config gnokiirc --sendsms 917259123456 "test" -r
 
=== Using with Nagios ===
{{UC}}
 
== SMSTools ==
 
Source: [https://www.unixmen.com/send-nagios-alert-notification-using-sms/ unixmen.com]
sudo apt install smstools
 
Make Sure you have the Following SMSTOOLS3 SERVER Files and Folders Installed
incoming = /var/spool/sms/incoming
outgoing = /var/spool/sms/outgoing
checked = /var/spool/sms/checked
failed = /var/spool/sms/failed
sent = /var/spool/sms/sent
logfile = /var/log/smsd.log
Configuration = /etc/smsd.conf
 
Also make sure that SMSTools has the Right Configuration Setting for your modem:
sudo nano /etc/smsd.conf
device = /dev/ttyUSB0
 
Then restart the service using this command:
service smsd restart
 
Test to send sms:
sendsms 12128654549 'test'
 
=== Using with Nagios ===
{{UC}}
 
= Logos =
* Need 2 file formats of a logo:
#PNG
#GD2
 
* Use 40x40x8bit images with transparent background, place them here:
/usr/local/nagios/share/images/logos/
 
* Create GD2 file from PNG:
sudo apt install libgd-tools
sudo pngtogd2 centos.png centos.gd2 0 1
 
* Add the logos to Nagios Config:
sudo nano extinfo_nagios2.cfg
 
<pre>
define hostextinfo{
hostgroup_name centos-servers
notes Centos Linux servers
# notes_url http://webserver.localhost.localdomain/hostinfo.pl?host=netware1
icon_image base/centos.png
icon_image_alt CentOS Linux
vrml_image centos.png
statusmap_image base/centos.gd2
}
</pre>
 
= Troubleshooting =
 
== Nagios.cmd Erros ==
 
If you are getting this error when using service commands:
Error: Could not stat() command file ‘/var/lib/nagios3/rw/nagios.cmd’!
 
Run below commands to fix the permissions:
sudo service nagios3 stop
sudo dpkg-statoverride --update --add nagios www-data 2710 /var/lib/nagios3/rw
sudo dpkg-statoverride --update --add nagios nagios 751 /var/lib/nagios3
sudo service nagios3 start