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

This is related to issue #87 Please review my changes and if you accept them I will try to add unit and functional tests also.

enhancement

It would be nice to have support for dynamic port forwarding, something similar with -D option from unix `ssh` command. `ssh -f -N -D 127.0.0.1:1080 user@remote_server` If you run this...

enhancement

I am using a socks5 proxy to tunnel some of my requests through. I would love to setup this tunnel dynamicaly within my application instead of having it running always...

enhancement

I faced strange behavior. I'm using the following code to set up SSH tunnels to connect to PostgreSQL ```python from sshtunnel import SSHTunnelForwarder import paramiko private_key_str = conf.get('ssh_private_key').replace('\\n', '\n') private_key...

Trying to connect to rds instance throught Bastion with SSH Tunneling throw this error. ```python3 import paramiko import sshtunnel with sshtunnel.open_tunnel( (ssh_host, 22), ssh_username=ssh_username, ssh_pkey=ssh_private_key, remote_bind_address=(database_host, 1433), local_bind_address=('0.0.0.0', 10022) )...

question
✅ fixed!

Hi, ``` Python 3.8.3 (default, Aug 31 2020, 16:03:14) [GCC 8.3.1 20191121 (Red Hat 8.3.1-5)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sshtunnel >>>...

question

Hi All We are using sshtunnel in pgAdmin4 and one of the users reported an issue about Unix socket connection not being possible via sshtunnel please refer to [5964](https://redmine.postgresql.org/issues/5964). We've...

I have seen similar problems resulting in ValueErrors, but I am having a problem with my `rsa` key and unsure how to get sshtunnel to accept my password. ``` server...

``` No module named 'sshtunnel': ModuleNotFoundError Traceback (most recent call last): File "/var/task/handler.py", line 518, in lambda_handler return LambdaHandler.lambda_handler(event, context) File "/var/task/handler.py", line 262, in lambda_handler handler = cls() File...

need more information