I'm trying to run OpenVPN client with networkmanager on ubuntu 16.04 server.
First I configured an OpenVPN server on AWS following this link
http://envyandroid.com/setup-free-priva ... mazon-ec2/
then, on my linux 16.04 client, I installed the openvpn Client
Code: Select all
apt-get install openvpn
and I ran it
Code: Select all
openvpn --config $PathToMyConfigFile
All is working correct, I am able to connect to this client from other vpn client.
Now I want to use networkmanager instead of the openvpn client to open the vpn connection,
so I installed
Code: Select all
apt-get install network-manager-openvpn
apt-get install network-manager-openvpn-gnome
Code: Select all
nmcli connection import type openvpn file $PathToMyConfigFile
Code: Select all
nmcli c
MODEM nnnn-nnnn-nnnn-nnnn.. gsm ttyUSB2
WiFi nnnn-nnnn-nnnn-nnnn.. 802-11-wireless --
vpn nnnn-nnnn-nnnn-nnnn.. vpn --
tried to activate connection:
Code: Select all
nmcli conn up vpn
Have I missied some install/config steps?
Please can you help me?
Thank you
Massimo