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.
Asked
Active
Viewed 1.1k times
1 Answers
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
-
Thanks heaps for the info, will do. – Langerz Apr 15 '19 at 05:18
-
This get me the error OpenVPN-as Depends openvpn-as-bundled-clients but it is not installable – Fidel Orozco Apr 01 '20 at 20:54
-
@FidelOrozco then its third-party packaging issue. Ask OpenVPN support about this. – N0rbert Apr 02 '20 at 08:05