我正在开发一个 bash 脚本,该脚本使用 openconnect 使用 Zenity(最终用户友好)将 VPN 与智能卡或 RSA 令牌连接起来,它会在调用期望生成过程之前提示用户输入所需的变量。除非 RSA 令牌不同步,否则它工作得很好,需要用户输入下一个令牌代码。
有谁知道在开始生成过程后如何成功调用 zenity?我需要使用 zenity 定义一个新变量 ($token) 并将其应用于预期正在处理的脚本。由于它正在请求下一个令牌代码,因此我无法在调用生成过程之前预定义变量。以下是 bash 脚本的一部分。此外,此脚本在后台运行。用户看不到在终端中运行的脚本。
function rsa() {
while [ -z "$user" ]; do
user
if [[ $? -eq 1 ]]; then
exit 1
fi
done
while [ -z "$pin" ]; do
pin
if [[ $? -eq 1 ]]; then
exit 1
elif [ -n "$pin" ]; then
notify-send -t 10000 "Starting VPN" "Attempting connection to the network."
expect -c "
spawn sudo openconnect https://***removed*** -g ***removed*** -u $user --no-dtls --no-cert-check --no-xmlpost
expect {
\"Failed to obtain WebVPN cookie\" {
puts [exec notify-send -t 10000 \"Connection Unsuccessful\" \"Connection attempt halted.\"]
exit
}
\"Password:\" {
send $pin\r
expect {
\"TOKENCODE:\" {
***need to call zenity and define $token here***
send $token\r
interact
}
\"Login failed\" {
puts [exec notify-send -t 10000 \"Incorrect PIN\" \"Connection attempt halted.\"]
exit
}
\"Failed to obtain WebVPN cookie\" {
puts [exec notify-send -t 10000 \"Connection Unsuccessful\" \"Connection attempt halted.\"]
exit
}
\"Connected tun0\" {
puts [exec notify-send -t 10000 \"Connection Successful\" \"VPN Connected\"]
interact
}
}
}
}"
fi
done
exit
}