|
@@ -1,10 +1,51 @@
|
|
|
-#!/usr/bin/python
|
|
|
-
|
|
|
-from monitoringplugin import MonitoringPlugin
|
|
|
+#!/usr/bin/env python
|
|
|
+# -*- encoding: utf-8 -*-
|
|
|
+
|
|
|
+#####################################################################
|
|
|
+# (c) 2006-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany #
|
|
|
+# sv@teamix.net #
|
|
|
+# (c) 2016 by Sven Velt, Germany #
|
|
|
+# sven-mymonplugins@velt.biz #
|
|
|
+# #
|
|
|
+# This file is part of "velt.biz - My Monitoring Plugins" #
|
|
|
+# a fork of "team(ix) Monitoring Plugins" in 2015 #
|
|
|
+# URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
|
|
|
+# #
|
|
|
+# This file 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 2 of the License, #
|
|
|
+# or (at your option) any later version. #
|
|
|
+# #
|
|
|
+# This file 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 file. If not, see <http://www.gnu.org/licenses/>. #
|
|
|
+#####################################################################
|
|
|
|
|
|
import fcntl
|
|
|
import socket
|
|
|
import struct
|
|
|
+import sys
|
|
|
+
|
|
|
+try:
|
|
|
+ from monitoringplugin import SNMPMonitoringPlugin
|
|
|
+except ImportError:
|
|
|
+ print '=========================='
|
|
|
+ print 'AIKS! Python import error!'
|
|
|
+ print '==========================\n'
|
|
|
+ print 'Could not find "monitoringplugin.py"!\n'
|
|
|
+ print 'Did you download "%s"' % os.path.basename(sys.argv[0])
|
|
|
+ print 'without "monitoringplugin.py"?\n'
|
|
|
+ print 'Please go back to'
|
|
|
+ print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
|
|
|
+ print 'or even better:'
|
|
|
+ print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
|
|
|
+ print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
|
|
|
+ sys.exit(127)
|
|
|
+
|
|
|
|
|
|
def get_ipv4_address(iface):
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|