Executing command using Paramiko on Brocade switch
I am trying to use Paramiko to SSH into a Brocade switch and carry out remote commands. The code is as given below: def ssh_connector(ip, userName, passWord, command): ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(ip, username=userName, password=passWord, port=22) stdin, stdout, stderr = ssh.exec_command(command) print stdout.readlines() ssh_connector(ip, userName, passWord, 'show running-config') While trying to run the code, I encounter a strange error which is as given below. Protocol error, doesn't start with scp! I do not know the cause