On the VMware player I installed the VPN server which seems to work fine since the output of the command
$ /etc/init.d/openvpn restart gives me OK. In addition the virtual interface tun0 succesfully created. I checked it with ifconfig tun.
The problem is on the actual machine (not on VMware) where I installed the client. Command ifconfig tun tells me that the device did not found. What is more I can't start the client, command $ /etc/init.d/openvpn restart , gives me fail. Below is the client.conf :
Code: Select all
client
;dev tap
dev tun
;dev-node MyTap
;proto tcp
proto udp
remote 10.8.0.0 1194
;remote my-server-2 1194
;remote-random
resolv-retry infinite
nobind
;user nobody
;group nogroup
persist-key
persist-tun
;http-proxy-retry # retry on connection failures
;http-proxy [proxy server] [proxy port #]
;mute-replay-warnings
ca ca.crt
cert client.crt
key client.key
ns-cert-type server
tls-auth ta.key 1
;cipher x
comp-lzo
verb 3
;mute 20
Any ideas would be greatly appreciated!