Cleaned up some SILC_LOG_DEBUG's in backup protocol code.
[silc.git] / doc / examples / cell_router.conf
1 #
2 # Standalone router
3 # 212.146.24.253 on 1334
4 #
5 # This is the only router in this cell, which means that the router is
6 # standalone and the router does not have primary route.
7 #
8
9 Include "silcalgs.conf";
10
11 ServerInfo {
12         hostname = "lassi.kuo.fi.ssh.com";
13         primary { ip = "212.146.42.253"; port = 1334; };
14
15         user = "nobody";
16         group = "nobody";
17
18         servertype = "Test Router";
19         location = "Undisclosed location";
20         Admin = "Pekka Riikonen";
21         AdminEmail = "priikone@silcnet.org";
22
23         publickey = "./silcd.pub";
24         privatekey = "./silcd.prv";
25
26         motdfile = "./motd";
27 };
28
29 Logging {
30         quicklogs = true;
31         info { file = "cell_router.log"; };
32 };
33
34 # Router administrator
35 Admin {
36         user = "priikone";
37         passphrase = "testi";
38 };
39
40 ##############################################################################
41 #
42 # Accept all client connections without authentication
43 #
44 Client { };
45
46 ##############################################################################
47 #
48 # This server use me as primary router.  It is normal server in the cell.
49 #
50 ServerConnection {
51         host = "212.146.42.251";
52         passphrase = "priikone";
53 };
54
55 ##############################################################################
56 #
57 # This server is our backup router (it will replace me if I go down).  It
58 # also can act as normal server in the cell.
59 #
60 RouterConnection {
61         host = "212.146.42.252";
62         passphrase = "priikone";
63
64         # Mark that this local backup router replaces us
65         backuphost = "212.146.42.253";
66         backupport = 1334;
67         backuplocal = true;
68 };