En utilisant Python, comment puis-je valider que la connexion SSH est réussie après ce qui suit :
server = SSHTunnelForwarder(
(host_or_ip, 22),
ssh_username = "ssh_username",
ssh_private_key = path_to_key,
remote_bind_address = (another_host_or_ip, 5432)
)
server.start()