当我运行命令时
apt-cache search network-manager | grep sstp它是空白的。我可以找到pptp和openvpn,但不是sstp。
相关的sstp包是否已被移除?
编辑 -这对我有用
我运行了以下命令
sudo add-apt-repository ppa:eivnaes/network-manager-sstp
sudo apt-get update
sudo apt-get install network-manager-sstp
sudo apt-get install sstp-client然后我打开网络连接
nm-connection-editor然后我在那里建立了一个VPN。
发布于 2017-08-13 15:43:01
在16.04LTS上运行了以下命令:
sudo add-apt-repository ppa:eivnaes/network-manager-sstp
sudo apt-get update
sudo apt-get install network-manager-sstp
sudo apt-get install sstp-client然后我打开网络连接
nm-connection-editor然后我在那里建立了一个VPN。
发布于 2017-08-13 15:00:33
在我的系统中,我做了locate sstp,找到了/usr/share/nmap/scripts/sstp-discover.nse,它的部分内容是,
Check if the Secure Socket Tunneling Protocol is supported. This is
accomplished by trying to establish the HTTPS layer which is used to
carry SSTP traffic as described in:
- http://msdn.microsoft.com/en-us/library/cc247364.aspx
Current SSTP server implementations:
- Microsoft Windows (Server 2008/Server 2012)
- MikroTik RouterOS
- SEIL (http://www.seil.jp)
]]
--SSTP specification:
-- _ http://msdn.microsoft.com/en-us/library/cc247338.aspx
--
--Info about the default URI (ServerUri):
-- - http://support.microsoft.com/kb/947054
--
--SSTP Remote Access Step-by-Step Guide: Deployment:
-- - http://technet.microsoft.com/de-de/library/cc731352(v=ws.10).aspx
--
--SSTP enabled hosts (for testing purposes):
-- - http://billing.purevpn.com/sstp-manual-setup-hostname-list.php
author = "Niklaus Schiess <nschiess@adversec.com>"发布于 2018-05-15 16:09:23
简单地说,这是一个解决方案(这启用了gui接口):
sudo apt install network-manager-sstp-gnomehttps://askubuntu.com/questions/945872
复制相似问题