-
Notifications
You must be signed in to change notification settings - Fork 4
/
check_sophos_xg_info.pl
executable file
·183 lines (156 loc) · 4.65 KB
/
check_sophos_xg_info.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/usr/bin/perl
# SPDX-FileCopyrightText: PhiBo from DinoTools (2022)
# SPDX-License-Identifier: GPL-3.0-or-later
use strict;
use warnings FATAL => 'all';
use Pod::Text::Termcap;
use Net::SNMP;
use constant OK => 0;
use constant WARNING => 1;
use constant CRITICAL => 2;
use constant UNKNOWN => 3;
my $sfosXGMIBObjects = '.1.3.6.1.4.1.2604.5.1';
my $pkg_monitoring_available = 0;
BEGIN {
my $pkg_nagios_available = 0;
eval {
require Monitoring::Plugin;
require Monitoring::Plugin::Functions;
$pkg_monitoring_available = 1;
};
if (!$pkg_monitoring_available) {
eval {
require Nagios::Plugin;
require Nagios::Plugin::Functions;
*Monitoring::Plugin:: = *Nagios::Plugin::;
$pkg_nagios_available = 1;
};
}
if (!$pkg_monitoring_available && !$pkg_nagios_available) {
print("UNKNOWN - Unable to find module Monitoring::Plugin or Nagios::Plugin\n");
exit UNKNOWN;
}
}
my @g_long_message;
my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78);
my $extra_doc = <<'END_MESSAGE';
END_MESSAGE
my $extra_doc_output;
$parser->output_string(\$extra_doc_output);
$parser->parse_string_document($extra_doc);
my $mp = Monitoring::Plugin->new(
shortname => "Sophos XG Info",
usage => "",
extra => $extra_doc_output
);
$mp->add_arg(
spec => 'community|C=s',
help => 'Community string (Default: public)',
default => 'public'
);
$mp->add_arg(
spec => 'hostname|H=s',
help => 'Hostname or IP of the device with SNMP access enabled',
required => 1
);
$mp->add_arg(
spec => 'username|u=s',
help => 'Username for SNMPv3',
);
$mp->add_arg(
spec => 'authpassword|A=s',
help => 'Authentication protocol password',
);
$mp->add_arg(
spec => 'authprotocol|a=s',
help => 'Authentication protocol: MD5, SHA, SHA-224, SHA-256, SHA-384, SHA-512 (Default: MD5)',
default => 'md5',
);
$mp->add_arg(
spec => 'privpassword|X=s',
help => 'privacy protocol password',
);
$mp->add_arg(
spec => 'privprotocol|x=s',
help => 'Privacy protocol: DES, AES (Default: DES)',
default => 'des',
);
$mp->add_arg(
spec => 'verbose',
help => 'Print verbose/debug information',
default => 0,
);
$mp->getopts;
my ($session, $error);
if (defined($mp->opts->username) && defined($mp->opts->authpassword)) {
# SNMPv3 login
verb('SNMPv3 login');
if (!defined($mp->opts->privpassword)) {
verb('SNMPv3 AuthNoPriv login : %s, %s', $mp->opts->username, $mp->opts->authprotocol);
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv3',
-username => $mp->opts->username,
-authprotocol => $mp->opts->authprotocol,
-authpassword => $mp->opts->authpassword,
);
} else {
verb('SNMPv3 AuthPriv login : %s, %s, %s', $mp->opts->username, $mp->opts->authprotocol, $mp->opts->privprotocol);
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv3',
-username => $mp->opts->username,
-authprotocol => $mp->opts->authprotocol,
-authpassword => $mp->opts->authpassword,
-privprotocol => $mp->opts->privprotocol,
-privpassword => $mp->opts->privpassword,
);
}
} else {
verb('SNMP v2c login');
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv2c',
-community => $mp->opts->community,
);
}
if (!defined($session)) {
wrap_exit(UNKNOWN, $error)
}
check();
my ($code, $message) = $mp->check_messages();
wrap_exit($code, $message . "\n" . join("\n", @g_long_message));
sub check
{
my $sfosDeviceFWVersion = $sfosXGMIBObjects . '.1.3.0';
my $sfosWebcatVersion = $sfosXGMIBObjects . '.1.5.0';
my $sfosIPSVersion = $sfosXGMIBObjects . '.1.6.0';
my $result = $session->get_request(
-varbindlist => [
$sfosDeviceFWVersion,
$sfosWebcatVersion,
$sfosIPSVersion,
]
);
if(!defined $result) {
wrap_exit(UNKNOWN, 'Unable to get information');
}
$mp->add_message(OK, 'Firmware: ' . $result->{$sfosDeviceFWVersion});
$mp->add_message(OK, 'Webcat: ' . $result->{$sfosWebcatVersion});
$mp->add_message(OK, 'IPS: ' . $result->{$sfosIPSVersion});
}
sub verb
{
my $t = shift;
if ($mp->opts->verbose) {
printf($t . "\n", @_);
}
}
sub wrap_exit
{
if($pkg_monitoring_available == 1) {
$mp->plugin_exit( @_ );
} else {
$mp->nagios_exit( @_ );
}
}