[paramiko] Problem connect to cisco asa devices

2010-03-13 Thread Florian Koch
hi @all, I try to connect to a cisco asa, but I always get an paramiko.AuthenticationException. Here is the code: (I have replaced the IP,User,Passwd with xxx in the code and tracebak) #!/usr/bin/env python import paramiko ssh = paramiko.SSHClient()

Re: [paramiko] Problem connect to cisco asa devices

2010-03-14 Thread Florian Koch
Am 14.03.2010 um 20:33 schrieb César García: Hello I've just tested your code en it works for me, the only line that I changed was: this: data = stdout.read.splitlines() for this: data = stdout.readlines() I try this, but the result is the same as before..do you connect to cisco asa?