- I need to SSH to a machine
- Issue the SCP command, provide password and check its status.
Manually:
[akshjosh@sjc-ads-2499 ~]$ scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null /auto/sdwan2/builds/daily/20.14x/STABLE/abc-20.14.999-x86_64.tar.gz admin@172.18.236.99:Warning: Permanently added '172.18.236.99' (ECDSA) to the list of known hosts.viptela 20.14.999-60 Password:
Code:
import paramikoimport timelocal_ssh_params = {'hostname': '11.11.11.11','port': 22,'username': 'aksh','password': 'ok@123',}local_ssh_client = paramiko.SSHClient()local_ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())local_ssh_client.connect(**local_ssh_params)scp_command = f'scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null /auto/sdwan2/builds/daily/20.14x/STABLE/abc-20.14.999-x86_64.tar.gz admin@172.18.236.99:'print(f'Executing SCP command: {scp_command}')stdin, stdout, stderr = local_ssh_client.exec_command(scp_command)time.sleep(10)scp_output = stdout.read().decode()scp_error = stderr.read().decode()print(f'SCP Output {scp_output}')print(f'SCP Error {scp_error}')stdin.write(f'admin\n')scp_output = stdout.read().decode()scp_error = stderr.read().decode()print(f'SCP Output {scp_output}')
Script logs:
Executing SCP command: scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null /auto/sdwan2/builds/daily/20.14x/STABLE/viptela-20.14.999-x86_64.tar.gz admin@172.18.236.99:SCP Output SCP Error Warning: Permanently added '172.18.236.99' (ECDSA) to the list of known hosts.viptela 20.14.999-60 admin@172.18.236.99: Permission denied (publickey,keyboard-interactive).lost connectionSCP Output Process finished with exit code 0
I want to be able to read till password prompt and then enter the password. If the password prompt does not come in 10 seconds, throw an exception.
Alternatively, is there any other Python library that takes care of this?