Did You Know?

Docly turns out that context is a key part of learning.

SSTP Installation

Estimated reading: 2 minutes 23 views

1. Install SSTP Client on Ubuntu / Debian

 

Ubuntu/Debian 18.04+

    1. Update the Package List: Open a terminal and update your system’s package list:
      sudo apt update
    2. Install sstp-client: Install the sstp-client package, which is available from the official repository for Ubuntu/Debian:
      sudo apt install sstp-client
    3. Check if SSTP Client Installed Successfully: After installation, you can check if sstp-client is installed correctly by running:
      sudo sstpc –version

2. Install SSTP Client on CentOS/Red Hat

CentOS 7/8 / RHEL 7/8

    1. Install EPEL Repository (for CentOS/RHEL 7): If you haven’t already, you need to install the EPEL repository:
      sudo yum install epel-release
    2. Install Dependencies: Install the necessary dependencies (like gcc, make, openssl, etc.):
      sudo yum groupinstall “Development Tools”
      sudo yum install gcc openssl-devel make
    3. First, download the sstp-client source code from GitHub:
      sudo git clone https://github.com/greeger/sstp-client.git
    4. Navigate into the sstp-client directory:
      cd sstp-client
    5. Compile the sstp-client:
      make sudo make install
    6. Verify the Installation: To check that sstp-client is properly installed:
      sstpc –version

3. Install SSTP Client on Fedora

    1. Install Dependencies: Install the required build tools and dependencies:
      sudo dnf groupinstall "Development Tools" sudo dnf install gcc openssl-devel make
    2. Clone the sstp-client GitHub repository:
      git clone https://github.com/ggreer/sstp-client.git cd sstp-client
    3. Compile and install the client:
      make sudo make install
      sstpc --version

Leave a Comment

Share this Doc

SSTP Installation

Or copy link

CONTENTS