Linux—SoftEther_VPN

Situation

# 下載好SoftEther VPN但不知道怎麼用
Downloaded SoftEther VPN but don’t know how to use it.

Solution - Download and Install

[1]
# 官網下載SoftEther VPN Client
https://www.softether.org/5-download

[2]
# 解壓縮
tar zxvf FileName.tar.gz

[3]
# 安裝gcc make
sudo apt install gcc make

[4]
# 編譯
cd /Your_SoftEther_Directory
make

Solution - How to use

[1]
# 開啟VPN服務
sudo vpnclient start

[2]
# 進入設定頁面(Enter > 本機)
sudo vpncmd > 2 > Enter

[3]
# 建立網卡
NicList
NicCreate > "Name"

[4-1]
# 連線設定
AccountList
AccountCreate > "Your_VPN_Name" > "Server_IP":"Server_Port" > "HUB_Name" > "UserName" > "Your_Nic_Name"

[4-2]
# 連線密碼設定
AccountPasswordSet > "Your_VPN_Name" > "Password"

[5]
# 如果要更改連線參數
AccountSet 
AccountUsernameSet
AccountNicSet
AccountPasswordSet

[6]
# 確認參數
AccountGet "Your_VPN_Name"

[7]
# 連線
AccountConnect

# 中斷連線
AccountDisconnect

[8]
# 關閉VPN服務
exit > sudo vpnclient stop