SSTP Installation
Estimated reading: 2 minutes
23 views
1. Install SSTP Client on Ubuntu / Debian
Ubuntu/Debian 18.04+
-
- Update the Package List: Open a terminal and update your system’s package list:
sudo apt update
- Install
sstp-client
: Install thesstp-client
package, which is available from the official repository for Ubuntu/Debian:sudo apt install sstp-client
- Check if SSTP Client Installed Successfully: After installation, you can check if
sstp-client
is installed correctly by running:
sudo sstpc –version
- Update the Package List: Open a terminal and update your system’s package list:
2. Install SSTP Client on CentOS/Red Hat
CentOS 7/8 / RHEL 7/8
-
- Install EPEL Repository (for CentOS/RHEL 7): If you haven’t already, you need to install the EPEL repository:
sudo yum install epel-release
- Install Dependencies: Install the necessary dependencies (like
gcc
,make
,openssl
, etc.):
sudo yum groupinstall “Development Tools”
sudo yum install gcc openssl-devel make - First, download the sstp-client source code from GitHub:
sudo git clone https://github.com/greeger/sstp-client.git - Navigate into the sstp-client directory:
cd sstp-client - Compile the
sstp-client
:
make sudo make install - Verify the Installation: To check that
sstp-client
is properly installed:
sstpc –version
- Install EPEL Repository (for CentOS/RHEL 7): If you haven’t already, you need to install the EPEL repository:
3. Install SSTP Client on Fedora
-
- Install Dependencies: Install the required build tools and dependencies:
sudo dnf groupinstall "Development Tools" sudo dnf install gcc openssl-devel make
- Clone the sstp-client GitHub repository:
git clone https://github.com/ggreer/sstp-client.git cd sstp-client
- Compile and install the client:
make sudo make install
sstpc --version
- Install Dependencies: Install the required build tools and dependencies: