Vpn

如何在後台使用 openconnect

  • April 19, 2020

我將在 CEntOS 7 終端上使用 openconnect 連接到 VPN。我只有一個終端,因為我正在進行 SSH 會話。我需要使用 openconnect 連接到 VPN。我這樣做是這樣的:

openconnect -u username us.myprovider.net

我需要在後台執行 VPN,然後在前台做其他事情。目前,我啟動 VPN,按 Ctrl + Z 然後按 bg 將其發送到後台。但是,這似乎關閉了 VPN 連接。我怎樣才能做到這一點?

根據Openconnect 文件,您想嘗試的選項是:

-b,--background

Continue in background after startup

連接:

sudo openconnect --background <...>

要斷開連接:

sudo killall -SIGINT openconnect

使用SIGINT為後台程序提供時間來清理 DNS 配置並正常退出。

引用自:https://unix.stackexchange.com/questions/446301