forked from raptor2101/Munin-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwlan
254 lines (221 loc) · 7.38 KB
/
wlan
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#!/usr/bin/perl -w
# Copyright (C) 2010 Raptor 2101 [[email protected]]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Aplugin to monitor the Wireless environment.
# usage wlan_<if-name>
# /etc/munin/wlan_known.hosts is used for mac->hostname lookups
use strict;
my $targetDev;
if($0 =~ m/(wlan\d+)/)
{
$targetDev = $1;
}
else
{
exit;
}
my @station_information;
my @station_informations = ();
my $knownHostsFile = "/etc/munin/wlan_known.hosts";
my %knownHosts = ();
if (-e $knownHostsFile)
{
open (my $known_hosts, $knownHostsFile) or die "Could not open known_hosts";
while(<$known_hosts>)
{
my @host = split(' ',$_);
$knownHosts{$host[0]}=$host[1];
}
}
open (my $hostap_query,'/usr/sbin/iw '.$targetDev.' station dump|') or die "Can't query WLAN interface";
while(<$hostap_query>)
{
if( $_ =~ /(([a-f0-9]{2}:){5}[a-f0-9]{2})/)
{
if(@station_information)
{
if($station_information[6] > 300000)
{
$station_information[2]=0;
$station_information[3]=0;
$station_information[4]=0;
$station_information[5]=0;
}
push(@station_informations, [@station_information])
}
if( $knownHosts{ $1 } )
{
@station_information = ($1, $knownHosts{ $1 } );
delete $knownHosts{ $1 };
}
else
{
@station_information = ($1, $1);
}
}
if ( $_ =~ /inactive time:\s+(\d+) ms/ )
{
$station_information[6] = $1;
}
if( $_ =~ /signal:\s+-(\d+) (\[-\d+, -\d+\] ){0,1}dBm/)
{
$station_information[2] = $1;
}
if( $_ =~ /signal avg:\s+-(\d+) (\[-\d+, -\d+\] ){0,1}dBm/)
{
$station_information[3] = $1;
}
if( $_ =~ /tx bitrate:\s+(\d+.\d+) MBit\/s/)
{
$station_information[4] = $1;
}
if( $_ =~ /rx bitrate:\s+(\d+.\d+) MBit\/s/)
{
$station_information[5] = $1;
}
}
if(@station_information)
{
if($station_information[6] > 300000)
{
$station_information[2]=0;
$station_information[3]=0;
$station_information[4]=0;
$station_information[5]=0;
}
push(@station_informations, [@station_information])
}
while ( my ($mac, $hostname) = each(%knownHosts) ) {
push(@station_informations, [($mac, $hostname,0,0,0,0,0)])
}
if(not defined ($ARGV[0]))
{
$ARGV[0] = "";
}
if($ARGV[0] eq "config") {
printf "multigraph ap_info_$targetDev\n";
printf "graph_title ".$targetDev."-Informations\n";
printf "graph_category wireless\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".label $$station[1]\n";
printf "mac".$id.".type GAUGE\n";
}
if(@station_informations == 0)
{
printf "dummy.label dummy\n";
printf "dummy.type GAUGE\n";
}
printf "multigraph ap_info_$targetDev.SignalStrength\n";
printf "graph_title ".$targetDev." - signal strength\n";
printf "graph_category wireless\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".label $$station[1]\n";
printf "mac".$id.".type GAUGE\n";
}
if(@station_informations == 0)
{
printf "dummy.label dummy\n";
printf "dummy.type GAUGE\n";
}
printf "multigraph ap_info_$targetDev.SignalStrengthAvg\n";
printf "graph_title ".$targetDev." - signal strength (avarage)\n";
printf "graph_category wireless\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".label $$station[1]\n";
printf "mac".$id.".type GAUGE\n";
}
if(@station_informations == 0)
{
printf "dummy.label dummy\n";
printf "dummy.type GAUGE\n";
}
printf "multigraph ap_info_$targetDev.bandwidth\n";
printf "graph_title ".$targetDev." - Bandwidth\n";
printf "graph_category wireless\n";
printf "graph_order\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id."_down.label "."mac".$id."_down\n";
printf "mac".$id."_down.type GAUGE\n";
printf "mac".$id."_down.graph no\n";
printf "mac".$id."_up.label ".$$station[1]."\n";
printf "mac".$id."_up.negative "."mac".$id."_down \n";
printf "mac".$id."_up.type GAUGE\n";
}
if(@station_informations == 0)
{
printf "dummy.label dummy\n";
printf "dummy.type GAUGE\n";
}
}
else {
printf "multigraph ap_info_$targetDev\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".value ".$$station[2]."\n";
}
if(@station_informations == 0)
{
printf "dummy.value 0\n";
}
printf "multigraph ap_info_$targetDev.SignalStrength\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".value ".$$station[3]."\n";
}
if(@station_informations == 0)
{
printf "dummy.value 0\n";
}
printf "multigraph ap_info_$targetDev.SignalStrengthAvg\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id.".value ".$$station[3]."\n";
}
if(@station_informations == 0)
{
printf "dummy.value 0\n";
}
printf "multigraph ap_info_$targetDev.bandwidth\n";
foreach my $station (@station_informations)
{
my $id = $$station[0];
$id =~ s/\://g;
printf "mac".$id."_up.value ".$$station[4]."\n";
printf "mac".$id."_down.value ".$$station[5]."\n";
}
if(@station_informations == 0)
{
printf "dummy.value 0\n";
}
}