I want to set up a VPN client similar to L2TP VPN - Windows 10 configuration.
I have installed openvpn using
sudo apt-get install openvpn
/etc/openvpn/client.conf looks like :
client
dev tun
port 1194
proto udp
remote 123.456.789.10 1194
nobind
and client configurations taken from OpenVPN Debian VPN.
sudo openvpn --config /etc/openvpn/client.conf
Options error: You must define CA file (--ca) or CA path (--capath) Use --help for more information.
Here describes how to do this, but client configuration file was not listed there.
I can not take any key or certificate file from my server. I just want to create simple client just as its in Windows-10.