Microsoft recently released a linux client to access the VPN, but for now, there is only an ubuntu 22.04 package.
These are the steps to get it running under fedora 40. USE AT YOUR OWN RISK!
- Download the deb from the MS repository
- Install
alien
and runalien -r -g -v microsoft-azurevpnclient_3.0.0_amd64.deb
to get the package unpacked - Fix the spec file and remove two lines which would give you problems (don’t remember which lines, just run the next two lines and install the rpm -> it will show two conflicts for polkit related directories)
- Create a resulting rpm with
cd microsoft-azurevpnclient-3.0.0 && sudo rpmbuild --target x86_64 --buildroot $(pwd)/microsoft-azurevpnclient-3.0.0 -bb microsoft-azurevpnclient-3.0.0-2.spec && cd ..
- Install the resulting rpm, overwriting the libcurl mismatch:
sudo rpm -Uhv --nodeps microsoft-azurevpnclient-3.0.0-2.x86_64.rpm
- Fix the missing capability:
sudo setcap 'cap_net_admin=ep' /opt/microsoft/microsoft-azurevpnclient/microsoft-azurevpnclient
Afterward you can login as described by importing the downloaded connection file.
It works… But obviously a native Fedora 40 package would be nice.