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

Accessing own private ip from public ip

I'm developing a server-client application. The server one is essentially an embed grizzly server exposing REST services and the client should be an android app. For exposing REST services I'm using spring.My resource is…
volbollo
  • 11
  • 2
1
vote
1 answer

Confirm understanding: Tomcat served applet, and app network traffic?

All.. I am hoping someone who can confirm for me, what I read and what I have observed, regarding the Tomcat Java applet server? I have Linux server running Tomcat (I built two new ones, but based the configuration off the previous two that were…
jewettg
  • 1,098
  • 11
  • 20
1
vote
1 answer

Connecting to an RMI object without registry

I think I need to connect to a remote RMI object without going through the registry, but I don't know how. My situation is this: I'm implementing a simple job distribution service which consists of one distributor and multiple workers. The…
Mark Probst
  • 7,107
  • 7
  • 40
  • 42
1
vote
1 answer

Tunneling/ Port forwarding to two IPs

I am trying to run an application locally that uses a database, webservices etc in another network so I am trying to tunnel through a computer with access. However web services are used over two (possibly more) ips and I can't map one port to…
1
vote
0 answers

Procotols supported over GRE by linux kernel

Does linux kernel support L2 over GRE ? I tried to find through the source code. I could find only ip_gre.c which supports IP over GRE. So is there any restriction in kernel to support L2 protocols over GRE? Thanks, Paul
paul simon
  • 13
  • 4
1
vote
2 answers

how to replicate putty ssh tunnel settings with pure command line commands?

After a day of searching I am unable to replicate the feature with command line for ssh tunnel and reverse tunnel. reverse ssh tunnel configuration normal ssh tunnel configuration with the UI settings above I am able to get it working with…
Bigs
  • 616
  • 2
  • 11
  • 17
1
vote
0 answers

SO_KEEPALIVE does not get any response from Peer

I have a situation where a SO_KEEPALIVE on my TCP socket gets no response from the peer device. I have opened the TCP socket for TCP/IP tunneling between my networked device and a Win7 Laptop. i have programmed the socket with options…
1
vote
1 answer

JProfiler - Unable to profile remote jboss through tunneling

Am not able to profile my remote server . This remote server has to be connected through a global server , so i have to use tunnel for connecting to my server . Whenever am connecting to my remote server , jprofiler is showing the following message…
Rahul
  • 93
  • 13
1
vote
1 answer

Port forwarding with encryption

I am searching about 2 months for a port forwarder with encryption and this is making me almost crazy. I tell my goal and maybe someone can help me: I want to forward socks5 packets to another server and make it secure (safe from sniffing) because…
Soroush Khosravi
  • 887
  • 2
  • 11
  • 30
1
vote
1 answer

A unique Twilio testing predicament

I have a pretty unique predicament here. I'm using Twilio and need to test my Twiml response on my local machine. The goto solution for that is ngrok, but the problem is that the site I'm working on relies on subdomains for proper routing. There is…
Stephen Corwin
  • 968
  • 1
  • 8
  • 21
1
vote
0 answers

What happens when both STUN and TURN fail?

There are issues when the STUN and TURN servers may fail and we require TCP tunneling..Is there any way to reconfigure existing TURN and STUN servers to add the TCP tunneling feature?
1
vote
1 answer

Is there any way to have 2 Open VPN connections at the same time in android 4.1?

Question in the topic - due to Android's restriction to one VPNService at a time we are trying to have two of them which are using TUN. Is this even remotely possible?
mglisty
  • 151
  • 2
  • 4
  • 15
1
vote
1 answer

GRE Tunnel routing issue in Linux CentOS

I am creating GRE Tunnel between two Linux (CentOS6) servers using below steps. On the master server: chkconfig iptables off service iptables stop sysctl -w net.ipv4.conf.default.rp_filter=0 modprobe ip_gre ip tunnel add tun1 mode gre remote…
user1585604
  • 21
  • 2
  • 4
1
vote
1 answer

sql performance detail decision with * or specify field

When i write: if not exists (select * from sys_maxkey) is better,or if not exists (select id from sys_maxkey) is better when the table sys_maxkey variable. or it has no difference?I have found internet and analyse exists and in but not pay…
Dolphin
  • 29,069
  • 61
  • 260
  • 539
1
vote
1 answer

IBM HTTP Server configured to communicate with websphere to serve http/https

I have 2 IBM HTTP servers with ip's 10.10.10.2 & 10.10.10.3 with http(port 80) and https(port 443). I have also WAS on 10.10.10.4 with http(port 80) and https(port 443). Now, I have to setup the two http servers with single domain name and forward…
user2770375