摘要:
本地通过命令连接vpn时,经常断开连接,使用脚本检测自动重连。 #!/bin/sh while true do ps -ef | grep "my_vpnc" | grep -v "grep" if [ "$?" -eq 1 ] then my_vpnc echo "vpn has been res 阅读全文
摘要:
manjaro 连接vpn 需要安装 expect #!/usr/bin/expect vpn_host='' group='' user_name='' password='' spawn sudo openconnect --csd-wrapper=/usr/lib/openconnect/cs 阅读全文