Answer the question
In order to leave comments, you need to log in
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
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"
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
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.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question