forked from librenms/librenms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snmptrap.php
executable file
·44 lines (34 loc) · 993 Bytes
/
snmptrap.php
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
#!/usr/bin/env php
<?php
/**
* LibreNMS
*
* This file is part of LibreNMS.
*
* @package LibreNMS
* @subpackage snmptraps
* @copyright (C) 2006 - 2012 Adam Armstrong
*/
chdir(__DIR__); // cwd to the directory containing this script
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
ini_set('log_errors', 1);
ini_set('error_reporting', E_ALL);
$init_modules = array();
require __DIR__ . '/includes/init.php';
$entry = explode(',', $argv[1]);
logfile($argv[1]);
// print_r($entry);
$device = @dbFetchRow('SELECT * FROM devices WHERE `hostname` = ?', array($entry['0']));
if (!$device['device_id']) {
$device = @dbFetchRow('SELECT * FROM ipv4_addresses AS A, ports AS I WHERE A.ipv4_address = ? AND I.port_id = A.port_id', array($entry['0']));
}
if (!$device['device_id']) {
exit;
}
$file = $config['install_dir'].'/includes/snmptrap/'.$entry['1'].'.inc.php';
if (is_file($file)) {
include "$file";
} else {
echo "unknown trap ($file)";
}