I just downloaded and installed the Linux vpn client.
As described, the download is little more than binaries, or at least is the bare minimum to create the binaries.
Am running the vpn client without issue on LEAP 15 although it’s configured only with defaults… ie. it launches without reporting an error.
Here are the steps…
Download the Linux VPN client package from the Azure server, the 640bit client should be the following file as of today
softether-vpnclient-v4.27-9668-beta-2018.05.29-linux-x64-64bit.tar.gz
Extract it with the following command
tar -xf softether-vpnclient-v4.27-9668-beta-2018.05.29-linux-x64-64bit.tar.gz
Install prerequisites. Make should already be installed by default. Maybe none of the following is required at all, but I installed them anyway as my SOP.
Or, skip this step and run the make command (described next) to verify you aren’t really compiling anything.
zypper in kernel-devel kernel-default-devel gcc
If your terminal isn’t already where you extracted the vpn client files, cd to the directory.
The makiefile doesn’t appear to compile anything, it’s used to walk the User through a series of agreements
Execute make to install (no make install needed). Choose option 1 for every question. When completed, (in a split second which likely means only copying and no building), you will find two new executables, vpnclient and vpncmd.
make
Now, execute your vpn client to test
./vpnclient start
Although I installed all those prerequisites for compiling, I suspect they’re unneeded.
HTH,
TSU