Z
Z
ZloyAntoha2019-09-19 18:37:47
VPN
ZloyAntoha, 2019-09-19 18:37:47

Which type of vpn server to choose for installation?

It is necessary to connect about 500 clients for a day or two on the VPN. there is a 100 Mbit channel, a computer on I5, mikrotik 2011.
since there are many clients, you need maximum ease of establishing a connection on clients.
Encryption is not critical, the main thing is speed
Which server (WIN) to choose? While I'm thinking between OpenVpn or SoftEther VPN, or maybe there are other options?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
T
Talyan, 2019-09-19
@flapflapjack

you need to raise the pptp server, since everything can connect to it with built-in tools. iPhone, android, Windows (even XP) can use pptp boxes.
I picked up l2tp on my server today, so I'll demolish it now - install pptp. Go and explain to a technically inexperienced person where to drive the keys from ipsec. Fuck! I'll put pptp better - it rises no more difficult than PPPoE on clients.
On Windows, this connection is called "Connect to a network at work"

2
20ivs, 2019-09-20
@20ivs

here is a solution for you in one click on Windows
on the server you raise L2tp + IPsec.
On Windows, run the powershell script. (save to a text document and change the .txt extension to .ps1)

$VpnName = "ИМЯ_VPN_СОЕДИНЕНИЯ"
$gateway = "IP_СЕРВЕРА"
$psk = "КЛЮЧ-IPSEC"
$regp = 'HKLM:\SYSTEM\CurrentControlSet\Services\PolicyAgent' #if VPN server is behind NAT, otherwise comment out this line.

#add l2tp vpn
Add-VpnConnection -Name $VpnName -ServerAddress $gateway -TunnelType L2tp -AuthenticationMethod MSChapv2 -EncryptionLevel Optional -L2tpPsk $psk -Force -AllUserConnection -RememberCredential -SplitTunneling
New-ItemProperty -Path $regp -Name AssumeUDPEncapsulationContextOnSendRule -Value 2 -PropertyType 'DWORD' -Force

It remains only to drive in the login / password when you first connect. the IPSec key will already be integrated.

R
Ruslan Fedoseev, 2019-09-19
@martin74ua

pritunl look

A
Andrey Barbolin, 2019-09-19
@dronmaxman

pptp is very easy to set up on the client side, but is not supported on macOS. OpenVPN is also simple, just install the client and import the config.

C
CityCat4, 2019-09-20
@CityCat4

Maximum simplicity, if you don't care about encryption - PPTP. Everyone knows him, everyone knows how.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question