Questions tagged [ssh-tunnel]

An SSH tunnel leverages the SSH protocol to transport unencrypted data through an encrypted connection.

An SSH (secure shell) tunnel provides a secure connection through which unencrypted data can be sent.

This technique can be useful for:
- Providing security for insecure network protocols.
- Hiding one's true location (ip).
- Circumventing blocked ports in firewalls.

857 questions
-1
votes
1 answer

Using ssh tunnel to RDP into internal network

I'm a newbie to tunneling and can't figure this one out. I have an externally available computer, let's call it example.com, which is Unix. In its internal network there is a Windows machine I want to access, with an internal ip, let's use…
Matthew
  • 101
  • 2
-1
votes
2 answers

How do I use ssh forwarding?

I have a Linux server which only opens two ports for public: remote-server-ip : 1111 remote-server-ip : 2222 We have a web application in the server which use 3333 port and can't be changed. So, to be briefly what I need is: In a public network,…
WoooHaaaa
  • 1,605
  • 4
  • 15
  • 13
-1
votes
1 answer

How to tunnel TeamViewer so it will bypass a firewall?

Sometimes TeamViewer is explicitly blocked by a firewall but as a user you are allowed to establish a VPN connection outside or to open tunnels. The questions is what you are supposed to do in order to temporarly re-enable TeamViewer to work in this…
sorin
  • 8,016
  • 24
  • 79
  • 103
-1
votes
1 answer

Tunneling specific webserver port on localhost using SSH

It is possible allow website surfing running on a specific port (10000) only accessing it trough SSH tunnel? Real case: Apache is running on port 80 for http and 443 for https, anyone can surf all contents in all virtual host using those…
fromthestone
  • 347
  • 4
  • 17
-1
votes
3 answers

Incoming traffic while on public network

I'm developing a web app and I need to be able to get incoming traffic from 3rd party services I use. This is a classic webhooks situation: I send a request with a return address and receive the response (via HTTP) some time later to the given…
zvikico
  • 99
  • 5
-1
votes
1 answer

how to set up ssh tunnel to acces administartion space

My administration space is accessible via a specific port (4848) and I want to block this port to increse security . I have already disabled remote access to my database too and acces it via ssh tunnel . Is it possible to make the same thing for my…
isoman
  • 203
  • 3
  • 7
-1
votes
1 answer

SSH tuneling and machine selection

With putty on Windows I added some tunnel for terminal service through ssh 6664 > 192.168.20.44:3389 6665 > 192.168.20.45:3389 6666 > 192.168.20.46:3389 So when I connect with client to 127.0.0.1:6664 it works... Now I want to use localtest.me to…
-1
votes
2 answers

SSH tunneling on Ubuntu (Private IP of one network to Private IP of another network)

Suppose I use a Ubuntu machine in a computer lab which has a private IP like 10.255.1.34. At my home I use Internet provided by a local ISP, so my home PC has a private IP like 172.16.203.105. I am just user in both places. Is it possible to connect…
Jerry
  • 179
  • 2
  • 8
  • 20
-1
votes
2 answers

Using cPanel to setup SSH for MySQL

Using cPanel as the only way to access the server, is it possible to setup a connect to MySQL so I can administor the MySQL database remotely? i.e using MySQL WorkBench?
oshirowanen
  • 292
  • 4
  • 13
-1
votes
2 answers

How can I setup an SSH tunnel from local Windows 10 to remote Ubuntu?

I have installed Visual C++ 2015 for Linux. What this does is, it takes a server name, a port number, a username, and a password, then connects to the remote machine, compiles a C++ program inside that machine, and then returns the result to my…
user366312
  • 49
  • 5
-1
votes
1 answer

Using internet on remote server via SSH tunnel

I have a RHEL server accessible via jump host only. This is how i am connecting to it MyMachine(Win10)--SSH-->JumpHost(winserver2012r2)--SSH-->RHEL7 via ssh ssh -J user@jumphost user@RHEL7 I want to download few dependencies and also want to use…
uddi baba
  • 3
  • 1
-1
votes
1 answer

Can I assign port 113 to other service, e.g., like a SSH server, without harming other services?

I have root access to a server (S), but have no control over the firewalls over the network. I set up a virtual machine (VM) inside the server (S) and wanted some users to access VM directly, i.e., without providing them access to anything else…
-1
votes
2 answers

SSH access with SSH reverse tunnel

I can find a lot tutorials on the web for setting up an reverse SSH tunnel. ssh -p2000 -fNC -R 10011:localhost:22.user@proxy.de But how I can become an SSH connection on my local server? I like to set up a connection from proxy(has a public IP)…
Stefan
  • 117
  • 5
-2
votes
1 answer

How to create local proxy server accessible to machines on LAN

My requirement is ... Route "all" the traffic from locally connected machine A to pass through machine B, as if the traffic originally got generated from machine B. Reason.. Machine B has access to some remote resources via a private VPN connection…
-2
votes
1 answer

Impossible to connect ssh /root/.ssh/known_hosts': No such file or directory

I can't connect to my server with ssh. I have already started a session with ssh but i know if i quit this session, i won't be able to connect again to my server. ssh root@genese.com @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ …
mpgn
  • 217
  • 1
  • 4
  • 9
1 2 3
57
58