Thank you @satoki for picking up this package!
I had to make some changes in my system for this update to work, here's a summary in case it helps anyone:
-
Config files are now located in
/etc/SonicWall/NetExtender/Config/
. If you have a dotfiles repository, you may need to update it. -
In my system, the connection is now called
snwl_ssltunnel
instead ofppp0
. -
Like @chris-allen said, you will need to run
sudo systemctl enable --now NEService.service
because it's not enabled by default. -
To make DNS work, I had to run
sudo systemctl enable --now systemd-resolved.service
. This made most apps work, except for those that read/etc/resolv.conf
directly, such asdig
. To fix those, I ransudo ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
. @chris-allen Maybe this was the problem you were facing? -
It seems that the
chmod u+s /usr/sbin/pppd
workaround is no longer needed. :)
Pinned Comments
physkets commented on 2021-02-10 15:33 (UTC)
In case of changes/updates to
ppp
, you will need to re-runchmod -v u+s /usr/sbin/pppd
.