Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. port 1194
  2. proto udp
  3. dev tun
  4. ca /etc/openvpn/ca.crt
  5. cert /etc/openvpn/server-name.crt
  6. key /etc/openvpn/server-name.key
  7. dh /etc/openvpn/dh2048.pem
  8. server 10.8.0.0 255.255.255.0
  9. ifconfig-pool-persist ipp.txt
  10. keepalive 10 120
  11. tls-auth /etc/openvpn/ta.key 0
  12. comp-lzo
  13. user nobody
  14. group nobody
  15. persist-key
  16. persist-tun
  17. status openvpn-status.log
  18. verb 3
  19.  
  20. client
  21. dev tun
  22. proto udp
  23. remote [my public IP here] 1194
  24. resolv-retry infinite
  25. nobind
  26. user nobody
  27. group nobody
  28. persist-key
  29. persist-tun
  30. ca /etc/openvpn/ca.crt
  31. cert /etc/openvpn/client-name.crt
  32. key /etc/openvpn/client-name.key
  33. remote-cert-tls server
  34. tls-auth /etc/openvpn/ta.key 1
  35. comp-lzo
  36. verb 3
  37.  
  38. Thu Jul 30 17:02:53 2015 OpenVPN 2.3.6 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [EPOLL] [MH] [IPv6] built on Dec 2 2014
  39. Thu Jul 30 17:02:53 2015 library versions: OpenSSL 1.0.2d 9 Jul 2015, LZO 2.09
  40. Thu Jul 30 17:02:53 2015 NOTE: your local LAN uses the extremely common subnet address 192.168.0.x or 192.168.1.x. Be aware that this might create routing conflicts if you connect to the VPN server from public locations such as internet cafes that use the same subnet.
  41. Thu Jul 30 17:02:53 2015 Diffie-Hellman initialized with 2048 bit key
  42. Thu Jul 30 17:02:53 2015 Control Channel Authentication: using '/etc/openvpn/ta.key' as a OpenVPN static key file
  43. Thu Jul 30 17:02:53 2015 Outgoing Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
  44. Thu Jul 30 17:02:53 2015 Incoming Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
  45. Thu Jul 30 17:02:53 2015 Socket Buffers: R=[212992->131072] S=[212992->131072]
  46. Thu Jul 30 17:02:53 2015 ROUTE_GATEWAY 192.168.0.1/255.255.255.0 IFACE=enp5s0 HWADDR=##:##:##:##:##:##
  47. Thu Jul 30 17:02:53 2015 TUN/TAP device tun0 opened
  48. Thu Jul 30 17:02:53 2015 TUN/TAP TX queue length set to 100
  49. Thu Jul 30 17:02:53 2015 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
  50. Thu Jul 30 17:02:53 2015 /usr/bin/ip link set dev tun0 up mtu 1500
  51. Thu Jul 30 17:02:53 2015 /usr/bin/ip addr add dev tun0 local 10.8.0.1 peer 10.8.0.2
  52. Thu Jul 30 17:02:53 2015 /usr/bin/ip route add 10.8.0.0/24 via 10.8.0.2
  53. Thu Jul 30 17:02:53 2015 GID set to nobody
  54. Thu Jul 30 17:02:53 2015 UID set to nobody
  55. Thu Jul 30 17:02:53 2015 UDPv4 link local (bound): [undef]
  56. Thu Jul 30 17:02:53 2015 UDPv4 link remote: [undef]
  57. Thu Jul 30 17:02:53 2015 MULTI: multi_init called, r=256 v=256
  58. Thu Jul 30 17:02:53 2015 IFCONFIG POOL: base=10.8.0.4 size=62, ipv6=0
  59. Thu Jul 30 17:02:53 2015 IFCONFIG POOL LIST
  60. Thu Jul 30 17:02:53 2015 Initialization Sequence Completed
  61.  
  62. Thu Jul 30 21:03:02 2015 OpenVPN 2.3.6 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [EPOLL] [MH] [IPv6] built on Dec 2 2014
  63. Thu Jul 30 21:03:02 2015 library versions: OpenSSL 1.0.2d 9 Jul 2015, LZO 2.09
  64. Thu Jul 30 21:03:02 2015 WARNING: file '/etc/openvpn/client-name.key' is group or others accessible
  65. Thu Jul 30 21:03:02 2015 WARNING: file '/etc/openvpn/ta.key' is group or others accessible
  66. Thu Jul 30 21:03:02 2015 Control Channel Authentication: using '/etc/openvpn/ta.key' as a OpenVPN static key file
  67. Thu Jul 30 21:03:02 2015 Outgoing Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
  68. Thu Jul 30 21:03:02 2015 Incoming Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication
  69. Thu Jul 30 21:03:02 2015 Socket Buffers: R=[212992->131072] S=[212992->131072]
  70. Thu Jul 30 21:03:02 2015 NOTE: UID/GID downgrade will be delayed because of --client, --pull, or --up-delay
  71. Thu Jul 30 21:03:02 2015 UDPv4 link local: [undef]
  72. Thu Jul 30 21:03:02 2015 UDPv4 link remote: [AF_INET][my public IP here]:1194
  73. Thu Jul 30 21:04:02 2015 TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)
  74. Thu Jul 30 21:04:02 2015 TLS Error: TLS handshake failed
  75. Thu Jul 30 21:04:02 2015 SIGUSR1[soft,tls-error] received, process restarting
  76. Thu Jul 30 21:04:02 2015 Restart pause, 2 second(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement