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
0
votes
0 answers

Accessing the Intranet MongoDB from external network

I am currently developing a code in which it needs to access to MongoDB which is in the company intranet. Actually connecting to MongoDB with GUI was easy, since we can simply use Robo 3T which offers a tunneling function. But the problem is that…
Sharon
  • 1
  • 1
0
votes
1 answer

sublime text sftp tunnel wbond

To work remotely I need to SSH into the main server and then again into the departmental server. I would like to set up a tunnel using sublime text 3 wbond sftp package to view and edit files remotely but I can't seem to find any information for…
linesd
  • 31
  • 9
0
votes
1 answer

Accessing SSH tunnel from third machine

I have set the following ssh tunneling, to access office machine from home: [execute from office machine] Setup connection Office -> Home (as Home has public IP). Setup reverse tunnel from office machine to home: ssh -CNR 19999:localhost:22…
user4453877
0
votes
0 answers

Communication between two open vswitches

I have deployed multiple open vswitches each deployed on a virtual machine (one switch for one machine). I would like switches to communicate among themselves. I have gone through few posts regarding gre or vxlan tunneling. I have tried those…
karra
  • 45
  • 1
  • 10
0
votes
0 answers

Run any kind of browser on Raspberry pi 3 without GUI

The goal is to open a web browser in my home network from a from a remote location with ssh tunnelling. SSH tunnel is okay, I just want to somehow run a browser on my RPI3 in my home network. Is it possible somehow? I use my pi as a media server,…
Badb0y
  • 331
  • 2
  • 21
0
votes
1 answer

Docusign developer webhook not allowing http

When setting up a webhook URL I need to use an http connection for my dev account. The docs clearly say that this is a valid option. Only the production env needs HTTPS but dev env can have HTTP or HTTPS See here and here. I have tried on the…
Ben
  • 515
  • 5
  • 18
0
votes
1 answer

PreviewMouseDoubleClic handled ignored

I have a window containing a textBox. On both the window AND the textBox, I add a PreviewMouseDoubleClicHandler. Handler in the window: private void PreviewMouseDoubleClickHandler(object sender, MouseButtonEventArgs e) { Debug.WriteLine("handler…
David
  • 6,014
  • 4
  • 39
  • 55
0
votes
0 answers

Can I tunnel a connection using Windows Server 2008

I have a client that has some data that I need to process. This data is in a closed server that can only be accessed by a Windows Server 2008 server instance, via a specific port on the closed server. My idea is to create a tunnel that forwards…
Rodrigo Sasaki
  • 7,048
  • 4
  • 34
  • 49
0
votes
2 answers

Access my foscam camera on my home from the Internet - using ssh tunnels

Recently I buyed a Foscam wireless IP camera: http://www.foscam.com/Products_List.asp?id=173 In my home, my laptop and my IP camera are behind a cable modem (my ISP gives me a dynamic IP) using a linksys router (I dont have a public IP). Actually I…
0
votes
1 answer

Using AWS Load Balancer as a Tunneling Proxy

I have ETL servers in a private subnet in my VPC on AWS. These ETL servers are locked down with specific outbound rules per approved outbound IP addresses. I have a service these ETL tools need to communicate with outside the VPC using TLS1.2/443…
0
votes
1 answer

SQL Server Remote Tunnel Applications

I would like to know if there are some type of applications that allows me to access SQL Server in my local server remotely from a desktop application in one of my other branches through Internet; I've already read about accessing it by using public…
Mohamed Nor
  • 583
  • 1
  • 7
  • 12
0
votes
1 answer

How do i tunnel from local to external apache

I'm trying to set up a ssh tunnel using putty so i can view websites which are at my work location. The remote development server (apache) does not accept any incoming calls on port 80, so i'm trying to tunnel through ssh which should work since i'm…
Michael
  • 1,201
  • 1
  • 8
  • 15
0
votes
1 answer

Meteor iOS app issue with AirWatch VPN Tunneling

We have developed a mobile app using Meteor+Ionic2. We use our internal NodeJS server which is not in internet zone. We got the app deployed to our enterprise app store which enables AirWatch VPN tunneling to get the access to server in intranet…
annadurai
  • 172
  • 1
  • 9
0
votes
1 answer

real time anomaly detection packages

Is anyone aware of any open source codes for Netflow Anomaly detection for DDOS and tunneling? I am a newbie in this area . I did find very few on github but anyone who has more experience with it, do advise. Just want to try a few to understand…
venu
  • 1
0
votes
1 answer

How do Messaging Applications "Bypass" Firewalls?

there. I am currently making a python net-chat program of sorts. Currently it only works on a local network and cannot send messages to clients connected outside the network due to their router's firewall blocking the messages that are being sent to…