赞
踩
升级到Ubuntu23.04之后FortiClient VPN无法登陆使用,经过测试摸索发现如下解决方案
#!/bin/bash
echo "Try to connect to the VPN now"
x=99
while [ $x -ne 0 ]
do
echo "Waiting for VPN connection..."
sleep 1
connection=$(nmcli connection show | grep -oP '^vpn\S*')
x=$?
done
echo "VPN connection $connection was created! Waiting for 'device-reapply'..."
x=99
while [ $x -ne 0 ]
do
nmcli -f GENERAL.STATE con show $connection 2> /dev/null
x=${PIPESTATUS[0]}
sleep 1
echo "Still waiting..."
done
echo "Device is unmanaged. Setting it to 'up' again..."
nmcli con up $connection 2> /dev/null
echo "Done."
脚本输出为
mango@mango-ubuntu:~/Desktop$ ./a.sh
Try to connect to the VPN now
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
Waiting for VPN connection...
VPN connection vpn0078186942 was created! Waiting for 'device-reapply'...
Still waiting...
Device is unmanaged. Setting it to 'up' again...
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/5)
Done.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。