Added SILC Thread Queue API
[crypto.git] / doc / examples / cell_server1.conf
1 #
2 # Normal server 1
3 # 212.146.24.251 on 1333
4 #
5
6 General {
7         key_exchange_rekey = 30;
8         #key_exchange_pfs = true;
9 };
10
11 ServerInfo {
12         hostname = "leevi.kuo.fi.ssh.com";
13         primary { ip = "212.146.42.251"; port = 1333; };
14         servertype = "mun servo";
15         location = "mun huone";
16         admin = "Pekka Riikonen";
17         adminemail = "priikone@silcnet.org";
18         user = "nobody";
19         group = "nobody";
20         publickey = "./silcd.pub";
21         privatekey = "./silcd.prv";
22         motdfile = "./motd";
23 };
24
25 Logging {
26         quicklogs = true;
27         info { file = "silcd.log"; };
28 };
29
30 ConnectionParams {
31         name = "foo";
32         key_exchange_pfs = true;
33 };
34
35 Client { };
36
37 Admin {
38         user = "priikone";
39         passphrase = "testi";
40 };
41
42 #############################################################################
43
44 # My primary router
45 RouterConnection {
46         host = "212.146.42.253";
47         port = 1334;
48         passphrase = "priikone";
49         initiator = true;
50 };
51
52 # Our cell's backup router
53 RouterConnection {
54         host = "212.146.42.252";
55         port = 1335;
56         passphrase = "priikone";
57         initiator = true;
58         backuphost = "212.146.42.253";
59         backupport = 1334;
60         backuplocal = true;
61 };