Project

General

Profile

Configuration File Format » History » Version 17

A K M Mahmudul Hoque, 05/08/2014 09:08 AM

1 1 A K M Mahmudul Hoque
## Configuration File Format
2
3
NLSR is configured using an [INFO file](http://www.boost.org/doc/libs/1_42_0/doc/html/boost_propertytree/parsers.html#boost_propertytree.parsers.info_parser).
4
5
## Example configuration
6
7 16 A K M Mahmudul Hoque
    ; the general section contains all the general settings for router
8
9
    general
10
    {
11 17 A K M Mahmudul Hoque
    ; mandatory configuration command section network, site and router
12
    
13
        network /ndn         ; name of the network the router belongs to in ndn URI format
14
        site /memphis.edu    ; name of the site the router belongs to in ndn URI format
15
        router /cs/pollux    ; name of the network the router belongs to in ndn URI format
16
17 16 A K M Mahmudul Hoque
    ; lsa-refresh-time is the time in seconds, after which router will refresh its LSAs
18 8 A K M Mahmudul Hoque
    
19 9 A K M Mahmudul Hoque
        lsa-refresh-time 1800      ; default value 1800. Valid values 240-7200
20
21
    ; log-level is to set the levels of log for NLSR
22 1 A K M Mahmudul Hoque
23
        log-level  INFO            ; default value INFO, valid value DEBUG, INFO
24
    }
25
26
    ; the hello section describes the configuration settings for NLSR hello protocol
27
    
28
    hello
29
    {
30 16 A K M Mahmudul Hoque
    ; in case hello interest timed out, router will try 'retries' times at 'interval' seconds
31 9 A K M Mahmudul Hoque
    ; interval before giving up for any neighbors (deciding link is down)     
32
33 16 A K M Mahmudul Hoque
       retries 3                           ; interest retries number in integer. Default value 3
34 1 A K M Mahmudul Hoque
                                           ; valid values 1-10
35 9 A K M Mahmudul Hoque
36 1 A K M Mahmudul Hoque
       interval  1                         ; interest sending interval in seconds. Default value 1
37
                                           ; valid values 1-15
38 16 A K M Mahmudul Hoque
    }
39 1 A K M Mahmudul Hoque
40 16 A K M Mahmudul Hoque
    ; the neighbors section contains the configuration for router's neighbors
41
42
    neighbors
43
    {
44 9 A K M Mahmudul Hoque
    ; neighbor command is used to configure router's neighbor. Each neighbor will need
45 1 A K M Mahmudul Hoque
    ; one block of neighbor command
46
    
47 9 A K M Mahmudul Hoque
       neighbor
48 1 A K M Mahmudul Hoque
       {
49 12 A K M Mahmudul Hoque
           name /ndn/memphis.edu/cs/castor        ; name prefix of the neighbor router consists
50
                                                  ; of network, site-name and router-name
51 1 A K M Mahmudul Hoque
           
52 12 A K M Mahmudul Hoque
           face-uri  udp://castor.cs.memphis.edu  ; face id of the face connected to the neighbor
53
           link-cost 20.6                         ; cost of the connecting link to neighbor
54 1 A K M Mahmudul Hoque
       }
55
    }
56
57
    ; the hyperbolic section contains the configuration settings of enabling a router to calculate
58 3 A K M Mahmudul Hoque
    ; routing table using [hyperbolic routing table calculation](http://arxiv.org/abs/0805.1266) method
59
60
    hyperbolic
61
    {
62 9 A K M Mahmudul Hoque
    ; commands in this section follows a strict order
63 2 A K M Mahmudul Hoque
    ; the switch is used to set hyperbolic routing calculation in NLSR
64 1 A K M Mahmudul Hoque
65 9 A K M Mahmudul Hoque
        state off              ; default value 'off', set value 'on' to enable hyperbolic routing table 
66 4 A K M Mahmudul Hoque
                               ; calculation which turns link state routing 'off'. set value to 'dry-run"
67 9 A K M Mahmudul Hoque
                               ; to test hyperbolic routing and compare with link state routing.
68
     
69 1 A K M Mahmudul Hoque
70 9 A K M Mahmudul Hoque
        radius   123.456       ; radius of the router in hyperbolic coordinate system
71
        angle    1.45          ; angle of the router in hyperbolic coordinate system
72 5 A K M Mahmudul Hoque
    }
73 1 A K M Mahmudul Hoque
74
75
    ; the fib section is used to configure fib entry's type to ndn FIB updated by NLSR
76
77
    fib
78
    {
79
    ; the max-faces-per-prefix is used to limit the number of faces for each name prefixes
80
    ; by NLSR in ndn FIB
81
    
82
        max-faces-per-prefix 3   ; default value 0. Valid value 0-60. By default (value 0) NLSR adds
83
                                 ; all available faces for each reachable name prefixes in NDN FIB
84 14 A K M Mahmudul Hoque
     
85
    }
86 15 A K M Mahmudul Hoque
87 14 A K M Mahmudul Hoque
    ; the advertising section contains the configuration settings of the name prefixes 
88
    ; hosted by this router
89
90
    advertising
91
    {
92
    ; the ndnname is used to advertised name from the router. To advertise each name prefix
93
    ; configure one block of ndnname configuration command for every name prefix.
94
    
95
        prefix /ndn/edu/memphis/cs/netlab           ; name in ndn URI format
96
        prefix /ndn/edu/memphis/sports/basketball 
97 5 A K M Mahmudul Hoque
    }