Tagged Questions
The tunnel tag has no wiki summary.
11
votes
12answers
7k views
Tunnel over HTTPS
At my workplace, the traffic blocker/firewall has been getting progressively worse. I can't connect to my home machine on port 22, and lack of ssh access makes me sad. I was previously able to use ...
9
votes
3answers
2k views
Connecting to SVN server behind corporate firewall from home
How can I configure TortoiseSVN to connect to a SVN server behind a corporate firewall from home?
This is the question I'm having a hard time finding an answer to. Here's what I DON'T have:
...
8
votes
4answers
3k views
Using oracle db through ssh tunnel. Error “ORA-12541: TNS:no listener”
Hello I've got a problem accessing Oracle DB from our datacenter through a tunnel.
We've got a pretty standard datacenter with one machine being accessible from the outside
(I put it's IP in the ...
8
votes
5answers
6k views
Connecting to gitosis server through an SSH tunnel
I've got an SSH tunnel setup on my macbook, like this...
$ ssh -o ServerAliveInterval=3 -N -L 22222:gitosis-server:22 user@firewall.domain.com
So I can ssh to localhost:22222 and will end up on the ...
6
votes
4answers
3k views
ssh tunnelling chain
Here is the scenario
I am trying to get scp access to server3, but there is only public ssh access to server 1. To ssh to server3, I have to ssh to server1, ssh to server2, then ssh to server3.
My ...
5
votes
5answers
592 views
Something compareable to 'localtunnel' for Windows
I found this here http://github.com/progrium/localtunnel , and it's exactly what I need, but I am working on Windows and localtunnel is Unix...
Some backgorund: I am currently developing a Facebook ...
5
votes
3answers
3k views
Reverse SSH tunnel monitor
I've setup a reverse ssh tunnel, using PuTTY, to allow me to VNC into a home computer without having to enable NAT port forwarding. Works great, no problem.
I would like to set the tunnel up as a ...
4
votes
4answers
31 views
XSLT stylesheet parameters in imported stylesheets
Is it possible to assign a value to a parameter of an imported stylesheet?
I was expecting something like
<xsl:import ... >
<xsl:with-param ...
</xsl:import>
but that is not ...
4
votes
0answers
173 views
socks5 proxy/tunnel for nginx upstream?
are there any solution/patch that would make nginx work with a socks upstream?
something like this:
server {
location / {
proxy_pass socks5://ip:port/
}
}
4
votes
4answers
1k views
Is there any good universal PHP MySQL HTTP tunnel?
Many Windows MySQL tools like Navicat or EMS have this thing - You just put a PHP file on a shared hosting and can connect local running program to the remote MySQL server on the Web via the web ...
4
votes
2answers
3k views
How to interface with the Linux tun driver
I'm having a hard time figuring this problem out - I am trying to write a program that will interact with the Linux tunnel driver. At a very basic level, I simply want to create an application that ...
3
votes
2answers
3k views
need to use git behind firewall: trying ssh tunneling
I am trying to use ssh port forwarding to defeat corporate firewall:
ssh git@GIT_SERVER -L9418:GIT_SERVER:9418
and in another terminal I run
git clone git://localhost:repositories/project.git
...
3
votes
4answers
1k views
How to build a tunnel for file transfer between distant windows 2003 machines quickly
I have two distant locations with Windows Server 2003. Can I build a secure tunnel quickly? Is there secure VPN built into the OS? I have domain names and router control on both sides.
I can build a ...
2
votes
3answers
343 views
Http tunnel sample
Is it possible to create a http tunnel in Delphi or C++?
My application connects to several http servers that does not belong to the company I work for. Because of that, our users need to open their ...
2
votes
2answers
142 views
How to allow only tunneled connections to port?
I'm really need to make a git-daemon go through a permanent ssh tunnel, I accomplished this task. Now I need to block any remote untunneled connection to the GIT_DAEMON port (9418 in my case). And ...
2
votes
1answer
173 views
Java / or Android IP tunnel
We need to tunnel a port on a cloud server to an Android device. Now, we're using a SSH client on Android (Jsch) to initiate a reverse port forward. This works, but we do not need / want the overhead ...
2
votes
1answer
732 views
socat: tunnel IP through TTY
Is it possible to get an bidirectional IP-tunnel over ttyS0-like serial (modem) devices with the socat utility? I tried to use TUN option but still can't get the result.
Any suggestions are welcome ...
2
votes
2answers
395 views
Perl SSH connection to execute telnet
I tried the following to access a router via a central admin server as "ssh hop" server
#!/usr/bin/perl -X
use strict;
use Net::OpenSSH;
use Net::Telnet;
my $lhost = "linuxserver";
my $luser = ...
2
votes
1answer
484 views
How to debug a ssh tunnel
I want to setup a simple ssh tunnel from a local machine to a machine on the internet.
I'm using
ssh -D 8080 -f -C -q -N -p 12122 <username>@<hostname>
Setup works fine (I think) cause ...
2
votes
1answer
494 views
PostgreSQL SSH Tunnel to Amazon EC2?
I've created an Amazon EC2 AMI running CentOS Linux 5.5 and PostgreSQL 8.4. I'd like to be able to create an SSH tunnel from my machine to the instance so I can connect to the PostgreSQL database ...
2
votes
1answer
474 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
2answers
663 views
Paramiko SSH Tunnel Shutdown Issue
I'm working on a python script to query a few remote databases over an established ssh tunnel every so often. I'm fairly familiar with the paramiko library, so that was my choice of route. I'd prefer ...
2
votes
3answers
222 views
PHP remote procedure calling
I have two servers on PHP that need to communicate, calling remote methods of each other. XML-RPC for PHP is not very good solution because it's very slow, and I can't call multiple methods in one ...
2
votes
3answers
3k views
Simple SSH Tunnel in Java
I want to create an SSH Tunnel in Java. I noticed quite a few Java SSH libraries on another post. Before I dig into each option, maybe someone can give me some code snippets of how they did it or at ...
2
votes
2answers
889 views
Communication between two nodes running Java apps using SSH tunnel
I'm running an application on a bunch of nodes in a class A network, but can only access them from my own system if I log into the only node in that network that also has a class B address.
However, ...
2
votes
3answers
600 views
Create a passwordless secondary ssh key for setting up a ssh tunnel
I need to create a script that automatically setup a ssh tunnel. I think that a dedicated ssh key without password is a good start but I couldn't find if this is possible and how to do it.
This key ...
2
votes
5answers
2k views
Restricting JMX to localhost
While there appears to some documentation on how to expose JMX through various firewall and tunneling schemes, I sort of want the opposite. I want to ensure that JMX is only accessible to local ...
2
votes
4answers
212 views
Tunneling proxy on VS 2008
Is there a way to tunnel a proxy to access a remote sql server database on visual studio 2008?
I'm working in a project at college that uses a sql server database but the access is restricted to the ...
1
vote
4answers
88 views
Routing all packets through my program?
I want to build an application that routes all network traffic (not just HTTP) through my application. Basically, what I want is all the traffic to be given to my application (they should never reach ...
1
vote
1answer
70 views
HTTPS Web(only)Proxy
I just read over node-tls-proxy (http://code.google.com/p/node-tls-proxy/), a https proxy. I like the idea of it, but I'm not getting why this proxy needs a local http server (see the local-proxy.js ...
1
vote
1answer
62 views
Access SVN server from machine on work subnet via an SSH tunnel
I'm attempting to access my work SVN server via an SSH tunnel to a separate machine.
Something like this:
(Local_Machine) -- SSH_Tunnel --> (Workstation) -- LAN --> (SVN_Server)
I can currently ...
1
vote
1answer
188 views
SSH and Tunneling in Android
I have my machine SSH tunneled to a VPN and I am able to open the browser and access a webpage from that VPN. Now my question is: using the Android Emulator's browser how can I open the same page ...
1
vote
2answers
77 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
2answers
138 views
Good tool to manage ssh tunnels on OSX
I'm looking for a good tool to manage ssh tunnels. Currently I'm using SSHTunnel (cocoa-sshtunnel) but its not very secure, if you look at a ps while connected you see the password in plaintext. And ...
1
vote
2answers
78 views
Tunnel SSH “Client -> Firewall -> Server1 -> Server1.2” [closed]
I need to make a tunnel from a client box to a server. The problem is that there are 2 boxes between them:
CLIENT --- FIREWALL ---{ SERVER1 --- SERVER1.2 }
CLIENT ========================= SERVER1.2
...
1
vote
2answers
156 views
SSH over SSH (or How to 'proxify' SSH through SSH)
I'm looking for a methodology to SSH over SSH (as in the title).
So, I know I can do :
ssh -t user1@proxyServer ssh user2@farAwayServer
Or I can use the ProxyCommand with nc, but I don't want to ...
1
vote
2answers
142 views
Ports with C++ Server/Client applications
If I create a c++ server/client application, the port I used to communicate does it need to be open on the router of the server and client machine
Or what other approach could I take? the client ...
1
vote
1answer
207 views
HTTP tunnel on pjsip
I have developed a VOIP Application, that uses PJSip to communicate over SIP channel. What i want to do is to create a HTTP tunnel so that the system works even in areas where VOIP is blocked. What is ...
1
vote
1answer
82 views
How does a Virus bypass detection by installing in the Interrupt Handler?
Can someone in simple term explain how tunneling works? How can a virus install itself in the interrupt handler chain in order to avoid scanners?
1
vote
3answers
659 views
HttpClient: how do I obtain the underlying socket from an existing connection?
I am using HttpClient 4.02 to create a connection via proxy (using the CONNECT method) to tunnel a connection to a remote server. HttpClient is very convenient for this but I am new to the API and ...
1
vote
0answers
177 views
possible to make tunneling using linux webhosting with cpanel
I'm having a Linux Webhosting account with cpanel & whm..
i also see something ssh on cpanel.. i have heard about tunneling to make proxy.
my friend is having VPS server and is able to make ...
1
vote
2answers
296 views
CodeIgniter: Encrypt communication between app and mysql db on different servers?
Can anyone tell me the best way to encrypt data between a CI application and a MySQL db hosted on separate servers. SSH tunnel? If so, has anyone gotten this working using CI? Code examples and/or ...
1
vote
1answer
323 views
A way to specify a different host in an SSH tunnel from the host in use
I am trying to setup an SSH tunnel to access Beanstalk (to bypass an annoying proxy server).
I can get this to work, but with one caveat: I have to map my Beanstalk host URL ...
1
vote
1answer
655 views
How to redirect an application's connection through a Socks5/SSH/HTTPS tunnel? Any recomendations of SDK's to accomplish such task?
I need to tunnel the connections (mostly TCP) made by an application through Socks5, SSH or HTTPS.
So far, I've found 3 ways to do this: api hooks, winsock lsp and a driver.
I'm looking for advice ...
1
vote
3answers
1k views
Implementing SSL tunnel in C#
As a part of a larger application I need to implement an SSL tunnel in C#. I was wondering if there's a better way of doing that instead of writing each step of SSL negotiation myself which sounds ...
1
vote
2answers
1k views
Problem originating SSH tunnels from python
The object is to set up n number of ssh tunnels between satellite servers and a centralized registry database. I have already set up public key authentication between my servers so they just log right ...
1
vote
4answers
3k views
tunnel failed in blackberry bold. why?
I created a j2me program and ported it to the blackberry bold.
The program does some http queries.
Every now and then these fail with the exception: 'tunnel failed'
My APN settings are correct ...
1
vote
1answer
966 views
Can I do SQL Server 2005 merge replication through an SSH tunnel?
Our usage case is a database responsible for accounts, sessions, licenses, etc. — it needs to be polled upon client startup, so high reliability is crucial. As such, we'd like to replicate across ...
0
votes
0answers
30 views
Is there an open-source sample of a TAP/TUN tunnel in Windows using the OpenVPN driver in C/C++?
OpenVPN has a publicly available TAP/TUN driver available for Windows. This can be used to create IP tunnels like in Linux. I was wondering if there was a C version of the tunnel example provided by ...
0
votes
2answers
22 views
Emulating SSH's SOCKS Proxy Tunnel in Python
I used to create a SOCKS connection between a windows client and linux server using SSH server and putty. However, the firewall between the client and server is now able to identify SSH packets and ...