source: rtems-libbsd/ipsec-tools/src/racoon/samples/roadwarrior/server/racoon.conf @ ff36f5e

55-freebsd-126-freebsd-12
Last change on this file since ff36f5e was ff36f5e, checked in by Christian Mauderer <christian.mauderer@…>, on 05/30/18 at 12:27:35

Import ipsec-tools 0.8.2.

Import unchanged ipsec-tools sources in the release version 0.8.2. The
homepage of ipsec-tools is http://ipsec-tools.sourceforge.net/. The
sources can be obtained from there.

  • Property mode set to 100644
File size: 756 bytes
Line 
1path certificate "/etc/openssl/certs";
2
3listen {
4        adminsock disabled;
5}
6
7remote anonymous {
8        exchange_mode aggressive;
9        certificate_type x509 "server.crt" "server.key";
10        my_identifier asn1dn;
11        proposal_check strict;
12        generate_policy on;
13        nat_traversal on;
14        dpd_delay 20;
15        ike_frag on;
16        proposal {
17                encryption_algorithm aes;
18                hash_algorithm sha1;
19                authentication_method hybrid_rsa_server;
20                dh_group 2;
21        }
22}
23
24mode_cfg {
25        network4 10.99.99.0;
26        pool_size 255;
27        netmask4 255.255.255.0; 
28        auth_source system;
29        dns4 10.0.12.1;
30        wins4 10.0.12.1;
31        banner "/etc/racoon/motd";
32        pfs_group 2;
33}             
34               
35sainfo anonymous {
36        pfs_group 2;
37        lifetime time 1 hour;
38        encryption_algorithm aes;
39        authentication_algorithm hmac_sha1;
40        compression_algorithm deflate;
41}   
42
Note: See TracBrowser for help on using the repository browser.