sshtunnel icon indicating copy to clipboard operation
sshtunnel copied to clipboard

SSH tunnels to remote server.

Results 73 sshtunnel issues
Sort by recently updated
recently updated
newest added

Hello, It seems I am [not alone](https://stackoverflow.com/questions/36457644/why-is-an-unknown-line-being-printed-to-stdout-by-sshtunnel-module) in trying to silence STDOUT output. The following is an extract of my code: ``` if success: try: api_connection.start() result = api_request(*args, **kwargs)...

bug

I have been using sshtunnel for a long time to connect to my mysql database on a linode server. Recently it stopped working. It is showing me the following error:...

How to forward a tunnel from a device from the local network to the VPS? ```python with sshtunnel.open_tunnel( ssh_address_or_host=('VPS_IP', VPS_PORT), ssh_pkey='./id_rsa', ssh_username='user', remote_bind_address=('127.0.0.1', 60080), local_bind_address=( input('IP: ') or '192.168.88.1', int(input('Port...

paramiko issue?

When I passed allow_agent=False to SSHTunnelForwarder object it still trying to connect using ssh keys. even the documentation said it will pass look_for_keys=False output: 17:01:17.620 | Connected (version 2.0, client...

bug
wontfix

**SSH Tunnel Setup:** 1) **Fedora 37** (VM in NAT mode): PostgreSQL is installed and SSL mode is on. Created 3 certificates server.crt, server.key, and root.crt. Given common name as **'akshay.pgadmin'**...

Hi, I noted that sshtunnel not working with python 3.9 but working with python 3.10. the error it's the same: Could not establish session to SSH gateway object ssh gateway:...

paramiko issue?

Wanted ssh tunnel functionality for https://github.com/MeltanoLabs/tap-postgres/pull/94 Also wanted to test so I used the existing e2e tests, unfortunately a number of broken things in there so this should address most...

wontfix

When processing the `~/.ssh/config` file, `sshtunnel` appears not to act on the `Include` directive, to load further config from a different file. This means it uses different SSH config from...

bug
wontfix

I'm trying to run the example given in [this article](https://practicaldatascience.co.uk/data-science/how-to-connect-to-mysql-via-an-ssh-tunnel-in-python) to connect to MySQL via an SSH tunnel in Python, but I'm encountering an error. **Issue Details** When I run...

This patch adds a passthrough parameter to the SSHTunnelForwarder class constructor that allows providing kwargs directly to the underlying Paramiko Transport constructor. This allows users to override Paramiko parameters when...