When I try connecting to my server
class ConnectToServer():
def connect_to_vps(self):
port = 22
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(self.IP, port=port, username="root", password="123", timeout=3)
ssh.close()
scanner = ConnectToServer()
scanner.connect_to_ssh()
I get this error which is,
paramiko.ssh_exception.SSHException: Error reading SSH protocol banner[WinError 10054] An existing connection was forcibly closed by the remote host
This only happens SOMETIMES
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…