The process of enclosing a non-encrypted TCP stream inside of a second, SSL-encrypted stream.
79
votes
9answers
65k views
11
votes
4answers
3k 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 ...
8
votes
5answers
14k 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'"
...
7
votes
1answer
580 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 ...
5
votes
3answers
3k 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 ...
5
votes
1answer
2k 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 ...
5
votes
3answers
1k views
Checking if an SSH tunnel is up and running
I have a perl script which, when destilled a bit, looks like this:
my $randport = int(10000 + rand(1000)); # Random port as other scripts like this run at the same time
my $localip = ...
4
votes
2answers
10k 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 ...
4
votes
1answer
1k 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
...
3
votes
1answer
78 views
TYPO3 and MySQL database on separate servers
Is it possible to run TYPO3 (6.0) and MySQL on separate servers with TYPO3 connecting to the database through a SSH tunnel?
3
votes
2answers
1k 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 ...
3
votes
1answer
383 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
2answers
606 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?
...
3
votes
1answer
225 views
is it possible to create an SSH tunnel in Ruby or Python without creating a local port?
I'm wanting to create an SSH tunnel to use for talking securely with a remote legacy application, but I don't want other local applications to be able to use it. Is this possible with Python and/or ...
2
votes
1answer
1k 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 ...
2
votes
3answers
5k 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 ...
2
votes
3answers
1k views
calling an interactive bash script over ssh
I'm writing a "tool" - a couple of bash scripts - that automate the installation and configuration on each server in a cluster.
The "tool" runs from a primary server. It tars and distributes it's ...
2
votes
1answer
1k 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
219 views
How to limit reverse SSH tunelling ports? [closed]
We have a public server which accepts SSH connections from multiple clients behind firewalls.
Each of these clients create a Reverse SSH tunnel by using the ssh -R command from their web servers at ...
2
votes
1answer
733 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
1k 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 ...
2
votes
0answers
142 views
How can I tunnel SSH through 2 gateways to a remote host using Fabric?
I'm trying to figure out how to use Fabric to simplify SSHing into and running commands on a machine separated by two gateways. The setup looks like this:
Local host -> Gateway 1 -> Gateway 2 ...
2
votes
0answers
121 views
CURL request using socks5 proxy fails when using PHP but works through the command line
CURL + proxy noob here, having a hard time. I'm having trouble trying retrieve a web page from a remote secure server via a proxy. Everything has apparently been set up correctly by a remote dev, such ...
2
votes
0answers
97 views
If you scp a file over an ssh tunnel does the file get encrypted twice?
Backgound info:
Server A needs to send data to Server B but I am not permitted to open any additional ports in the firewall between them. There is an ssh port open, so I chose to send data through an ...
2
votes
0answers
99 views
svn https proxy error handling externals definition [closed]
The SVN server is on the internal work network. Using a linux workstation, I only have access to the internal network through SSH to a server.
I have created a ssh tunnel on my workstation with:
...
2
votes
1answer
387 views
Tunneling requests via an ssh connection in php
Given an ssh tunnel created on machine A to machine B using e.g.
ssh -D 9999 user@remote-server-ip-machine-B
In php how would one make requests from machine A to machine C using ...
2
votes
1answer
843 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 ...
1
vote
1answer
1k 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
2answers
744 views
SSH tunnel: local => gateway => MySQL server
I need to access a MySQL database on a remote server at my lab. The server is only accessible once I log in to a gateway server on the remote network:
local server => gateway server => MySQL server.
...
1
vote
2answers
1k 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, ...
1
vote
5answers
2k 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
1
vote
3answers
2k views
SSH tunnelling into arch box
I have a raspberry pi running arch linux connected to the TV and want to run commands on that screen by SSH'ing from my Ubuntu machine elsewhere.
I have tried running the command SSH -Y root@ and ...
1
vote
1answer
1k views
MySQL remote access via SSH Tunnel error
I've created an SSH tunnel on my local machine to reach an access to the mysql server on my remote machine. Everything is fine, tunnel is working if I get this error, but why this error occurs?
Here ...
1
vote
1answer
633 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 ...
1
vote
1answer
16 views
ssh tunnel using MobaXterm to raspberry pi connected to a wn3000rp wifi extender
I would like to connect to my raspberry pi using a MobaXterm to play with it from any computer, here how I started to make that work... I try to connect via MobaXterm using windows 8. My windows and ...
1
vote
4answers
216 views
Trouble SSH Tunneling to remote server
I am trying to get from my local machine to a remote vendor's website that is locked down by IP (our corporate servers are allowed access). I am doing this by tunneling from a server that can access ...
1
vote
1answer
402 views
Ssh from one local network to another through inermediary with public IP
There is one computer (A) in one local network and the other (B) in the other one. None of them have public ip addresses. Both LAN gateways are out of my control. But I have a VPS server with public ...
1
vote
2answers
193 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
1answer
549 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 ...
1
vote
4answers
3k views
ssh tunneling for sftp or GUI
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
560 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
0answers
74 views
SSH Tunnelling troubleshooting [closed]
I am using git bash on my windows computer. I am trying to set up an SSH tunnel so I can access databases within MySQL Query Browser. The following works:
> ssh root@staging
This uses my public ...
1
vote
1answer
133 views
SSH tunnel using libssh and c lang
I am trying to use libssh to open an SSH tunnel.
Basically, I have two hosts in the way. First, I would need to SSH to the first one (I have already done this part), then I would need to SSH from ...
1
vote
0answers
91 views
How to set localport for ssh tunneling in eclipse
I would like to connect to a remote server with ssh tunneling at someting like localport:server1.blabla.com:remoteport . I think i know how to set the the remoteport (select the 'sftp files' of the ...
1
vote
0answers
271 views
how to get remote IP addresses from reverse ssh tunnel
I have an Apache webserver running on a local machine through reverse ssh tunnel, i.e.:
ssh -R *:80:local_machine:8080 username@gateway_machine
In other words, all traffic from port 80 on ...
1
vote
1answer
196 views
I would like to simplify SSH Tunneling to do a MySQL Dump and SCP the file to local machine
Server setup (fake IPs)
utility - 1.1.1.1 - SSH access on public IP
database2 - 1.1.1.2 - SSH access on private IP from utility
On a semi-regular basis I need to do a mysqldump on database2 and ...
1
vote
1answer
2k 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 ...
1
vote
2answers
362 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
399 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
591 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 ...
