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.

133 lines
3.9 KiB

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

Powered by TurnKey Linux.