Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 1 | ; The general section contains settings of nfd process. |
Steve DiBenedetto | 24b9a64 | 2014-04-07 15:45:39 -0600 | [diff] [blame] | 2 | general |
| 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 DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 11 | |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 12 | log |
| 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 Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 28 | default_level INFO |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 29 | |
| 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 |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 35 | ; nrd --modules |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 36 | ; |
| 37 | ; Or look for NFD_LOG_INIT(<module name>) statements in .cpp files |
| 38 | ; |
| 39 | ; Example module-level settings: |
| 40 | ; |
| 41 | ; FibManager DEBUG |
| 42 | ; Forwarder INFO |
| 43 | } |
| 44 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 45 | ; The tables section configures the CS, PIT, FIB, Strategy Choice, and Measurements |
| 46 | tables |
| 47 | { |
| 48 | |
| 49 | ; ContentStore size limit in number of packets |
| 50 | ; default is 65536, about 500MB with 8KB packet size |
| 51 | cs_max_packets 65536 |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 52 | |
| 53 | ; Set the forwarding strategy for the specified prefixes: |
| 54 | ; <prefix> <strategy> |
| 55 | strategy_choice |
| 56 | { |
| 57 | / /localhost/nfd/strategy/best-route |
| 58 | /localhost /localhost/nfd/strategy/broadcast |
| 59 | /localhost/nfd /localhost/nfd/strategy/best-route |
| 60 | /ndn/broadcast /localhost/nfd/strategy/broadcast |
| 61 | } |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 62 | } |
| 63 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 64 | ; The face_system section defines what faces and channels are created. |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 65 | face_system |
| 66 | { |
Steve DiBenedetto | dbcb1a1 | 2014-11-17 11:04:21 -0700 | [diff] [blame] | 67 | ; The unix section contains settings of Unix stream faces and channels. |
| 68 | ; Unix channel is always listening; delete unix section to disable |
| 69 | ; Unix stream faces and channels. |
Steve DiBenedetto | 158f73f | 2014-12-22 14:46:12 -0700 | [diff] [blame^] | 70 | ; |
| 71 | ; The ndn-cxx library expects unix:///var/run/nfd.sock |
| 72 | ; to be used as the default transport option. Please change |
| 73 | ; the "transport" field in client.conf to an appropriate tcp4 FaceUri |
| 74 | ; if you need to disable unix sockets. |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 75 | unix |
| 76 | { |
Steve DiBenedetto | dbcb1a1 | 2014-11-17 11:04:21 -0700 | [diff] [blame] | 77 | path /var/run/nfd.sock ; Unix stream listener path |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 78 | } |
| 79 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 80 | ; The tcp section contains settings of TCP faces and channels. |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 81 | tcp |
| 82 | { |
| 83 | listen yes ; set to 'no' to disable TCP listener, default 'yes' |
| 84 | port 6363 ; TCP listener port number |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 85 | enable_v4 yes ; set to 'no' to disable IPv4 channels, default 'yes' |
| 86 | enable_v6 yes ; set to 'no' to disable IPv6 channels, default 'yes' |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 87 | } |
| 88 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 89 | ; The udp section contains settings of UDP faces and channels. |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 90 | ; UDP channel is always listening; delete udp section to disable UDP |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 91 | udp |
| 92 | { |
| 93 | port 6363 ; UDP unicast port number |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 94 | enable_v4 yes ; set to 'no' to disable IPv4 channels, default 'yes' |
| 95 | enable_v6 yes ; set to 'no' to disable IPv6 channels, default 'yes' |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 96 | idle_timeout 600 ; idle time (seconds) before closing a UDP unicast face |
| 97 | keep_alive_interval 25; interval (seconds) between keep-alive refreshes |
| 98 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 99 | ; UDP multicast settings |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 100 | ; NFD creates one UDP multicast face per NIC |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 101 | ; |
| 102 | ; In multi-homed Linux machines these settings will NOT work without |
| 103 | ; root or settings the appropriate permissions: |
| 104 | ; |
| 105 | ; sudo setcap cap_net_raw=eip /full/path/nfd |
| 106 | ; |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 107 | mcast yes ; set to 'no' to disable UDP multicast, default 'yes' |
| 108 | mcast_port 56363 ; UDP multicast port number |
| 109 | mcast_group 224.0.23.170 ; UDP multicast group (IPv4 only) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 110 | } |
| 111 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 112 | ; The ether section contains settings of Ethernet faces and channels. |
| 113 | ; These settings will NOT work without root or setting the appropriate |
| 114 | ; permissions: |
| 115 | ; |
| 116 | ; sudo setcap cap_net_raw,cap_net_admin=eip /full/path/nfd |
| 117 | ; |
| 118 | ; You may need to install a package to use setcap: |
| 119 | ; |
| 120 | ; **Ubuntu:** |
| 121 | ; |
| 122 | ; sudo apt-get install libcap2-bin |
| 123 | ; |
| 124 | ; **Mac OS X:** |
| 125 | ; |
| 126 | ; curl https://bugs.wireshark.org/bugzilla/attachment.cgi?id=3373 -o ChmodBPF.tar.gz |
| 127 | ; tar zxvf ChmodBPF.tar.gz |
| 128 | ; open ChmodBPF/Install\ ChmodBPF.app |
| 129 | ; |
| 130 | ; or manually: |
| 131 | ; |
| 132 | ; sudo chgrp admin /dev/bpf* |
| 133 | ; sudo chmod g+rw /dev/bpf* |
| 134 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 135 | @IF_HAVE_LIBPCAP@ether |
| 136 | @IF_HAVE_LIBPCAP@{ |
| 137 | @IF_HAVE_LIBPCAP@ ; Ethernet multicast settings |
| 138 | @IF_HAVE_LIBPCAP@ ; NFD creates one Ethernet multicast face per NIC |
| 139 | @IF_HAVE_LIBPCAP@ |
| 140 | @IF_HAVE_LIBPCAP@ mcast yes ; set to 'no' to disable Ethernet multicast, default 'yes' |
| 141 | @IF_HAVE_LIBPCAP@ mcast_group 01:00:5E:00:17:AA ; Ethernet multicast group |
| 142 | @IF_HAVE_LIBPCAP@} |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 143 | |
| 144 | ; The websocket section contains settings of WebSocket faces and channels. |
| 145 | |
| 146 | @IF_HAVE_WEBSOCKET@websocket |
| 147 | @IF_HAVE_WEBSOCKET@{ |
| 148 | @IF_HAVE_WEBSOCKET@ listen yes ; set to 'no' to disable WebSocket listener, default 'yes' |
| 149 | @IF_HAVE_WEBSOCKET@ port 9696 ; WebSocket listener port number |
| 150 | @IF_HAVE_WEBSOCKET@ enable_v4 yes ; set to 'no' to disable listening on IPv4 socket, default 'yes' |
| 151 | @IF_HAVE_WEBSOCKET@ enable_v6 yes ; set to 'no' to disable listening on IPv6 socket, default 'yes' |
| 152 | @IF_HAVE_WEBSOCKET@} |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 153 | } |
| 154 | |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 155 | ; The authorizations section grants privileges to authorized keys. |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 156 | authorizations |
| 157 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 158 | ; An authorize section grants privileges to a NDN certificate. |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 159 | authorize |
| 160 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 161 | ; If you do not already have NDN certificate, you can generate |
| 162 | ; one with the following commands. |
| 163 | ; |
| 164 | ; 1. Generate and install a self-signed identity certificate: |
| 165 | ; |
| 166 | ; ndnsec-keygen /`whoami` | ndnsec-install-cert - |
| 167 | ; |
| 168 | ; Note that the argument to ndnsec-key will be the identity name of the |
| 169 | ; new key (in this case, /your-username). Identities are hierarchical NDN |
| 170 | ; names and may have multiple components (e.g. `/ndn/ucla/edu/alice`). |
| 171 | ; You may create additional keys and identities as you see fit. |
| 172 | ; |
| 173 | ; 2. Dump the NDN certificate to a file: |
| 174 | ; |
| 175 | ; sudo mkdir -p @SYSCONFDIR@/ndn/keys/ |
| 176 | ; ndnsec-cert-dump -i /`whoami` > default.ndncert |
| 177 | ; sudo mv default.ndncert @SYSCONFDIR@/ndn/keys/default.ndncert |
| 178 | ; |
| 179 | ; The "certfile" field below specifies the default key directory for |
| 180 | ; your machine. You may move your newly created key to the location it |
| 181 | ; specifies or path. |
| 182 | |
Yingdi Yu | c8f214c | 2014-04-29 20:39:37 -0700 | [diff] [blame] | 183 | ; certfile keys/default.ndncert ; NDN identity certificate file |
| 184 | certfile any ; "any" authorizes command interests signed under any certificate, |
| 185 | ; i.e., no actual validation. |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 186 | privileges ; set of privileges granted to this identity |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 187 | { |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 188 | faces |
| 189 | fib |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 190 | strategy-choice |
| 191 | } |
| 192 | } |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 193 | |
| 194 | ; You may have multiple authorize sections that specify additional |
| 195 | ; certificates and their privileges. |
| 196 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 197 | ; authorize |
| 198 | ; { |
| 199 | ; certfile keys/this_cert_does_not_exist.ndncert |
| 200 | ; authorize |
| 201 | ; privileges |
| 202 | ; { |
| 203 | ; faces |
| 204 | ; } |
| 205 | ; } |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 206 | } |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 207 | |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 208 | rib |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 209 | { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 210 | ; The following localhost_security allows anyone to register routing entries in local RIB |
| 211 | localhost_security |
| 212 | { |
| 213 | trust-anchor |
| 214 | { |
| 215 | type any |
| 216 | } |
| 217 | } |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 218 | |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 219 | ; localhop_security should be enabled when NFD runs on a hub. |
| 220 | ; "/localhop/nfd/fib" command prefix will be disabled when localhop_security section is missing. |
| 221 | ; localhop_security |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 222 | ; { |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 223 | ; ; This section defines the trust model for NFD RIB Management. It consists of rules and |
| 224 | ; ; trust-anchors, which are briefly defined in this file. For more information refer to |
| 225 | ; ; manpage of ndn-validator.conf: |
| 226 | ; ; |
| 227 | ; ; man ndn-validator.conf |
| 228 | ; ; |
| 229 | ; ; A trust-anchor is a pre-trusted certificate. This can be any certificate that is the |
| 230 | ; ; root of certification chain (e.g., NDN testbed root certificate) or an existing |
| 231 | ; ; default system certificate `default.ndncert`. |
| 232 | ; ; |
| 233 | ; ; A rule defines conditions a valid packet MUST have. A packet must satisfy one of the |
| 234 | ; ; rules defined here. A rule can be broken into two parts: matching & checking. A packet |
| 235 | ; ; will be matched against rules from the first to the last until a matched rule is |
| 236 | ; ; encountered. The matched rule will be used to check the packet. If a packet does not |
| 237 | ; ; match any rule, it will be treated as invalid. The matching part of a rule consists |
| 238 | ; ; of `for` and `filter` sections. They collectively define which packets can be checked |
| 239 | ; ; with this rule. `for` defines packet type (data or interest) and `filter` defines |
| 240 | ; ; conditions on other properties of a packet. Right now, you can only define conditions |
| 241 | ; ; on packet name, and you can only specify ONLY ONE filter for packet name. The |
| 242 | ; ; checking part of a rule consists of `checker`, which defines the conditions that a |
| 243 | ; ; VALID packet MUST have. See comments in checker section for more details. |
| 244 | ; |
| 245 | ; rule |
| 246 | ; { |
| 247 | ; id "NRD Prefix Registration Command Rule" |
| 248 | ; for interest ; rule for Interests (to validate CommandInterests) |
| 249 | ; filter |
| 250 | ; { |
| 251 | ; type name ; condition on interest name (w/o signature) |
Yingdi Yu | 676a55a | 2014-06-18 21:09:09 -0700 | [diff] [blame] | 252 | ; regex ^[<localhop><localhost>]<nfd><rib>[<register><unregister>]<>$ ; prefix before |
| 253 | ; ; timestamp |
Yingdi Yu | e5224e9 | 2014-04-29 18:04:02 -0700 | [diff] [blame] | 254 | ; } |
| 255 | ; checker |
| 256 | ; { |
| 257 | ; type customized |
| 258 | ; sig-type rsa-sha256 ; interest must have a rsa-sha256 signature |
| 259 | ; key-locator |
| 260 | ; { |
| 261 | ; type name ; key locator must be the certificate name of the |
| 262 | ; ; signing key |
| 263 | ; regex ^[^<KEY>]*<KEY><>*<ksk-.*><ID-CERT>$ |
| 264 | ; } |
| 265 | ; } |
| 266 | ; } |
| 267 | ; rule |
| 268 | ; { |
| 269 | ; id "NDN Testbed Hierarchy Rule" |
| 270 | ; for data ; rule for Data (to validate NDN certificates) |
| 271 | ; filter |
| 272 | ; { |
| 273 | ; type name ; condition on data name |
| 274 | ; regex ^[^<KEY>]*<KEY><>*<ksk-.*><ID-CERT><>$ |
| 275 | ; } |
| 276 | ; checker |
| 277 | ; { |
| 278 | ; type hierarchical ; the certificate name of the signing key and |
| 279 | ; ; the data name must follow the hierarchical model |
| 280 | ; sig-type rsa-sha256 ; data must have a rsa-sha256 signature |
| 281 | ; } |
| 282 | ; } |
| 283 | ; trust-anchor |
| 284 | ; { |
| 285 | ; type file |
| 286 | ; file-name keys/default.ndncert ; the file name, by default this file should be placed in the |
| 287 | ; ; same folder as this config file. |
| 288 | ; } |
| 289 | ; ; trust-anchor ; Can be repeated multiple times to specify multiple trust anchors |
| 290 | ; ; { |
| 291 | ; ; type file |
| 292 | ; ; file-name keys/ndn-testbed.ndncert |
| 293 | ; ; } |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 294 | ; } |
Yanbiao Li | c17de83 | 2014-11-21 17:51:45 -0800 | [diff] [blame] | 295 | |
Yanbiao Li | b9d439d | 2014-12-11 16:12:32 -0800 | [diff] [blame] | 296 | ; The following localhop_security should be enabled when NFD runs on a hub, |
| 297 | ; which accepts all remote registrations and is a short-term solution. |
| 298 | ; localhop_security |
| 299 | ; { |
| 300 | ; trust-anchor |
| 301 | ; { |
| 302 | ; type any |
| 303 | ; } |
| 304 | ; } |
| 305 | |
Yanbiao Li | c17de83 | 2014-11-21 17:51:45 -0800 | [diff] [blame] | 306 | remote_register |
| 307 | { |
| 308 | cost 15 ; forwarding cost of prefix registered on remote router |
| 309 | timeout 10000 ; timeout (in milliseconds) of remote prefix registration command |
| 310 | retry 0 ; maximum number of retries for each remote prefix registration command |
| 311 | |
| 312 | refresh_interval 300 ; interval (in seconds) before refreshing the registration |
| 313 | ; This setting should be less than face_system.udp.idle_time, |
| 314 | ; so that the face is kept alive on the remote router. |
| 315 | } |
Alexander Afanasyev | 89cf5e0 | 2014-04-17 12:08:57 -0700 | [diff] [blame] | 316 | } |