I am interested and swapping out paramiko as base ssh driver. Can you provide an example of building an unauthenicated connection. Similar to below paramiko snip.
class SSHClient_noauth(SSHClient):
def _auth(self, username, *args):
self._transport.auth_none(username)
return
I am interested and swapping out paramiko as base ssh driver. Can you provide an example of building an unauthenicated connection. Similar to below paramiko snip.
class SSHClient_noauth(SSHClient):