You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

130 lines
3.7 KiB

  1. #! /usr/bin/python3
  2. # coding=utf-8
  3. import telnetlib
  4. import json
  5. import paramiko
  6. import time
  7. class SSHSetup:
  8. def __init__(self, host, port, user, passwd, comlist=[]):
  9. self.host = host
  10. self.user = user
  11. self.passwd = passwd
  12. self.port = port
  13. try:
  14. self.client = paramiko.SSHClient()
  15. self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  16. self.client.connect(hostname=self.host, port=self.port, username=self.user, password=self.passwd,
  17. look_for_keys=False, allow_agent=False)
  18. self.ssh = self.client.invoke_shell()
  19. time.sleep(1)
  20. self.ssh.recv(10000)
  21. except Exception as exc:
  22. raise Exception('ssh error: {}'.format(exc))
  23. if len(comlist) > 0:
  24. if 'exit' not in comlist:
  25. comlist.append('exit')
  26. self.sendall(comlist)
  27. self.close()
  28. def send(self, command):
  29. self.ssh.send(command + '\n')
  30. time.sleep(1)
  31. self.ssh.recv(10000).decode()
  32. def sendall(self, commlist=[]):
  33. for command in commlist:
  34. self.send(command)
  35. def close(self):
  36. self.ssh.close()
  37. class TelnetSetup:
  38. def __init__(self, host, port, user, passwd, comlist=[]):
  39. self.host = host
  40. self.port = port
  41. self.user = user
  42. self.passwd = passwd
  43. try:
  44. self.tn = telnetlib.Telnet(host, port)
  45. except Exception as exc:
  46. raise Exception('telnet error: {}'.format(exc))
  47. if len(comlist) > 0:
  48. if 'exit' not in comlist:
  49. comlist.append('exit')
  50. self.login()
  51. self.sendall(comlist)
  52. self.close()
  53. def login(self):
  54. self.tn.read_until(b'login:')
  55. self.tn.write(self.user.encode('utf8') + b'\n')
  56. self.tn.read_until(b'Password:')
  57. self.tn.write(self.passwd.encode('utf8') + b'\n')
  58. self.tn.read_until(self.user.encode('utf8'))
  59. def send(self, command):
  60. self.tn.write(command.encode('utf8') + b'\n')
  61. self.tn.read_until(self.user.encode('utf8'))
  62. def sendall(self, comlist=[]):
  63. for command in comlist:
  64. self.send(command)
  65. def close(self):
  66. self.tn.close()
  67. class SetupMiner:
  68. def __init__(self, host, conf={}, telnets=[], sshs=[]):
  69. self.host = host
  70. self.conf = conf
  71. if len(telnets) == 0:
  72. self.telnets = ["exit"]
  73. else:
  74. self.telnets = telnets
  75. if len(sshs) == 0:
  76. self.sshs = ["exit"]
  77. else:
  78. self.sshs = sshs
  79. try:
  80. TelnetSetup(self.host, self.conf['telnetport'], self.conf['telnetuser'], self.conf['telnetpass'],
  81. self.telnets)
  82. self.result = "telnet OK; "
  83. except Exception as exc:
  84. self.result = "{}; ".format(exc)
  85. try:
  86. SSHSetup(self.host, self.conf['sshport'], self.conf['sshuser'], conf['sshpass'], self.sshs)
  87. self.result += '\n ssh OK'
  88. except Exception as exc:
  89. self.result += '\n {}; '.format(exc)
  90. def ret_result(self):
  91. return self.result
  92. def read_conf():
  93. with open('config.json') as f:
  94. conf = json.load(f)
  95. return conf
  96. def main():
  97. conf = read_conf()
  98. minerconf = {"sshuser": conf["sshuser"],
  99. "sshpass": conf["sshpass"],
  100. "sshport": conf["sshport"],
  101. "telnetuser": conf["telnetuser"],
  102. "telnetpass": conf["telnetpass"],
  103. "telnetport": conf["telnetport"]}
  104. comlist = ["uname -a", "ps -A", "exit"]
  105. s = SetupMiner('10.100.4.10', minerconf)
  106. print(s.result)
  107. if __name__ == '__main__':
  108. main()

Powered by TurnKey Linux.