1234567891011121314151617181920212223242526 |
- # Perform a TLS loopback test -- server side.
- #
- # This test performs a TLS negotiation once every 10 seconds,
- # and will terminate after 2 minutes.
- #
- # From the root directory of the OpenVPN distribution,
- # after openvpn has been built, run:
- #
- # ./openvpn --config sample-config-files/loopback-client (In one window)
- # ./openvpn --config sample-config-files/loopback-server (Simultaneously in another window)
- rport 16001
- lport 16000
- remote localhost
- local localhost
- dev null
- verb 3
- reneg-sec 10
- tls-server
- dh sample-keys/dh2048.pem
- ca sample-keys/ca.crt
- key sample-keys/server.key
- cert sample-keys/server.crt
- tls-auth sample-keys/ta.key 0
- ping 1
- inactive 120 10000000
|