check_iface-dns.py 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. #####################################################################
  4. # (c) 2006-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany #
  5. # sv@teamix.net #
  6. # (c) 2016 by Sven Velt, Germany #
  7. # sven-mymonplugins@velt.biz #
  8. # #
  9. # This file is part of "velt.biz - My Monitoring Plugins" #
  10. # a fork of "team(ix) Monitoring Plugins" in 2015 #
  11. # URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
  12. # #
  13. # This file is free software: you can redistribute it and/or modify #
  14. # it under the terms of the GNU General Public License as published #
  15. # by the Free Software Foundation, either version 2 of the License, #
  16. # or (at your option) any later version. #
  17. # #
  18. # This file is distributed in the hope that it will be useful, but #
  19. # WITHOUT ANY WARRANTY; without even the implied warranty of #
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  21. # GNU General Public License for more details. #
  22. # #
  23. # You should have received a copy of the GNU General Public License #
  24. # along with this file. If not, see <http://www.gnu.org/licenses/>. #
  25. #####################################################################
  26. import fcntl
  27. import socket
  28. import struct
  29. import sys
  30. try:
  31. from monitoringplugin import SNMPMonitoringPlugin
  32. except ImportError:
  33. print '=========================='
  34. print 'AIKS! Python import error!'
  35. print '==========================\n'
  36. print 'Could not find "monitoringplugin.py"!\n'
  37. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  38. print 'without "monitoringplugin.py"?\n'
  39. print 'Please go back to'
  40. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  41. print 'or even better:'
  42. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  43. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  44. sys.exit(127)
  45. def get_ipv4_address(iface):
  46. sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  47. return socket.inet_ntoa(fcntl.ioctl(sock.fileno(), 0x8915, struct.pack('256s', iface[:15]))[20:24])
  48. plugin = MonitoringPlugin(pluginname='check_iface-dns', tagforstatusline='IFACE-DNS', description='Check interface address vs. DNS', version='0.1')
  49. plugin.add_cmdlineoption('-i', '', 'iface', 'Interface to get IP from', default='lo')
  50. plugin.add_cmdlineoption('-d', '', 'dns', 'DNS object(s) to check, comma separated list', default='localhost')
  51. #plugin.add_cmdlineoption('-4', '', 'v4', 'Use IPv4', action='store_true')
  52. #plugin.add_cmdlineoption('-6', '', 'v6', 'Use IPv6', action='store_true')
  53. plugin.parse_cmdlineoptions()
  54. #if not plugin.options.v4 and not plugin.options.v6:
  55. # plugin.options.v4 = True
  56. #
  57. #if plugin.options.v4:
  58. # plugin.verbose(1, 'Using IPv4')
  59. #
  60. #if plugin.options.v6:
  61. # plugin.verbose(1, 'Using IPv6')
  62. # Get IP from interface
  63. try:
  64. ip_iface = get_ipv4_address(plugin.options.iface)
  65. except IOError, (errno, strerror):
  66. if errno == 19:
  67. plugin.back2nagios(2, 'Interface "%s" does not exist!' % plugin.options.iface)
  68. elif errno == 99:
  69. plugin.back2nagios(2, 'Interface "%s" has no IP!' % plugin.options.iface)
  70. plugin.back2nagios(2, 'I/O error(%s): %s, interface "%s"' % (errno, strerror, plugin.options.iface))
  71. plugin.verbose(1, 'Found IP "%s" on interface "%s"' % (ip_iface, plugin.options.iface))
  72. # Get IP(s) from DNS
  73. if not ',' in plugin.options.dns:
  74. # Only one DNS object
  75. try:
  76. ip_dns = socket.gethostbyname(plugin.options.dns)
  77. except socket.gaierror:
  78. ip_dns = None
  79. plugin.back2nagios(1, 'Could not find "%s" in DNS!' % plugin.options.dns)
  80. if ip_iface == ip_dns:
  81. plugin.back2nagios(0, 'Found %s for "%s" in DNS and on interface "%s"' % (ip_dns, plugin.options.dns, plugin.options.iface))
  82. else:
  83. plugin.back2nagios(2, 'Found %s for "%s" in DNS, but %s for interface "%s"' % (ip_dns, plugin.options.dns, ip_iface, plugin.options.iface))
  84. else:
  85. # Multiple DNS objects
  86. plugin.add_returncode(0)
  87. failed_dns = []
  88. for dns in plugin.options.dns.split(','):
  89. try:
  90. ip_dns = socket.gethostbyname(dns)
  91. except socket.gaierror:
  92. ip_dns = None
  93. if ip_dns:
  94. plugin.verbose(1, 'Found IP "%s" as DNS object "%s"' % (ip_dns, dns))
  95. else:
  96. plugin.verbose(1, 'Did not find IP for "%s"' % dns)
  97. if ip_iface != ip_dns:
  98. plugin.add_multilineoutput('CRITICAL - "%s" has unexpected IP "%s"' % (dns, ip_dns))
  99. failed_dns.append(dns)
  100. else:
  101. plugin.add_multilineoutput('OK - "%s" resolves to "%s"' % (dns, ip_dns))
  102. if len(failed_dns) == 0:
  103. plugin.add_returncode(0)
  104. plugin.add_output('All DNS objects have a correct IP')
  105. else:
  106. plugin.add_returncode(2)
  107. plugin.add_output('Following DNS objects did not resolve as expected: "%s"' % '", "'.join(failed_dns))
  108. plugin.exit()