blob: fe3efefb6085b8f3664159250cb83da1511e99c0 [file] [log] [blame]
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -06001; The general section contains settings of nfd process.
Steve DiBenedetto24b9a642014-04-07 15:45:39 -06002general
3{
4 ; Specify a user and/or group for NFD to drop privileges to
5 ; when not performing privileged tasks. NFD does not drop
6 ; privileges by default.
7
8 ; user ndn-user
9 ; group ndn-user
10}
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060011
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060012log
13{
14 ; default_level specifies the logging level for modules
15 ; that are not explicitly named. All debugging levels
16 ; listed above the selected value are enabled.
17 ;
18 ; Valid values:
19 ;
20 ; NONE ; no messages
21 ; ERROR ; error messages
22 ; WARN ; warning messages
23 ; INFO ; informational messages (default)
24 ; DEBUG ; debugging messages
25 ; TRACE ; trace messages (most verbose)
26 ; ALL ; all messages
27
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070028 default_level INFO
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060029
30 ; You may override default_level by assigning a logging level
31 ; to the desired module name. Module names can be found in two ways:
32 ;
33 ; Run:
34 ; nfd --modules
35 ;
36 ; Or look for NFD_LOG_INIT(<module name>) statements in .cpp files
37 ;
38 ; Example module-level settings:
39 ;
40 ; FibManager DEBUG
41 ; Forwarder INFO
42}
43
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060044; The tables section configures the CS, PIT, FIB, Strategy Choice, and Measurements
45tables
46{
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060047 ; ContentStore size limit in number of packets
48 ; default is 65536, about 500MB with 8KB packet size
49 cs_max_packets 65536
Steve DiBenedettoc0640f52014-11-03 15:55:43 -070050
Junxiao Shib4a5acd2016-12-07 19:59:18 +000051 ; Set the CS replacement policy.
52 ; Available policies are: priority_fifo, lru
53 cs_policy priority_fifo
54
Junxiao Shi9685cc52016-08-29 12:47:05 +000055 ; Set a policy to decide whether to cache or drop unsolicited Data.
56 ; Available policies are: drop-all, admit-local, admit-network, admit-all
Junxiao Shi88f5f732016-09-03 07:11:37 +000057 cs_unsolicited_policy drop-all
Junxiao Shi9685cc52016-08-29 12:47:05 +000058
Steve DiBenedettoc0640f52014-11-03 15:55:43 -070059 ; Set the forwarding strategy for the specified prefixes:
60 ; <prefix> <strategy>
61 strategy_choice
62 {
63 / /localhost/nfd/strategy/best-route
Junxiao Shi67ba8d22015-08-21 21:21:28 -070064 /localhost /localhost/nfd/strategy/multicast
Steve DiBenedettoc0640f52014-11-03 15:55:43 -070065 /localhost/nfd /localhost/nfd/strategy/best-route
Junxiao Shi67ba8d22015-08-21 21:21:28 -070066 /ndn/broadcast /localhost/nfd/strategy/multicast
Steve DiBenedettoc0640f52014-11-03 15:55:43 -070067 }
Vince Lehman63ab1bb2015-09-04 17:06:58 -050068
69 ; Declare network region names
70 ; These are used for mobility support. An Interest carrying a Link object is
71 ; assumed to have reached the producer region if any delegation name in the
72 ; Link object is a prefix of any region name.
73 network_region
74 {
75 ; /example/region1
76 ; /example/region2
77 }
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060078}
79
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -060080; The face_system section defines what faces and channels are created.
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060081face_system
82{
Steve DiBenedettodbcb1a12014-11-17 11:04:21 -070083 ; The unix section contains settings of Unix stream faces and channels.
84 ; Unix channel is always listening; delete unix section to disable
85 ; Unix stream faces and channels.
Steve DiBenedetto158f73f2014-12-22 14:46:12 -070086 ;
87 ; The ndn-cxx library expects unix:///var/run/nfd.sock
88 ; to be used as the default transport option. Please change
89 ; the "transport" field in client.conf to an appropriate tcp4 FaceUri
90 ; if you need to disable unix sockets.
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060091 unix
92 {
Steve DiBenedettodbcb1a12014-11-17 11:04:21 -070093 path /var/run/nfd.sock ; Unix stream listener path
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060094 }
95
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -060096 ; The tcp section contains settings of TCP faces and channels.
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060097 tcp
98 {
99 listen yes ; set to 'no' to disable TCP listener, default 'yes'
100 port 6363 ; TCP listener port number
Steve DiBenedetto95152872014-04-11 12:40:59 -0600101 enable_v4 yes ; set to 'no' to disable IPv4 channels, default 'yes'
102 enable_v6 yes ; set to 'no' to disable IPv6 channels, default 'yes'
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600103 }
104
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600105 ; The udp section contains settings of UDP faces and channels.
Steve DiBenedetto95152872014-04-11 12:40:59 -0600106 ; UDP channel is always listening; delete udp section to disable UDP
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600107 udp
108 {
109 port 6363 ; UDP unicast port number
Steve DiBenedetto95152872014-04-11 12:40:59 -0600110 enable_v4 yes ; set to 'no' to disable IPv4 channels, default 'yes'
111 enable_v6 yes ; set to 'no' to disable IPv6 channels, default 'yes'
Chengyu Fanaddecff2015-02-10 14:09:01 -0700112
113 ; idle time (seconds) before closing a UDP unicast face, the actual timeout would be
114 ; anywhere within [idle_timeout, 2*idle_timeout), default is 600
115 idle_timeout 600
116
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600117 keep_alive_interval 25; interval (seconds) between keep-alive refreshes
118
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700119 ; UDP multicast settings
susmit21f22e62017-03-25 15:44:45 -0500120 ; By default, NFD creates one UDP multicast face per NIC
Giulio Grassi6d7176d2014-04-16 16:08:48 +0200121 ;
122 ; In multi-homed Linux machines these settings will NOT work without
123 ; root or settings the appropriate permissions:
124 ;
125 ; sudo setcap cap_net_raw=eip /full/path/nfd
126 ;
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700127 mcast yes ; set to 'no' to disable UDP multicast, default 'yes'
128 mcast_port 56363 ; UDP multicast port number
129 mcast_group 224.0.23.170 ; UDP multicast group (IPv4 only)
Junxiao Shic31080d2017-01-24 15:10:12 +0000130
131 ; Whitelist and blacklist can contain, in no particular order:
susmit21f22e62017-03-25 15:44:45 -0500132 ; interface names, including wildcard patterns (e.g., 'ifname eth0', 'ifname en*', 'ifname wlp?s0'),
133 ; mac addresses (e.g., 'ether 85:3b:4d:d3:5f:c2'),
134 ; subnets (e.g., 'subnet 192.0.2.0/24', note that only IPv4 is supported here),
135 ; or a single asterisk ('*') that matches all interfaces.
Junxiao Shic31080d2017-01-24 15:10:12 +0000136 whitelist
137 {
138 *
139 }
140 blacklist
141 {
142 }
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600143 }
144
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600145 ; The ether section contains settings of Ethernet faces and channels.
146 ; These settings will NOT work without root or setting the appropriate
147 ; permissions:
148 ;
149 ; sudo setcap cap_net_raw,cap_net_admin=eip /full/path/nfd
150 ;
151 ; You may need to install a package to use setcap:
152 ;
153 ; **Ubuntu:**
154 ;
155 ; sudo apt-get install libcap2-bin
156 ;
157 ; **Mac OS X:**
158 ;
159 ; curl https://bugs.wireshark.org/bugzilla/attachment.cgi?id=3373 -o ChmodBPF.tar.gz
160 ; tar zxvf ChmodBPF.tar.gz
161 ; open ChmodBPF/Install\ ChmodBPF.app
162 ;
163 ; or manually:
164 ;
165 ; sudo chgrp admin /dev/bpf*
166 ; sudo chmod g+rw /dev/bpf*
susmit91e1d7c2016-10-03 16:16:57 -0600167 ;
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700168 @IF_HAVE_LIBPCAP@ether
169 @IF_HAVE_LIBPCAP@{
170 @IF_HAVE_LIBPCAP@ ; Ethernet multicast settings
susmit21f22e62017-03-25 15:44:45 -0500171 @IF_HAVE_LIBPCAP@ ; By default, NFD creates one Ethernet multicast face per NIC
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700172 @IF_HAVE_LIBPCAP@
173 @IF_HAVE_LIBPCAP@ mcast yes ; set to 'no' to disable Ethernet multicast, default 'yes'
174 @IF_HAVE_LIBPCAP@ mcast_group 01:00:5E:00:17:AA ; Ethernet multicast group
susmit91e1d7c2016-10-03 16:16:57 -0600175 @IF_HAVE_LIBPCAP@
Junxiao Shic31080d2017-01-24 15:10:12 +0000176 @IF_HAVE_LIBPCAP@ ; Whitelist and blacklist can contain, in no particular order:
susmit21f22e62017-03-25 15:44:45 -0500177 @IF_HAVE_LIBPCAP@ ; interface names, including wildcard patterns (e.g., 'ifname eth0', 'ifname en*', 'ifname wlp?s0'),
178 @IF_HAVE_LIBPCAP@ ; mac addresses (e.g., 'ether 85:3b:4d:d3:5f:c2'),
179 @IF_HAVE_LIBPCAP@ ; subnets (e.g., 'subnet 192.0.2.0/24', note that only IPv4 is supported here),
180 @IF_HAVE_LIBPCAP@ ; or a single asterisk ('*') that matches all interfaces.
susmit91e1d7c2016-10-03 16:16:57 -0600181 @IF_HAVE_LIBPCAP@ whitelist
182 @IF_HAVE_LIBPCAP@ {
183 @IF_HAVE_LIBPCAP@ *
184 @IF_HAVE_LIBPCAP@ }
185 @IF_HAVE_LIBPCAP@ blacklist
186 @IF_HAVE_LIBPCAP@ {
187 @IF_HAVE_LIBPCAP@ }
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700188 @IF_HAVE_LIBPCAP@}
Wentao Shang53df1632014-04-21 12:01:32 -0700189
190 ; The websocket section contains settings of WebSocket faces and channels.
Wentao Shang53df1632014-04-21 12:01:32 -0700191 @IF_HAVE_WEBSOCKET@websocket
192 @IF_HAVE_WEBSOCKET@{
193 @IF_HAVE_WEBSOCKET@ listen yes ; set to 'no' to disable WebSocket listener, default 'yes'
194 @IF_HAVE_WEBSOCKET@ port 9696 ; WebSocket listener port number
195 @IF_HAVE_WEBSOCKET@ enable_v4 yes ; set to 'no' to disable listening on IPv4 socket, default 'yes'
196 @IF_HAVE_WEBSOCKET@ enable_v6 yes ; set to 'no' to disable listening on IPv6 socket, default 'yes'
197 @IF_HAVE_WEBSOCKET@}
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600198}
199
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600200; The authorizations section grants privileges to authorized keys.
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600201authorizations
202{
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600203 ; An authorize section grants privileges to a NDN certificate.
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600204 authorize
205 {
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600206 ; If you do not already have NDN certificate, you can generate
207 ; one with the following commands.
208 ;
209 ; 1. Generate and install a self-signed identity certificate:
210 ;
211 ; ndnsec-keygen /`whoami` | ndnsec-install-cert -
212 ;
213 ; Note that the argument to ndnsec-key will be the identity name of the
214 ; new key (in this case, /your-username). Identities are hierarchical NDN
215 ; names and may have multiple components (e.g. `/ndn/ucla/edu/alice`).
216 ; You may create additional keys and identities as you see fit.
217 ;
218 ; 2. Dump the NDN certificate to a file:
219 ;
220 ; sudo mkdir -p @SYSCONFDIR@/ndn/keys/
221 ; ndnsec-cert-dump -i /`whoami` > default.ndncert
222 ; sudo mv default.ndncert @SYSCONFDIR@/ndn/keys/default.ndncert
223 ;
224 ; The "certfile" field below specifies the default key directory for
225 ; your machine. You may move your newly created key to the location it
226 ; specifies or path.
227
Yingdi Yuc8f214c2014-04-29 20:39:37 -0700228 ; certfile keys/default.ndncert ; NDN identity certificate file
229 certfile any ; "any" authorizes command interests signed under any certificate,
230 ; i.e., no actual validation.
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600231 privileges ; set of privileges granted to this identity
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600232 {
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600233 faces
234 fib
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600235 strategy-choice
236 }
237 }
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600238
239 ; You may have multiple authorize sections that specify additional
240 ; certificates and their privileges.
241
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700242 ; authorize
243 ; {
244 ; certfile keys/this_cert_does_not_exist.ndncert
245 ; authorize
246 ; privileges
247 ; {
248 ; faces
249 ; }
250 ; }
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600251}
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700252
Yingdi Yue5224e92014-04-29 18:04:02 -0700253rib
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700254{
Yingdi Yue5224e92014-04-29 18:04:02 -0700255 ; The following localhost_security allows anyone to register routing entries in local RIB
256 localhost_security
257 {
258 trust-anchor
259 {
260 type any
261 }
262 }
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700263
Yingdi Yue5224e92014-04-29 18:04:02 -0700264 ; localhop_security should be enabled when NFD runs on a hub.
265 ; "/localhop/nfd/fib" command prefix will be disabled when localhop_security section is missing.
266 ; localhop_security
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700267 ; {
Yingdi Yue5224e92014-04-29 18:04:02 -0700268 ; ; This section defines the trust model for NFD RIB Management. It consists of rules and
269 ; ; trust-anchors, which are briefly defined in this file. For more information refer to
270 ; ; manpage of ndn-validator.conf:
271 ; ;
272 ; ; man ndn-validator.conf
273 ; ;
274 ; ; A trust-anchor is a pre-trusted certificate. This can be any certificate that is the
275 ; ; root of certification chain (e.g., NDN testbed root certificate) or an existing
276 ; ; default system certificate `default.ndncert`.
277 ; ;
278 ; ; A rule defines conditions a valid packet MUST have. A packet must satisfy one of the
279 ; ; rules defined here. A rule can be broken into two parts: matching & checking. A packet
280 ; ; will be matched against rules from the first to the last until a matched rule is
281 ; ; encountered. The matched rule will be used to check the packet. If a packet does not
282 ; ; match any rule, it will be treated as invalid. The matching part of a rule consists
283 ; ; of `for` and `filter` sections. They collectively define which packets can be checked
284 ; ; with this rule. `for` defines packet type (data or interest) and `filter` defines
285 ; ; conditions on other properties of a packet. Right now, you can only define conditions
286 ; ; on packet name, and you can only specify ONLY ONE filter for packet name. The
287 ; ; checking part of a rule consists of `checker`, which defines the conditions that a
288 ; ; VALID packet MUST have. See comments in checker section for more details.
289 ;
290 ; rule
291 ; {
292 ; id "NRD Prefix Registration Command Rule"
293 ; for interest ; rule for Interests (to validate CommandInterests)
294 ; filter
295 ; {
296 ; type name ; condition on interest name (w/o signature)
Yingdi Yu676a55a2014-06-18 21:09:09 -0700297 ; regex ^[<localhop><localhost>]<nfd><rib>[<register><unregister>]<>$ ; prefix before
298 ; ; timestamp
Yingdi Yue5224e92014-04-29 18:04:02 -0700299 ; }
300 ; checker
301 ; {
302 ; type customized
303 ; sig-type rsa-sha256 ; interest must have a rsa-sha256 signature
304 ; key-locator
305 ; {
306 ; type name ; key locator must be the certificate name of the
307 ; ; signing key
308 ; regex ^[^<KEY>]*<KEY><>*<ksk-.*><ID-CERT>$
309 ; }
310 ; }
311 ; }
312 ; rule
313 ; {
314 ; id "NDN Testbed Hierarchy Rule"
315 ; for data ; rule for Data (to validate NDN certificates)
316 ; filter
317 ; {
318 ; type name ; condition on data name
319 ; regex ^[^<KEY>]*<KEY><>*<ksk-.*><ID-CERT><>$
320 ; }
321 ; checker
322 ; {
323 ; type hierarchical ; the certificate name of the signing key and
324 ; ; the data name must follow the hierarchical model
325 ; sig-type rsa-sha256 ; data must have a rsa-sha256 signature
326 ; }
327 ; }
328 ; trust-anchor
329 ; {
330 ; type file
331 ; file-name keys/default.ndncert ; the file name, by default this file should be placed in the
332 ; ; same folder as this config file.
333 ; }
334 ; ; trust-anchor ; Can be repeated multiple times to specify multiple trust anchors
335 ; ; {
336 ; ; type file
337 ; ; file-name keys/ndn-testbed.ndncert
338 ; ; }
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700339 ; }
Yanbiao Lic17de832014-11-21 17:51:45 -0800340
Yanbiao Lib9d439d2014-12-11 16:12:32 -0800341 ; The following localhop_security should be enabled when NFD runs on a hub,
342 ; which accepts all remote registrations and is a short-term solution.
343 ; localhop_security
344 ; {
345 ; trust-anchor
346 ; {
347 ; type any
348 ; }
349 ; }
350
Yanbiao Lid7c96362015-01-30 23:58:24 -0800351 auto_prefix_propagate
Yanbiao Lic17de832014-11-21 17:51:45 -0800352 {
353 cost 15 ; forwarding cost of prefix registered on remote router
Yanbiao Lid7c96362015-01-30 23:58:24 -0800354 timeout 10000 ; timeout (in milliseconds) of prefix registration command for propagation
Yanbiao Lic17de832014-11-21 17:51:45 -0800355
Yanbiao Lid7c96362015-01-30 23:58:24 -0800356 refresh_interval 300 ; interval (in seconds) before refreshing the propagation
Yanbiao Lic17de832014-11-21 17:51:45 -0800357 ; This setting should be less than face_system.udp.idle_time,
358 ; so that the face is kept alive on the remote router.
Yanbiao Lid7c96362015-01-30 23:58:24 -0800359
360 base_retry_wait 50 ; base wait time (in seconds) before retrying propagation
361 max_retry_wait 3600 ; maximum wait time (in seconds) before retrying propagation
362 ; for consequent retries, the wait time before each retry is calculated based on the back-off
363 ; policy. Initially, the wait time is set to base_retry_wait, then it will be doubled for every
364 ; retry unless beyond the max_retry_wait, in which case max_retry_wait is set as the wait time.
Yanbiao Lic17de832014-11-21 17:51:45 -0800365 }
Nick Gordon9fcf1232017-03-10 22:30:20 +0000366
367 ; If enabled, routes registered with origin=client (typically from auto_prefix_propagate)
368 ; will be readvertised into local NLSR daemon.
369 readvertise_nlsr no
Alexander Afanasyev89cf5e02014-04-17 12:08:57 -0700370}