Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. client
  2.  
  3. #connect to VPN server
  4. remote 212.98.168.40 443
  5. proto tcp
  6.  
  7. #DNS server to use
  8. dhcp-option DNS 8.8.8.8
  9.  
  10. #remove to use your ISP's gateway
  11. redirect-gateway def1
  12.  
  13. #your access keys
  14. ca in_ca.crt
  15. cert in_2053718.crt
  16. key in_2053718.key
  17. ns-cert-type server
  18.  
  19. #use virtual interface 'tap'
  20. dev tap
  21.  
  22. #keep trying indefinitely to resolve the host name of the OpenVPN server.
  23. resolv-retry infinite
  24.  
  25. #most clients don't need to bind to a specific local port number.
  26. nobind
  27.  
  28. #try to preserve some state across restarts
  29. persist-key
  30. persist-tun
  31.  
  32. #enable compression on the VPN link
  33. comp-lzo
  34.  
  35. #set log file verbosity.
  36. verb 4
  37.  
  38. #silence repeating messages
  39. mute 20
  40.  
  41. #Windows specific
  42. win-sys 'env'
  43. route-method exe
  44. route-delay 3
  45.  
  46. client
  47.  
  48. #connect to VPN server
  49. remote 46.183.221.153 443
  50. proto tcp
  51.  
  52. #DNS server to use
  53. dhcp-option DNS 8.8.8.8
  54.  
  55. #remove to use your ISP's gateway
  56. redirect-gateway def1
  57.  
  58. #your access keys
  59. ca in_ca.crt
  60. cert in_2053718.crt
  61. key in_2053718.key
  62. ns-cert-type server
  63.  
  64. #use virtual interface 'tap'
  65. dev tap
  66.  
  67. #keep trying indefinitely to resolve the host name of the OpenVPN server.
  68. resolv-retry infinite
  69.  
  70. #most clients don't need to bind to a specific local port number.
  71. nobind
  72.  
  73. #try to preserve some state across restarts
  74. persist-key
  75. persist-tun
  76.  
  77. #enable compression on the VPN link
  78. comp-lzo
  79.  
  80. #set log file verbosity.
  81. verb 4
  82.  
  83. #silence repeating messages
  84. mute 20
  85.  
  86. #Windows specific
  87. win-sys 'env'
  88. route-method exe
  89. route-delay 3
  90.  
  91. client
  92. dev tun
  93. proto tcp
  94. remote 93.115.85.34 443
  95. resolv-retry infinite
  96. nobind
  97. persist-key
  98. persist-tun
  99. ca ca.crt
  100. tls-client
  101. remote-cert-tls server
  102. auth-user-pass
  103. comp-lzo
  104. verb 1
  105. reneg-sec 0
  106. crl-verify crl.pem
  107.  
  108. Wed Oct 22 11:41:37 2014 us=191000 TLS Error: TLS key negotiation failed to occu
  109. r within 60 seconds (check your network connectivity)
  110. Wed Oct 22 11:41:37 2014 us=191000 TLS Error: TLS handshake failed
  111. Wed Oct 22 11:41:37 2014 us=191000 Fatal TLS error (check_tls_errors_co), restar
  112. ting
  113. Wed Oct 22 11:41:37 2014 us=207000 TCP/UDP: Closing socket
  114. Wed Oct 22 11:41:37 2014 us=207000 SIGUSR1[soft,tls-error] received, process res
  115. tarting
  116. Wed Oct 22 11:41:37 2014 us=207000 Restart pause, 5 second(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement