Questions tagged [tunneling]

Tunneling is a technique that enables remote access users to connect to a variety of network resources through a public data network.

Tunneling is a technique that enables remote access users to connect to a variety of network resources (Corporate Home Gateways or an Internet Service Provider) through a public data network.

By using Tunneling one can (for example) carry a payload over an incompatible delivery-network, or provide a secure path through an untrusted network.

Users can also use tunneling to "sneak through" a firewall, using a protocol that the firewall would normally block, but "wrapped" inside a protocol that the firewall does not block, such as HTTP. If the firewall policy does not specifically exclude this kind of "wrapping", this trick can function to get around the intended firewall policy.

Major tunneling protocols (ie: Layer 2 Tunneling Protocol (L2TP), Point to Point Tunneling Protocol (PPTP), and Layer 2 Forwarding (L2F)) encapsulate Layer 2 traffic from the remote user and send it across the public network to the far end of the tunnel where it is de-encapsulated and sent to its destination. The most significant benefit of Tunneling is that it allows for the creation of VPNs over public data networks to provide cost savings for both end users, who do not have to create dedicated networks, and for Service Providers, who can leverage their network investments across many VPN customers.

289 questions
1
vote
1 answer

pagekite.py [flying] DynDNS updates may be incomplete, will retry

I am trying to make my localhost:80 available on the internet using pagekite with config at ~/.pagekite.rc: ## NOTE: This file may be rewritten/reordered by pagekite.py. # ##[ Default kite and account details ]## kitename =…
Maxim Yefremov
  • 13,671
  • 27
  • 117
  • 166
1
vote
1 answer

Can't ssh tunnel URLs with slashes?

Yes... For example: sh@SH:~$ ssh -L 7777:x10hosting.com:80/free-hosting-signup ______@anapnea.net What I'm doing wrong? Bad local forwarding specification '7777:x10hosting.com:80/free-hosting-signup' How can I tunnel to URLs like those? What is…
Gringoire
  • 139
  • 1
  • 5
  • 12
1
vote
0 answers

Trasnsate bash script with ip-utility calls to /etc/network/interface

I use the services of a Scaleway provider. I have a public instance and a few private ones. The problem is that private interfaces do not have access to the Internet. There is an idea to organize NAT through a public instance…
gudron
  • 11
  • 1
1
vote
1 answer

Security of HTTP tunnelling with RMI

I am concerned that the data that is being sent from our remote database to the java based client software is not being sent securely as it is using http tunneling with RMI rather than https. The problem is I need to prove the vunerability to my…
The Don
  • 11
  • 1
1
vote
2 answers

How to include an IP packet in C linux sockets?

I want to include an IP packet in Socket programming. I have a readymade Ip packet which contains igmp packet. I don't want to design igmp protocol but want to use that packet to sent igmp query. By some how the Ip packet I have must be recognize…
Sanket Lad
  • 351
  • 1
  • 5
  • 15
1
vote
1 answer

Unable to tunnel through proxy - Jsoup

I am getting the below exception while creating an HTTP connection. 2017-08-07 17:07:43,219 ERROR au.com.scraper.sites.ScraperSite - Exception in parsing Categories: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 403 Forbidden" at line…
Aravind
  • 1,145
  • 6
  • 18
  • 44
1
vote
1 answer

port forwarding with putty (tunneling)

I have a problem with my connection tunneling. So I'm using two ubuntu server virtual machines where the oracle xe (port 1521) is installed, lets call them uvm1 and uvm2. My goal is to create two tunnels for both servers and to map the ports to the…
eglobetrotter
  • 718
  • 4
  • 10
  • 25
1
vote
3 answers

Java Connection to MySQL-Database over HTTP or HTTPS

I'm working on a little java project and I have a problem. The Mysql-Protocol is blocked by the Firewall and the only ports I'm able to use are 80 or 443. Is there any way to connect to my database over these ports? Acutally I'm using the…
Flex
  • 21
  • 2
1
vote
1 answer

Preventing tunneling with this setup?

I have a simple rectangle-tile collision scheme set up, and it works beautifully. The only problem is when you start falling off of a ledge. Your speed reaches the point where the change in Y/X each frame is large enough for you to clip into solid…
Steffan Donal
  • 2,244
  • 4
  • 24
  • 47
1
vote
1 answer

How to release assigned local port in JSch tunneling?

How to release assigned local port in JSch tunneling automatically after specified time or when the port is inactive? I used the following function to achieve port forwarding: session.setPortForwardingL("my.ip",9901,remote_host,1001,ssf,1000);
1
vote
1 answer

Connect to postgresql with SSH tunnel in .NET

I try to connect to remote PostgreSQL server from my Windows client. When I connect to the database using "Dbeaver" i hava to fill the Network connection (SSH) and it connects OK. I am developing an application in VB.NET that have to connect to the…
1
vote
2 answers

How i can establish connection ssh from c#

This is my first post on stackoverflow, sorry for anything. On my scope: private SshClient client; private ForwardedPortDynamic port; I have a sample code to connect with ssh similar at putty: private void Connect() { try { …
1
vote
1 answer

GTP support in OpenFlow

I know it's not the typical, legal stackoverflow question, however it seems to be a very tough one as no one has a precise answer. So, back to the topic, I know there is a tunnel-id metadata matching field which was introduced in the 1.3 openflow…
pa5h1nh0
  • 262
  • 3
  • 13
1
vote
1 answer

Trying to make a SSH Tunel

I configurated a bastion server on AWS on my public subnet. I can make direct ssh to the ec2 instance inside the private subnet, using the bastion host. I can connect to the bastion host and check if the 7474 port on the private ec2 istance is…
p.magalhaes
  • 7,595
  • 10
  • 53
  • 108
1
vote
1 answer

Java RMI via Webservice?

I'm searching for a possibility to run a java RMI application via webservice or an internet protocol. is there any framework or solution that says "I can run RMI as WebService with WS-Security" or "I can run RMI via HTTPS" etc. or is tunneling RMI…
AxelTheGerman
  • 986
  • 13
  • 26