如何在 CRONTAB 中使用命令行 vpn?

如何在 CRONTAB 中使用命令行 vpn?

我正在尝试使用 nordvpn/windscribe/expressvpn 命令行实用程序(随意选择,我都试过了)来每 5 分钟安排一次更改我的 IP 地址。

在交互式 bash 中使用这些可以正常工作:

nordvpn connect
windscribe connect best
expressvpn connect usla

但是在 crontab 中没有任何效果(为了简洁起见,我省略了断开连接):

sudo crontab -e

*/5 * * * * nordvpn connect
*/5 * * * * windscribe connect best
*/5 * * * * expressvpn connect usla

有没有办法安排 VPN 连接?谢谢。

相关内容