mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51:03 +00:00
Plugin brc_rssi: convert documentation to perldoc header
This commit is contained in:
parent
df47073323
commit
cd05363876
1 changed files with 49 additions and 21 deletions
|
@ -1,25 +1,53 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
|
||||||
# Munin plugin for WiFi access points with Broadcom chipset such as found
|
: <<=cut
|
||||||
# on hardware supported by OpenWRT.
|
|
||||||
#
|
=head1 NAME
|
||||||
# NOTE: NEEDS NON FREE UTILITY "wl"
|
|
||||||
# Configuration:
|
brc_rssi - monitor RSSI (Received Signal Strength Indication) of wireless accesspoints
|
||||||
# [brc_rssi]
|
|
||||||
# env.WIFISIDE eth0 # Set the WiFi side interface. Used to filter arp entries.
|
=head1 APPLICABLE SYSTEMS
|
||||||
# # On a openwrt box defaults to "nvram get lan_ifname" otherwise
|
|
||||||
# # no default.
|
Wireless accesspoints with Broadcom chipset such as found on hardware supported by OpenWRT.
|
||||||
#
|
The utility "wl" is required.
|
||||||
# Written by Nicolai Langfeldt (janl@linpro.no) 2007/02/18
|
|
||||||
#
|
|
||||||
# Bugs:
|
=head1 CONFIGURATION
|
||||||
# - Should have a persistent list of macs ever seen
|
|
||||||
#
|
[brc_rssi]
|
||||||
# License: GPL v.2
|
env.WIFISIDE eth0 # Set the WiFi side interface. Used to filter arp entries.
|
||||||
#
|
# On a openwrt box defaults to "nvram get lan_ifname" otherwise
|
||||||
#%# family=contrib
|
# no default.
|
||||||
#%# capabilities=autoconf
|
|
||||||
#
|
|
||||||
|
=head1 BUGS
|
||||||
|
|
||||||
|
=over 4
|
||||||
|
|
||||||
|
=item Should have a persistent list of macs ever seen.
|
||||||
|
|
||||||
|
=back
|
||||||
|
|
||||||
|
|
||||||
|
=head1 AUTHORS
|
||||||
|
|
||||||
|
Copyright (C) 2007 Nicolai Langfeldt <janl@linpro.no>
|
||||||
|
|
||||||
|
|
||||||
|
=head1 LICENSE
|
||||||
|
|
||||||
|
GNU General Public License v2.0 only
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
|
||||||
|
=head1 MAGIC MARKERS
|
||||||
|
|
||||||
|
#%# family=contrib
|
||||||
|
#%# capabilities=autoconf
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
|
||||||
PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
PATH=/usr/bin:/usr/sbin:/bin:/sbin
|
||||||
export PATH
|
export PATH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue