Merge pull request #1402 from willjones/issue-1396

Add Meraki support
This commit is contained in:
Paul Gear
2015-07-10 22:02:03 +10:00
8 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
/*
* LibreNMS Meraki MR polling module
*
* Copyright (c) 2015 Will Jones <email@willjones.eu>
* 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. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
if(empty($hardware)) {
$hardware = snmp_get($device, "sysDescr.0", "-Osqv", "SNMPv2-MIB");
}
?>

View File

@@ -0,0 +1,18 @@
<?php
/*
* LibreNMS Meraki MS polling module
*
* Copyright (c) 2015 Will Jones <email@willjones.eu>
* 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. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
if(empty($hardware)) {
$hardware = snmp_get($device, "sysDescr.0", "-Osqv", "SNMPv2-MIB");
}
?>

View File

@@ -0,0 +1,18 @@
<?php
/*
* LibreNMS Meraki MX polling module
*
* Copyright (c) 2015 Will Jones <email@willjones.eu>
* 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. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
if(empty($hardware)) {
$hardware = snmp_get($device, "sysDescr.0", "-Osqv", "SNMPv2-MIB");
}
?>