Você pode tentar configurar sua VPN sem a GUI Fortinet. Aqui está um guia completo do IPSEC para linux link e você pode tentar isto:
O link é criado através da execução do pppd através de um pseudo-terminal criado por pty-redir e conectado ao ssh. Isso é feito com algo semelhante à seguinte sequência de comandos:
/usr/sbin/pty-redir /usr/bin/ssh -t -e none -o 'Batchmode yes' -c blowfish -i /root/.ssh/identity.vpn -l joe > /tmp/vpn-device
sleep 10
/usr/sbin/pppd 'cat /tmp/vpn-device'
sleep 15
/sbin/route add -net 172.16.0.0 gw vpn-internal.mycompany.com netmask 255.240.0.0
/sbin/route add -net 192.168.0.0 gw vpn-internal.mycompany.com netmask 255.255.0.0
What this does is run ssh, redirecting the input and output to pppd.
The options passed to ssh configure it to run without escape
characters (-e), using the blowfish crypto algorithm (-c), using the
identity file specified (-i), in terminal mode (-t), with the options
'Batchmode yes' (-o). The sleep commands are used to space out the
executions of the commands so that each can complete their startup
before the next is run.
De " Abra o link "
Na próxima seção, " Scripting " pode ajudá-lo a configurar e executar sua VPN cliente. Há informações adicionais na documentação do ubuntu .