6

I am trying to setup a Windows client and I need sacli in Ubuntu to create the client configuration file. Does anyone know where it is? I cant find it.

Langerz
  • 63

1 Answers1

2

It seems that sacli is not packaged.

You can download the OpenVPN Access Server from Download page. Then install it to your system with:

  • Ubuntu 16.04 LTS

    cd ~/Downloads
    wget https://swupdate.openvpn.org/as/openvpn-as-2.7.3-Ubuntu16.amd_64.deb
    sudo apt install ./openvpn-as-2.7.3-Ubuntu16.amd_64.deb # for 16.04 LTS
    
  • Ubuntu 18.04 LTS

    cd ~/Downloads
    wget https://openvpn.net/downloads/openvpn-as-latest-ubuntu18.amd_64.deb
    sudo apt install ./openvpn-as-latest-ubuntu18.amd_64.deb
    

and then launch sacli with

/usr/local/openvpn_as/scripts/sacli
N0rbert
  • 99,918