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
3
votes
1 answer

Module `expo` does not exist in the Haste module map

I am trying to create a react-native bundle and getting the following error: Unable to resolve module `expo` from `C:\Users\\Projects\myProject\src\HomeScreen\HomeScreen.js`: Module `expo` does not exist in the Haste module map This might be…
Manoj Goel
  • 2,034
  • 4
  • 12
  • 24
3
votes
3 answers

How do I use multiple ngrok accounts on the same workstation?

The config file of ngrok allows only a single authtoken line, and all resources available to you as a user (e.g., reserved hostnames) are based on the account associated with the authtoken. If you have multiple ngrok accounts--for example, a…
Cory
  • 1,530
  • 2
  • 11
  • 15
3
votes
1 answer

How to detect SSTP traffic?

I'm writing a program which should detect a VPN traffic. As far as I read about the subject, it seems the detection of the tunneling protocol is easy as firewall rules, using their dedicated ports: PPTP: port 1723/TCP OpenVPN: port 1194 L2TP: port…
3
votes
1 answer

Iodine in Windows error

I am trying to run iodine in Windows but I am getting this error and I have no idea why. I tried running it as Administrator but does not work too. C:\>iodine.exe -f -P test 'redacted IP' blah.domain.com Error opening registry key ░≤" No TAP…
r3dfl4g
  • 123
  • 1
  • 3
  • 11
3
votes
2 answers

create tunnel in order to access https via port 443

I have Windows machine that connected to Linux server 192.9.100.10 And Linux server has connectivity to the IBM blade center management GUI - 192.9.100.200 From my Windows machine I do not have connectivity to 192.9.100.200 My target is to access…
maihabunash
  • 1,632
  • 9
  • 34
  • 60
3
votes
2 answers

OpenVPN + obfsproxy on OSX client

I'm trying to get around a very restrictive firewall that blocks everything besides ports 80 and 443 and apparently even does DPI to block VPNs. For that matter I'm trying to obfuscate OpenVPN traffic using obfsproxy. Here's my setup:…
Michel Müller
  • 5,535
  • 3
  • 31
  • 49
3
votes
2 answers

npm install -> tunneling socket could not be established

This error message has been answered quite a few times on Stack Overflow, but all the solutions didn't work for me. Whenever I do npm install I get the following message: npm ERR! network tunneling socket could not be established, statusCode=407 npm…
Jayne Mast
  • 1,427
  • 1
  • 16
  • 32
3
votes
3 answers

How to tunnel voip traffic in blocked networks

I have an Android VOIP application. As some networks block VOIP traffic I wold like to find some way to bypass the block. I think that VPN can do this, but there is no any VPN solution that can be implemented easily. With the VPN API that Android…
Andranik
  • 2,729
  • 1
  • 29
  • 45
3
votes
2 answers

How can I use SSH tunneling to connect to a remote MySQL server?

I'm using SSH tunneling for the first time, so I'm trying to understand how to configure it. I've got a remote Linux server that hosts a MySQL database that I'm trying to connect to. In order to access the MySQL database directly through a software…
Dezzie
  • 934
  • 3
  • 18
  • 35
3
votes
0 answers

How to bypass firewall for RSYNC with SSH tunneling and corkscrew Proxy

I'm trying to use rsync to connect to an Rsync server. However, our company firewall blocks the 873 port used by rsync. Using the following proxy configuration with corkscrew in the ~/.ssh/config file, I can bypass the firewall and connect to remote…
3
votes
1 answer

iOS app-level communication over USB

Is it possible to to communicate between MAC/Windows programs and an application on iOS through USB? Requirements: No jailbreak required App store approval I looked into USBMuxConnectByPort and it requires SSH/Jailbreak. Is there any other option?
Paul Knopf
  • 9,568
  • 23
  • 77
  • 142
3
votes
1 answer

developing a proxy script

in developing an open source proxy script, a piece of code's are below: static void Main(string[] args) { string host = "www.google.com"; int proxyPort = 443;//443; byte[] buffer…
Kamyar Safari
  • 420
  • 2
  • 9
3
votes
3 answers

Preventing WPF event tunneling

I would need to draw lots of WPF-paths. I have set them to children of canvas. Problems is that events are tunneled to path-objects. That slows down the performance. I know overriding preview-method fix the problem, but do I really have to override…
vrj
  • 41
  • 2
3
votes
2 answers

JProfiler - how to profile remote application when there is firewall?

I successfully managed to install the JProfiler remote probe and I see it running in 'catalina.out' (Tomcat). The only problem is that all ports on the remote machine are firewalled (except for 80 and 8080) and no matter which port I chose, the…
Ivan Davidov
  • 277
  • 1
  • 10
3
votes
4 answers

RDP through TCP Proxy

First time in Stackoverflow and I'm hoping someone can help me. I'm looking at a proof of concept to pass RDP traffic through a TCP Proxy/tunnel which will pass through firewalls using HTTPS. The problem has to do with deploying images to machines…
user221484
  • 31
  • 1
  • 1
  • 2