配置 OpenFortiVPN
Install OpenFortiVPN
1
brew install openfortivpn
Install 1Password CLI
1
2brew install --cask 1password/tap/1password-cli
op --versionEnable 1Password CLI
- Ensure 1Password 8.x has installed.
- Open 1Password, and go to “Preferences”.
- Locate “Security”, check “Touch ID”.
- Locate “Developer”, check “Biometric unlock for 1Password CLI”.
Setup 1Password CLI
1
op vault ls
Create script entry
New file under
/usr/local/bin
1
2
3sudo touch /usr/local/bin/vpn
sudo chmod +x /usr/local/bin/vpn
sudo vi /usr/local/bin/vpnEnter file content:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
OP_ITEM_FOR_MAC=your-value
OP_ITEM_FOR_VPN=your-value
SUDO_PASSWORD=$(op item get $OP_ITEM_FOR_MAC --reveal --fields label=password)
USER_NAME=$(op item get $OP_ITEM_FOR_VPN --fields label=username)
PASSWORD=$(op item get $OP_ITEM_FOR_VPN --reveal --fields label=password)
OTP_KEY=$(op item get $OP_ITEM_FOR_VPN --otp)
VPN_ENDPOINT=abc.example.com:port
VPN_TRUSTED_CERT=value-here
echo "$SUDO_PASSWORD" | sudo -S openfortivpn $VPN_ENDPOINT \
--trusted-cert $VPN_TRUSTED_CERT \
--set-dns=0 \
--pppd-use-peerdns=1 \
-u $USER_NAME \
-p $PASSWORD \
--otp=$OTP_KEY
Verify script entry
Run script
1
vpn
Authenticate with Touch ID
Check terminal output
1
2
3
4
5
6
7
8INFO: Connected to gateway.
INFO: Authenticated.
INFO: Remote gateway has allocated a VPN.
...
INFO: Interface ppp0 is UP.
INFO: Setting new routes...
...
INFO: Tunnel is up and running.