WindowsサーバーVPNは多くの場合SSTPで実行できることをご存知かもしれません。 Windows 10からの接続は非常に簡単ですが、個人のMacからリモートで作業する必要がある場合は? Mac OSは、そのままではSSTP VPMをサポートしていません。
以下は、MacOSからWindows SSTP VPNに接続する場合の簡単な手順です。
前提条件:Homebrewがインストールされている- here を参照
ターミナルを実行し、sstp-clientをインストールします
brew update
brew install sstp-client
ログインとパスワードを使用してSSTP VPNに接続するには、次のコマンドラインを使用します。
Sudo /usr/local/sbin/sstpc --log-stderr --cert-warn --user <user> --password <password> <server> usepeerdns require-mschap-v2 noauth noipdefault defaultroute refuse-eap noccp
VPN接続を開始するUIが必要な場合は、iSstpを使用できます
https://www.axot.org/2015/03/03/isstp-a-sstp-client-for-mac-osx/
私もこれに問題があったので、削除しました/sstpc
およびコマンドSudo /usr/local/sbin/sstpc
は正しかった