以前我可以使用以下方法从 Ubuntu 远程连接到我办公室的 Windows 机器:
sudo openvpn --mktun --dev tun1
sudo ifconfig tun1 up
sudo openconnect ${VPN_SERVER_ADDRESS} --authgroup=${VPN_AUTH_GROUP} --interface=tun1
...然后我将使用 Remmina 建立与我的机器的连接。当我使用完 Remmina 后,我将使用以下命令关闭:
sudo ifconfig tun1 down
sudo openvpn --rmtun --dev tun1
几天前,这个功能停止工作了。拨打电话后openconnect
,我收到的最后 3 条消息是:
Please complete the authentication process in the AnyConnect Login window.
No SSO handler
Failed to complete authentication
提到的“AnyConnect 登录窗口”(或任何其他窗口)未出现。我该如何提供合适的 SSO 处理程序,或者以其他方式解决问题?我尝试添加--external-browser=firefox
(或--external-browser=/usr/bin/firefox
,以及使用 Chromium),但这没有任何区别。我想使用开源解决方案,我正在使用 Ubuntu 23.04。