~ubuntu-branches/ubuntu/saucy/openvpn/saucy-proposed

« back to all changes in this revision

Viewing changes to sample-config-files/loopback-server

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2013-05-24 17:42:45 UTC
  • mfrom: (1.1.19) (10.2.22 sid)
  • Revision ID: package-import@ubuntu.com-20130524174245-g9y6wlforycufqy5
Tags: 2.3.1-2ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/openvpn.init.d:
    + Do not use start-stop-daemon and </dev/null to avoid blocking boot.
    + Show per-VPN result messages.
    + Add "--script-security 2" by default for backwards compatabliity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Perform a TLS loopback test -- server side.
2
 
#
3
 
# This test performs a TLS negotiation once every 10 seconds,
4
 
# and will terminate after 2 minutes.
5
 
#
6
 
# From the root directory of the OpenVPN distribution,
7
 
# after openvpn has been built, run:
8
 
#
9
 
#  ./openvpn --config sample-config-files/loopback-client  (In one window) 
10
 
#  ./openvpn --config sample-config-files/loopback-server  (Simultaneously in another window) 
11
 
 
12
 
rport 16001
13
 
lport 16000
14
 
remote localhost
15
 
local localhost
16
 
dev null
17
 
verb 3
18
 
reneg-sec 10
19
 
tls-server
20
 
dh sample-keys/dh1024.pem
21
 
ca sample-keys/ca.crt
22
 
key sample-keys/server.key
23
 
cert sample-keys/server.crt
24
 
cipher DES-EDE3-CBC
25
 
ping 1
26
 
inactive 120 10000000