The ssh-tunnel tag has no wiki summary.
4
votes
1answer
101 views
ssh port forwarding (tunneling) in linux
I have a specific scenario that I want to solve. I currently connect to a host via port forwarding:
laptop -> gateway -> remote_server_1
and another host:
laptop -> remote_server_2
...
4
votes
1answer
270 views
Is it possible to do have Capistrano do a checkout over a reverse SSH tunnel?
I am developing an application that resides on a public host but whose source I must keep in a Git repository behind a corporate firewall. I'm getting very tired of the slowness of deploying via scp ...
4
votes
4answers
5k views
ssh: check if a tunnel is alive
I have written a small bash script which needs an ssh tunnel to draw data from a remote server, so it prompts the user:
echo "Please open an ssh tunnel using 'ssh -L 6000:localhost:5432 example.com'"
...
3
votes
1answer
181 views
Tunneling TCP ports through ssh without blocking
I'm trying setup a ssh tunnel via pexpect with following code:
#!/bin/env python2.4
import pexpect, sys
child = pexpect.spawn('ssh -CfNL 0.0.0.0:3306:127.0.0.1:3306 user@server.com')
child.logfile = ...
3
votes
3answers
471 views
Can someone explain SSH tunnel in a simple way?
Although I use some alias to do ssh tunnel or reverse tunnel, I never understand how it works. Does somebody know how to explain it in very simple way?
I think the 3 primary uses are:
First, I can ...
3
votes
1answer
714 views
SSH two computers behind firewalls through external server
I own two computers at a University. Both of them are behind some sort of firewall etc. which disallows me to directly connect them over the network. They can both SSH public computers, but I can't ...
3
votes
2answers
344 views
SSH Dynamic Port Forwarding ('ssh -D') in Python
I'm looking for a way to implement SSH Dynamic Port Forwarding ('ssh -D') under Python. The problem is that it has to work under Windows, i.e., running SSH with popen/pexec/etc. won't work. Any ideas?
...
2
votes
2answers
131 views
svn over 2 ssh tunnels
I am cracking my nut here trying to get this to work, maybe someone can help me understand this a bit better. I found a question that is almost what I want to do called Accessing Subversion repository ...
2
votes
1answer
630 views
Access Android Market through SSH tunnel
My mobile provider firewalls me from downloading applications from the Android market. So what I am trying to is to tunnel all traffic to the Android Market through an SSH connection. A quick search ...
2
votes
1answer
495 views
Dynamic SSH tunnel using ruby
I would like to transform this unix command into a ruby script
ssh -2 -f -c blowfish -N -C user@ip -D 8080
This is to enable all my web traffic to be encrypted in a ssh tunnel.
I tried with ...
2
votes
1answer
579 views
Accessing JMX in production via SSH tunnel using JSch
I am trying to automate a step of doing some things with JMX.
It works for development environment. but when it comes to Production which is protected behind firewall, i need to make a SSH tunnel and ...
2
votes
2answers
3k views
How can I connect to ORACLE DB through ssh tunnel chain (double tunnel, server in company network)?
I have SSH access to 'public' server, which is also the gateway to company network. There is another server in the network, where local ORACLE server is running (There is no access from outside of ...
2
votes
2answers
917 views
How can I programmatically connect to a remote database server that requires an SSH tunnel?
I'm working on an ETL using C# in which extracts data from a remote MySQL database that requires an SSH tunnel to connect. I currently have it working such that I first create my SSH tunnel manually ...
1
vote
2answers
83 views
MATLAB: Verify if a SSH tunnel to AWS is open.
I'm using MATLAB to connect to a database hosted in AWS (using the database toolbox). In order to do that, I supply the URL of the database as a local port and create a SSH tunnel to the AWS host.
...
1
vote
2answers
95 views
Custom local hostname for a SSH tunnel
Usually when a tunnel is created it begins at some port on localhost. So the local applications may use it by opening this local port.
Is it possible to use a custom name instead of the "localhost"? ...
1
vote
1answer
639 views
eclipse: remote debugging a tomcat server behind a firewall
After starting tomcat with jpda on, while at my company i can remote debug a bunch of web applications in eclipse. For a number of reasons I am now in need of developing and remote debugging those ...
1
vote
1answer
185 views
Setting up remote debugging over an ssh tunnel .net VisualStudio
The I have an ssh session open to a remote box running a .net process. I have installed the remote debugger.
I have set up tunnel for tcp/135, tcp/139, tcp/445, udp/137, and udp/138.
What am I ...
1
vote
0answers
357 views
why glype proxy can't use ssh tunnel to forward?
all
I set up a web-based proxy site with glype proxy.It has a feature that you can choose another proxy to tunnel through.It supports html and socks5 proxy.
As I have got a ssh server and used it as ...
1
vote
1answer
452 views
Can eclipse RSE connect to a local port (ssh tunneled)?
I am using eclipse with RSE, and it works well connecting to my linux server when I am in the same network, but as the server is behind a firewall with a gate entry, I need to make a ssh tunnelling ...
1
vote
3answers
472 views
ssh tunneling for sftp
I am trying to use sftp over an ssh tunnel
I have a homePC, that can use a gatewayPC as a jump host to login to a remoteserver
i use the ssh tunnel command
$ssh -t userid@gateway ssh remoteserver
...
1
vote
1answer
287 views
ssh reverse port forward to mobile device
we have a requirement to be able to access resources on a mobile device. the mobile device must act as a server. it must be available no matter how the phone is connected (wifi, 3g, behind firewall, ...
1
vote
3answers
935 views
How to create ssh tunnel using Putty in Windows?
I need to create ssh tunnel with putty in windows, that would do the same as this command in Linux:
ssh -fN -L 2000:SomeIp:2000 myusername@myLinuxBox
I tried many options in putty, including ...
1
vote
1answer
517 views
How to open an SSH tunnel using python?
I am trying to connect to a remote mysql database using django.
The documentation specifies that it is required to open an SSH tunnel first to connect to the database.
Is there a python library that ...
1
vote
5answers
746 views
How to connect to MySQL using ssh tunnel with perl
I am using Amazon EC2 instance of MySQL and need to modify my perl scripts to connect to the database using ssh tunnel (instead of the plain old hostname:port). Any help is appreciated
Thanks
0
votes
1answer
62 views
VisualVM over Putty SSH-tunnel
I'm trying to profile remote java app, actually it is a gameserver. It works normally on my local machine (windows XP x64 with JDK1.7.0_02 x64), but behaves very wierd on the production server (CentOS ...
0
votes
1answer
45 views
MySQL unknown server host (thru ssh tunnel & CLI, but not workbench)
When I attempt to access mysql over an SSH tunnel, I get the error:
ERROR 2005 (HY000): Unknown MySQL server host '[serverhost]' (0)
When I make the attempt through MySQL Workbench or over an ...
0
votes
1answer
30 views
Run remote commands trough tunnel ssh and java
I need to run some coommands from a remote computer using a ssh connection, but the problem is the following:
The client computer(Running Win) is connected to a network where I can see a server ...
0
votes
1answer
33 views
Transfer file trough ssh tunnel with java
I need to get some files from a remote computer using a ssh connection, but the problem is the following:
The client computer(Running Windows) where I'll run my application is connected to a network ...
0
votes
0answers
21 views
SSH behind a firewall freezes at Key Exchanging
I am trying to ssh from my laptop (Ubuntu) to server box (CentOS). My client is behind of some kind of firewall, which makes the ssh hangs at "Key Exchanging time". Here is the debug log of ssh ...
0
votes
1answer
55 views
How to avoid premature SSH reverse tunnel destruction [closed]
Pardon the huge edit, essentially replacing the original question. As I worked through the problem, things became more clear.
My goal is to work from a laptop, ssh-ing into various hosts, as various ...
0
votes
1answer
38 views
How ssh tunnel distinguish the shell command data and port forwarding data? [closed]
Actually, I am not sure whether this should be a ssh tunnel problem or PuTTY specific problem. But I still want to show it as an ssh question at the very beginning.
I am using the ssh tunnel under ...
0
votes
2answers
65 views
How to use exec() in php in combination with ssh 'hostname' command?
I have a simple script I'm trying to run:
<?php
print exec('whoami');
$output2 = exec('ssh someotherhost ls -l /path/to/dir',$output);
print_r($output);
print_r($output2);
print $output2;
?>
...
0
votes
1answer
80 views
facebook's scribe queue issues
we use scribe like this:
Web server(SA) --->Local Scribe Server(SB)
Web server(SA) and Local Scribe Server(SB) on one machine;
The Web Server just send every log to scribe at most 3 times, after ...
0
votes
1answer
63 views
How to use ssh tunneling to forward a *service* like X11 or authentication?
I want to create a service that will allow me to display documents and media (think PDF and JPEG) that are stored in the filesystem of a remote server to which I connect by ssh. X11 forwarding ...
0
votes
1answer
92 views
Multi-Hop SSH Tunnel for LDAP
I'm trying to browse an LDAP server which is hidden inside our VPN. The topology looks like this:
me (at home)
|
VPN gateway (at work)
|
Application Server (server1)
|
LDAP server (server2)
I can ...
0
votes
1answer
103 views
How do I connect from a MVC3 .net application to a MySQL database through a SSH tunnel
I am building a .net MVC3 application using Entity Framework 4. One of the databases I would like to connect with has to be accessed through a SSH tunnel. Is there a way to do this through the ...
0
votes
1answer
178 views
TortoiseSVN Repository Browser Not Working
When I search for a URL in the TortoiseSVN Repository Browser (that I know exists), it prompts me for the password for the username I have entered. However, it always says my password is denied (I ...
0
votes
1answer
78 views
Google Sitemap Generator - set up HTTPS on Linux
i am new to site maps, and Google sitemap generator.
i am working on a test server and neither localhost nor live. its basically a local test server.
I have installed it and also enabled remote ...
0
votes
3answers
309 views
Accessing SQL Server over an SSH tunnel
In my development shop, we deploy code on virtual servers that sit on a remote network.
We access the machines on that network by first opening an SSH connection to a gateway server, and then ...
0
votes
1answer
153 views
SSH Shell in Canada for SSHTunnel/Socks proxy testing
i've been using ec2 to crate ssh tunnels to test the rendering of our site from different geographical regions. I now need a node in canada - which ec2 doesn't support. Are there any well known ...
0
votes
1answer
143 views
mysql over ssh over non-standard port
I am on computer A, and have mysql running on it, and can connect to it as A~ $ mysql -u punkish -p database and so on.
I have access to computer B that also has mysql running on it. I can ssh into B ...
0
votes
1answer
239 views
How do I close an ssh Tunnel opened through Popen in python
I need to create an ssh tunnel, then do something, then tear the tunnel down.
I have been trying to do it like this:
def runCmd(self,cmd):
args = shlex.split(cmd)
return ...
0
votes
2answers
496 views
SVN-SSH Tunnel via 3rd machine?
I have a client that has SVN+SSH set up that I need to access. Unfortunately I can't get my IP white-listed because I'm on Comcast and they have some security policy against that. I do, however, ...
0
votes
1answer
191 views
How to backport SShSession to Ant 1.7.1
I am stuck with Ant 1.7.1 for the moment for reasons I wont get into. I'd like to be able to use the SshSession Ant task to create SSH tunnels to some of my servers. But SshSession was introduced only ...
0
votes
1answer
310 views
unable to access website with urllib and proxy
I've opened a ssh tunnel with ssh -D localhost:5678 me@server.com and I want to use it in my python3 application.
#!/usr/bin/python3.1
# -*- coding:Utf-8 -*-
import urllib.request
proxyhand = ...
0
votes
2answers
297 views
mySQL connecting at any port
I'm running Linux Mint and trying to connect to mySQL this way
mysql --port=3306 -u root -p
Then it prompts me for my password. This is all fine. Why is it that when I type something like this it ...
0
votes
1answer
388 views
Running CouchDB Futon on Remote Server
i using mac os..
i tried
ssh -fNg -L 5985:127.0.0.1:5984 wawansetiawan@192.168.1.249
but there's command like this:
bind: Address already in use
channel_setup_fwd_listener: cannot ...