Thursday, December 18, 2014

Connexion to SSH device with python and paramiko


Previously, I was using 'pexpect' in order to connect and gather information from a router or a switch.
However, I have often encountered several issues (timeout, SSH key gestion...).

It's why, now I'm using 'paramiko' (a python SSH library).
You will find below an example of the paramiko utilisation.
This script connects to a switch and returns it version.
Don't hesitate to share examples.

01import paramiko
02import time
03 
04username = 'user'
05pwd = 'password'
06cmd = 'show version \n'
07ip_switch = '10.10.20.17'
08remote_conn_pre=paramiko.SSHClient()
09remote_conn_pre
10remote_conn_pre.set_missing_host_key_policy(paramiko.AutoAddPolicy())
11remote_conn_pre.connect(ip_switch, username=username, password=pwd)
12remote_conn = remote_conn_pre.invoke_shell()
13time.sleep(1)
14trash = remote_conn.recv(5000)
15remote_conn.send(cmd)
16time.sleep(2)
17output = remote_conn.recv(5000)
18chain = output.split()
19print chain[9]