Questions tagged [vpn]

A virtual private network (VPN) is a network that uses primarily public telecommunication infrastructure, such as the Internet, to provide remote offices or travelling users access to a central organizational network. Questions about configuring or using a VPN should be asked on Super User or Server Fault.

Virtual private networks encapsulate data transfers using a secure cryptographic method between two or more networked devices (which are not on the same private network) to keep the transferred data private from other devices on the wide area networks. (adapted from Wikipedia)

Although VPNs are private, they still use public resources. This means that all data sent over the network needs to be encrypted encase it is intercepted during the transfer.

Please keep in mind that questions about how to set up or use VPN software do not involve programming, and are therefore off-topic for this site. You may want to try posting these questions on Server Fault instead.

3339 questions
12
votes
1 answer

Visual studio 2010 - crashing on VPN network change... any ideas?

Many times when I change VPN status by disconnecting a remote network my VS instance immediately crashes. This is the closest thing I can find in the event log. Anyone have any ideas about this? Exception:…
Davery
  • 317
  • 1
  • 10
12
votes
1 answer

How to connect VPN using nodejs in ubuntu

I have the code in my nodejs file which gives me the following information host:"147.0.40.145" method:"aes-256-cfb" password:"9c359ad1ebeec200" port:38473 I need to use above information and want to connect VPN through it. I have used below code…
Profer
  • 553
  • 8
  • 40
  • 81
12
votes
1 answer

is it possible to host a vpn server using node js?

I was just wondering if it's possible to host a VPN server using node js? This will make it very easy to create restrictions for the connection or block certain websites for example... I can't find an npm package for hosting a vpn server. Any…
bbkrz
  • 423
  • 1
  • 8
  • 16
12
votes
1 answer

Keychain references in Swift used in NEVPNManager

I'm trying to connect to a VPN using Swift in Xcode. I'm using KeychainSwift to keep keychain references. My code looks like this: private func connectVPN(completion: @escaping () -> Void) { let keychain = KeychainSwift() …
Bartosz Woźniak
  • 2,065
  • 3
  • 14
  • 31
12
votes
2 answers

Android VpnService class and its builder class

I have two questions concerning the VpnService.Builder class. Suppose I know an App communicate with its server www.somedomain.com, I know the server's IP address is 210.32.204.165. About the addAddress(String address, int prefixLength) function.…
Leem.fin
  • 40,781
  • 83
  • 202
  • 354
12
votes
1 answer

use vpn with python requests

I have to following problem. I need to check if certain urls are working and returning a correct response. I want to use python requests for this. However the urls have a redirect in it if the device or geo is incorrect and we need to check a lot of…
user3605780
  • 6,542
  • 13
  • 42
  • 67
12
votes
1 answer

AWS Inter Region VPN with VYOS

I'm trying to setup a VPN between two AWS Region(Oregon and Ireland). On the Oregon region, I've used the AWS VPN service and in Ireland, I've used the vyos EC2 instance from the marketplace. In Oregon I've launched one instance and opened its…
Matt
  • 4,309
  • 7
  • 38
  • 52
12
votes
1 answer

How to Create VPN Profile and Connect to it in android Programmatically?

We are developing an Android app that needs to connect to a VPN. The problem that we have is that the users that are going to use this app, do not have any knowledge about Creating VPN profiles, to connect then to it, and then to connect to the app…
Taulant Ymeri
  • 121
  • 1
  • 4
12
votes
2 answers

Detecting application request from VPN Service + Packets blocking[Android]

I am trying to figure out which application on my device has made any internet usage request (called any api etc).. For this I have created a class extended from "VpnService" class just to make sure my device traffic routes through me, although i…
Reno Jones
  • 1,979
  • 1
  • 18
  • 30
12
votes
1 answer

VPN packet bypass

I'm working on creating a simulated VPN (Doesn't actually create a real connection to server) to get all incoming and outgoing network bytes (information). For now i can get packets and parse them. What i get for example: IP Version:4 Header…
CikLinas
  • 242
  • 3
  • 12
12
votes
1 answer

SSH, Connection established, but stuck

I can ssh to server in my house, but I fail to ssh by some VPN or public wifi(not all). when I type ssh -v user@server.domain, I got this: OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 debug1: Reading configuration data /etc/ssh_config debug1:…
xhg
  • 1,850
  • 2
  • 21
  • 35
12
votes
1 answer

Native Android VPN programmatically

Variants of this question exist, but I can't seem to understand something. If you read at the end of the features in ICS / 4.0, there is mention of Enterprises can also take advantage of a standard VPN client built into the platform that provides…
Dulax
  • 553
  • 3
  • 20
11
votes
1 answer

VPN access for applications running inside a shared Kubernetes cluster

We are currently providing our software as a software-as-a-service on Amazon EC2 machines. Our software is a microservice-based application with around 20 different services. For bigger customers we use dedicated installations on a dedicated set of…
MellowCoder
  • 149
  • 1
  • 4
11
votes
1 answer

AWS S3 static site with HTTPS and VPN-only access

Currently we have a static site deployed to ECS (Elastic Container Service) and fronted by an ELB (Elastic Load Balancer). This model doesn't really make sense, since the container is just running NGINX to serve static assets. However, what we do…
11
votes
5 answers

Protect a socket in VpnService

I'm exploring the capabilities of Android's VpnService. Presently, I've built a very rudimentary request forwarder by essentially rebuilding the IP stack in user space: I read IP packets from the VpnService's input stream, parse them, and for…