Windows SSTP VPN - Mac Connection

You may know that a Windows VPN server can often work in SSTP. Connecting from Windows 10 is pretty simple, but if you need to work remotely with your personal Mac? Mac OS does not support SSTP VPM out of the box.

enter image description here

+4
source share
2 answers

Below is a brief guide on what to do if you want to connect Windows SSTP VPN from MacOS

Prerequisites: Homebrew installed - see here

Launch a terminal and install sstp-client

brew update
brew install sstp-client

To connect to your SSTP VPN using login and password, use the following command line:

sudo /usr/local/sbin/sstpc --log-stderr --cert-warn --user <user> --password <password> <server> usepeerdns require-mschap-v2 noauth noipdefault defaultroute refuse-eap noccp

If you prefer to use the interface to start a VPN connection, you can use iSstp

https://www.axot.org/2015/03/03/isstp-a-sstp-client-for-mac-osx/

+11

, /sstpc sudo /usr/local/sbin/sstpc

0

Source: https://habr.com/ru/post/1660695/


All Articles