A couple months ago I configured an openvpn network with a raspberry pi as a server. Everything works fine, but now I want to create new certificates for new clients and I am having problems. When I create the certificates I do
Code: Select all
source ./vars
Code: Select all
./build-key clientname
Code: Select all
Thu Jul 16 18:21:30 2015 OpenVPN 2.3.2 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [EPOLL] [PKCS11] [eurephia] [MH] [IPv6] built on Dec 1 2014
Thu Jul 16 18:21:30 2015 WARNING: No server certificate verification method has been enabled. See http://openvpn.net/howto.html#mitm for more info.
Thu Jul 16 18:21:30 2015 WARNING: file '/home/gabriel/Openvpn/arduino.key' is group or others accessible
Thu Jul 16 18:21:30 2015 Socket Buffers: R=[212992->131072] S=[212992->131072]
Thu Jul 16 18:21:30 2015 UDPv4 link local: [undef]
Thu Jul 16 18:21:30 2015 UDPv4 link remote: [AF_INET]
Thu Jul 16 18:21:30 2015 TLS: Initial packet from [AF_INET], sid=95f712e7 b6852bbb
Thu Jul 16 18:21:31 2015 VERIFY OK: depth=1, C=SP, ST=MU, L=Murcia, O=Murcia, OU=gcp900, CN=Murcia CA, name=EasyRSA, emailAddress=
Thu Jul 16 18:21:31 2015 VERIFY OK: depth=0, C=SP, ST=MU, L=Murcia, O=Murcia, OU=gcp900, CN=server, name=EasyRSA, emailAddress=
Code: Select all
Thu Jul 16 18:22:30 2015 TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)
Thu Jul 16 18:22:30 2015 TLS Error: TLS handshake failed
Thu Jul 16 18:22:30 2015 SIGUSR1[soft,tls-error] received, process restarting
Thu Jul 16 18:22:30 2015 Restart pause, 2 second(s)
Thu Jul 16 18:22:32 2015 WARNING: No server certificate verification method has been enabled. See http://openvpn.net/howto.html#mitm for more info.
Thu Jul 16 18:22:32 2015 Socket Buffers: R=[212992->131072] S=[212992->131072]
Thu Jul 16 18:22:32 2015 UDPv4 link local: [undef]
Thu Jul 16 18:22:32 2015 UDPv4 link remote: [AF_INET]
Thu Jul 16 18:22:32 2015 TLS: Initial packet from [AF_INET], sid=245079ca e17b808d
Where can it be the issue???
I am using linux the whole time for this.
Thanks!