VPNに常時接続する必要があり、いちいち手動でポチポチするのがめんどくさいので起動時に自動接続するようにします。
スクリプトエディタを開いて以下をAppleScriptとして保存。
tell application "System Events"
tell current location of network preferences
set myVpnService to the service "VPNの表示名"
if current configuration of myVpnService is not connected then
connect myVpnService
end if
end tell
end tell
VPNの表示名はシステム設定 > VPN
の赤枠の部分。
システム設定 > 一般 > ログイン項目
でログイン時に開く
に追加して完了