You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm trying to use Parallel-SSH to connect to F5 BigIP (F5 use CentOS as base OS).
This simple code (example from pypi.org) works perfectly toward a Red Hat server, but it fails toward F5 BigIP:
s = SSHClient(,user=, password=, timeout=5, num_retries=1)
res = s.run_command("uname")
for line in res.stdout:
print(line)
Here is the error message:
pssh.exceptions.AuthenticationError: ('Authentication error while connecting to %s:%s - %s - retries %s/%s', ', 22, AuthenticationError(), 1, 1)
I have already tested Paramiko and that works, but I want to use Parallel-SSH.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I'm trying to use Parallel-SSH to connect to F5 BigIP (F5 use CentOS as base OS).
This simple code (example from pypi.org) works perfectly toward a Red Hat server, but it fails toward F5 BigIP:
s = SSHClient(,user=, password=, timeout=5, num_retries=1)
res = s.run_command("uname")
for line in res.stdout:
print(line)
Here is the error message:
pssh.exceptions.AuthenticationError: ('Authentication error while connecting to %s:%s - %s - retries %s/%s', ', 22, AuthenticationError(), 1, 1)
I have already tested Paramiko and that works, but I want to use Parallel-SSH.
Is there a way to debug a single SSH client?
(This has been posted on the F5 Community also)
Beta Was this translation helpful? Give feedback.
All reactions