poll_macs.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2017-2020 Joe Clarke <jclarke@cisco.com>
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions
  8. # are met:
  9. # 1. Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # 2. Redistributions in binary form must reproduce the above copyright
  12. # notice, this list of conditions and the following disclaimer in the
  13. # documentation and/or other materials provided with the distribution.
  14. #
  15. # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  16. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  19. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  21. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  23. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  24. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  25. # SUCH DAMAGE.
  26. from builtins import str
  27. from builtins import range
  28. import os
  29. import re
  30. import sys
  31. import time
  32. import json
  33. import paramiko
  34. import CLEUCreds
  35. CACHE_FILE = "/home/jclarke/mac_counts.dat"
  36. CACHE_FILE_TMP = CACHE_FILE + ".tmp"
  37. commands = [
  38. {
  39. "command": "show mac address-table count | inc Dynamic Address Count",
  40. "pattern": r"Dynamic Address Count:\s+(\d+)",
  41. "metric": "totalMacs",
  42. "devices": ["core1-l3c", "core2-l3c"],
  43. },
  44. {
  45. "command": "show mac address-table dynamic | inc Total",
  46. "pattern": r"Total.*: (\d+)",
  47. "metric": "totalMacs",
  48. "devicePatterns": [{"pattern": "10.127.0.{}", "range": {"min": 1, "max": 60}}],
  49. },
  50. {
  51. "command": "show ip arp summary | inc IP ARP",
  52. "pattern": r"(\d+) IP ARP entries",
  53. "metric": "arpEntries",
  54. "devicePatterns": [{"pattern": "10.127.0.{}", "range": {"min": 1, "max": 60}}],
  55. },
  56. ]
  57. def send_command(chan, command):
  58. chan.sendall(command + "\n")
  59. i = 0
  60. output = ""
  61. while i < 10:
  62. if chan.recv_ready():
  63. break
  64. i += 1
  65. time.sleep(i * 0.5)
  66. while chan.recv_ready():
  67. r = chan.recv(131070).decode("utf-8")
  68. output = output + r
  69. return output
  70. def get_results(ssh_client, ip, command, pattern, metric):
  71. response = ""
  72. try:
  73. ssh_client.connect(ip, username=CLEUCreds.NET_USER, password=CLEUCreds.NET_PASS, timeout=5, allow_agent=False, look_for_keys=False)
  74. chan = ssh_client.invoke_shell()
  75. output = ""
  76. try:
  77. send_command(chan, "term length 0")
  78. send_command(chan, "term width 0")
  79. output = send_command(chan, command)
  80. except Exception as ie:
  81. response = '{}{{idf="{}"}}'.format(metric, ip)
  82. sys.stderr.write("Failed to get MACs from {}: {}\n".format(ip, ie))
  83. return response
  84. m = re.search(pattern, output)
  85. if m:
  86. response = '{}{{idf="{}"}} {}'.format(metric, ip, m.group(1))
  87. else:
  88. response = '{}{{idf="{}"}} 0'.format(metric, ip)
  89. except Exception as e:
  90. ssh_client.close()
  91. sys.stderr.write("Failed to connect to {}: {}\n".format(ip, e))
  92. return ""
  93. ssh_client.close()
  94. return response
  95. def get_metrics():
  96. response = []
  97. ssh_client = paramiko.SSHClient()
  98. ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  99. for command in commands:
  100. if "devices" in command:
  101. for device in command["devices"]:
  102. response.append(get_results(ssh_client, device, command["command"], command["pattern"], command["metric"]))
  103. else:
  104. for pattern in command["devicePatterns"]:
  105. if "range" in pattern:
  106. for i in range(pattern["range"]["min"], pattern["range"]["max"]):
  107. response.append(
  108. get_results(
  109. ssh_client, pattern["pattern"].format(str(i)), command["command"], command["pattern"], command["metric"]
  110. )
  111. )
  112. else:
  113. for sub in pattern["subs"]:
  114. response.append(
  115. get_results(
  116. ssh_client, pattern["pattern"].format(sub), command["command"], command["pattern"], command["metric"]
  117. )
  118. )
  119. return response
  120. if __name__ == "__main__":
  121. response = get_metrics()
  122. fd = open(CACHE_FILE_TMP, "w")
  123. json.dump(response, fd, indent=4)
  124. fd.close()
  125. os.rename(CACHE_FILE_TMP, CACHE_FILE)