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

SSH tunnel only works on loopback interface

What i am trying to do: I want to connect to an ubuntu server (server A) thats behind a NAT from the internet. Ive got an ubuntu server (server B) with its own ip adress/domain. I want to make server A to connect to server B and estabilsh a ssh…
0
votes
0 answers

Can't connect to corporate machine with SSH JCraft JSch

I've got a problem with connecting to corporate machine with SSH using JCraft JSch. public static void main(String[] args) throws JSchException { JSch jSch = new JSch(); String username = "username"; String host = "host"; int port =…
0
votes
2 answers

How to remotely connect to a local elasticsearch server - in a secure way ofc

I have been playing around with creating a webapp that uses elasticsearch to perform queries. Currently, everything is in production, thus on the localhost, let's say elasticsearch runs at 123.123.123.123:9200. All fun and games, but once the…
frankmurphy
  • 194
  • 1
  • 3
  • 13
0
votes
1 answer

Hyperparameter tunning of DeepAREstimator from gluonTS with Ray

I want to create forecasting models using the DeepAREstimator from the gluonTS package. How can I use Ray for hyperparameter tuning? Here is sample code. !pip install --upgrade mxnet-cu101==1.6.0.post0 !pip install --upgrade mxnet==1.6.0 !pip…
Fisseha Berhane
  • 2,533
  • 4
  • 30
  • 48
0
votes
2 answers

Can't run multiple ngrok tunnels using config file

I would like to run multiple Ngrok subdomains I have created an ngrok.yml file tunnels: teams: proto: http addr: 8000 subdomain: expl jira: proto: http addr: 8080 subdomain: expl2 Then I run ./ngrok start teams…
infodev
  • 4,673
  • 17
  • 65
  • 138
0
votes
1 answer

Strongswan DNS Leak with split-tunnel

I've set up Strongswan VPN with StrongMan(web-interface manager) on AWS. It works great, my company employees can access contry-restricted site without any issues. But now I need to implement split-tunneling, because we also have to send terabytes…
TigerMax96
  • 13
  • 1
  • 3
0
votes
1 answer

WPF Tunneling a Button_Click

This is my first question so please go easy :) I am new to WPF and Desktop based applications and I am studying Event Handling. Going through Bubbling and Tunneling I can not find an example anywhere that explains how to use tunneling on a…
Andy Clark
  • 3,363
  • 7
  • 27
  • 42
0
votes
1 answer

closed due to error connection error - minecraft server using tunneling with playit.gg

i’ve been getting an error when my minecraft server crashes. It’s using a service called playit.gg that utilizes tunneling to make it so you don’t have to use port forwarding. Error thrown: {random ip} /tcp tunnel=>host: closed due to error: Error {…
0
votes
0 answers

How to calculate the maximum concurrency on ssh reverse tunneling

For my personal development environment I have setup a reverse tunnele via ssh between a raspberry pi as the server which hosts my applications and a 5$ DO droplet instance with nginx and certbot to act as the publicly available ip point of my…
Mehdi Amenein
  • 937
  • 9
  • 23
0
votes
1 answer

Electron - Implement http module and socket.io

Is possible to use socket.io to create a bidirectional communication when a provided link is opened and to create a tunnel using ngrok from within an electron vue app? // import dependencies - node context of electron see ipc const { ipcMain } =…
newbiedev
  • 2,607
  • 3
  • 17
  • 65
0
votes
1 answer

how to configure ssh server on jenkins using jump host?

How to configure ssh server on jenkins using jump host? Publish over SSH pluginprovide for a jump host option but not working. I set up Hostname : public ip (bastion server ip) Username : ec2-user in advance setting Jump host: private ip (web…
Chloe
  • 161
  • 3
  • 14
0
votes
0 answers

Can be the function of Port Forwarding can be attained through IPV6?

I have a small server for my own purpose. I use SQL server in it and access the server through another computer via WAN... But my Internet provider doesn't allow port forwarding options... But the Internet provider supports ipv6 tunneling... Is it…
Abhinesh
  • 3
  • 1
0
votes
1 answer

How to write shell script to tunnel via 2 computers to third one

Im fairly new to unix/linux and have a question while trying to ssh tunnel to a computer at my college. Im trying to access computer A which is on my school network. But it cannot be accessed unless i am already insice the school network. I can ssh…
kal
  • 305
  • 6
  • 12
0
votes
0 answers

Simplifying SCP - partly via Reverse Tunnel - between three nodes connectivity

I am doing a file copy from a Smartphone to a Privat Cloud Server, from this to a Debian Server (on premise at home). The Debian Server has established a permanent Reverse Tunnel by autossh to the Privat Cloud Server. The file copy works fine when…
Karl
  • 51
  • 1
  • 7
0
votes
1 answer

Ways to host a web server with ports bellow 1024 blocked (except 22)?

My provider is Ask4 and they only provide 1:1 NAT which opens ports 22 and all above 1024. No UPnP. However, I want to use ports 80 and 443 for a web server. Is there a way without changing those ports to host a web server? Can SSH Dynamic port…
N R
  • 37
  • 5