John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1 | .. _startup: |
| 2 | |
| 3 | |
| 4 | .. toctree:: |
| 5 | |
| 6 | |
| 7 | ======================================= |
| 8 | VPP Configuration File - 'startup.conf' |
| 9 | ======================================= |
| 10 | |
| 11 | |
| 12 | After a successful installation, VPP installs a startup config file named |
John DeNisco | c64ba6d | 2018-08-02 15:03:15 -0400 | [diff] [blame] | 13 | *startup.conf* in the */etc/vpp/* directory. This file can be tailored to |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 14 | make VPP run as desired, but contains default values for typical installations. |
John DeNisco | c64ba6d | 2018-08-02 15:03:15 -0400 | [diff] [blame] | 15 | |
| 16 | Below are more details about this file and the parameters and values it contains. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 17 | |
| 18 | Introduction |
| 19 | ------------ |
| 20 | |
| 21 | The VPP network stack comes with several configuration options that can be |
| 22 | provided either on the command line when VPP is started, or in a configuration |
| 23 | file. Specific applications built on the stack have been known to require a dozen |
| 24 | arguments, depending on requirements. |
| 25 | |
| 26 | Command-line Arguments |
| 27 | ---------------------- |
| 28 | |
| 29 | Parameters are grouped by a section name. When providing more than one |
| 30 | parameter to a section, all parameters for that section must be wrapped in |
| 31 | curly braces. For example, to start VPP with configuration data via the |
| 32 | command line with the section name *'unix'*: |
| 33 | |
| 34 | .. code-block:: console |
| 35 | |
| 36 | $ sudo /usr/bin/vpp unix { interactive cli-listen 127.0.0.1:5002 } |
| 37 | |
| 38 | The command line can be presented as a single string or as several; anything |
| 39 | given on the command line is concatenated with spaces into a single string |
| 40 | before parsing. VPP applications must be able to locate their own executable |
| 41 | images. The simplest way to ensure this will work is to invoke a VPP |
| 42 | application by giving its absolute path. For example: |
| 43 | *'/usr/bin/vpp <options>'* At startup, VPP applications parse through their |
| 44 | own ELF-sections [primarily] to make lists of init, configuration, and exit |
| 45 | handlers. |
| 46 | |
| 47 | When developing with VPP, in gdb it's often sufficient to start an application |
| 48 | like this: |
| 49 | |
| 50 | .. code-block:: console |
| 51 | |
| 52 | (gdb) run unix interactive |
| 53 | |
| 54 | Configuration File |
| 55 | ------------------ |
| 56 | |
| 57 | It is also possible to supply the configuration parameters in a startup |
| 58 | configuration. The path of the file is provided to the VPP application on its |
| 59 | command line. The format of the configuration file is a simple text file with |
| 60 | the same content as the command line, but with the benefit of being able to use |
| 61 | newlines to make the content easier to read. For example: |
| 62 | |
| 63 | .. code-block:: console |
| 64 | |
| 65 | $ cat /etc/vpp/startup.conf |
| 66 | unix { |
| 67 | nodaemon |
| 68 | log /var/log/vpp/vpp.log |
| 69 | full-coredump |
| 70 | cli-listen localhost:5002 |
| 71 | } |
| 72 | |
| 73 | api-trace { |
| 74 | on |
| 75 | } |
| 76 | |
| 77 | dpdk { |
| 78 | dev 0000:03:00.0 |
| 79 | } |
| 80 | |
| 81 | VPP is then instructed to load this file with the -c option. For example: |
| 82 | |
| 83 | .. code-block:: console |
| 84 | |
| 85 | $ sudo /usr/bin/vpp -c /etc/vpp/startup.conf |
| 86 | |
| 87 | When the VPP service is started, VPP is started with this option via another |
| 88 | installed file, vpp.service (Ubuntu: /lib/systemd/system/vpp.service and |
| 89 | CentOS: /usr/lib/systemd/system/vpp.service). See *'ExecStart'* below: |
| 90 | |
| 91 | .. code-block:: console |
| 92 | |
| 93 | $ cat /lib/systemd/system/vpp.service |
| 94 | [Unit] |
| 95 | Description=vector packet processing engine |
| 96 | After=network.target |
| 97 | |
| 98 | [Service] |
| 99 | Type=simple |
| 100 | ExecStartPre=-/bin/rm -f /dev/shm/db /dev/shm/global_vm /dev/shm/vpe-api |
| 101 | ExecStartPre=-/sbin/modprobe uio_pci_generic |
| 102 | ExecStart=/usr/bin/vpp -c /etc/vpp/startup.conf |
| 103 | ExecStopPost=/bin/rm -f /dev/shm/db /dev/shm/global_vm /dev/shm/vpe-api |
| 104 | Restart=always |
| 105 | |
| 106 | [Install] |
| 107 | WantedBy=multi-user.target |
| 108 | |
| 109 | |
| 110 | Configuration Parameters |
| 111 | ------------------------ |
| 112 | |
| 113 | Below is the list of section names and their associated parameters. This is not |
| 114 | an exhaustive list of parameters available. The command-line argument parsers |
| 115 | can be found in the source code by searching for instances of the |
| 116 | **VLIB_CONFIG_FUNCTION** and **VLIB_EARLY_CONFIG_FUNCTION** macro. |
| 117 | |
| 118 | For example, the invocation *'VLIB_CONFIG_FUNCTION (foo_config, "foo")'* will |
| 119 | cause the function *'foo_config'* to receive all parameters given in a |
| 120 | parameter block named "foo": "foo { arg1 arg2 arg3 ... }". |
| 121 | |
| 122 | |
| 123 | List of Basic Parameters: |
| 124 | ------------------------- |
| 125 | |
| 126 | | unix_ |
| 127 | | dpdk_ |
| 128 | | cpu_ |
| 129 | |
| 130 | List of Advanced Parameters: |
| 131 | ---------------------------- |
| 132 | |
| 133 | | acl-plugin_ |
| 134 | | api-queue_ |
| 135 | | api-segment_ |
| 136 | | api-trace_ |
| 137 | | buffers_ |
| 138 | | cj_ |
| 139 | | dns_ |
| 140 | | heapsize_ |
| 141 | | ip_ |
| 142 | | ip6_ |
| 143 | | l2learn_ |
| 144 | | l2tp_ |
| 145 | | logging_ |
| 146 | | mactime_ |
| 147 | | map_ |
| 148 | | mc_ |
| 149 | | nat_ |
| 150 | | oam_ |
| 151 | | plugins_ |
| 152 | | plugin_path_ |
| 153 | | punt_ |
| 154 | | session_ |
| 155 | | socketsvr_ |
| 156 | | stats_ |
| 157 | | statseg_ |
| 158 | | tapcli_ |
| 159 | | tcp_ |
| 160 | | tls_ |
| 161 | | tuntap_ |
| 162 | | vhost-user_ |
| 163 | | vlib_ |
| 164 | |
| 165 | .. _unix: |
| 166 | |
| 167 | "unix" Parameters |
| 168 | _________________ |
| 169 | |
| 170 | Configure VPP startup and behavior type attributes, as well and any OS based |
| 171 | attributes. |
| 172 | |
| 173 | * **interactive** |
| 174 | Attach CLI to stdin/out and provide a debugging command line interface. |
| 175 | Implies nodaemon. |
| 176 | |
| 177 | **Example:** interactive |
| 178 | |
| 179 | * **nodaemon** |
| 180 | Do not fork / background the vpp process. Typical when invoking VPP |
| 181 | applications from a process monitor. Set by default in the default |
| 182 | *'startup.conf'* file. |
| 183 | |
| 184 | **Example:** nodaemon |
| 185 | |
| 186 | * **log <filename>** |
| 187 | Logs the startup configuration and all subsequent CLI commands in filename. |
| 188 | Very useful in situations where folks don't remember or can't be bothered |
| 189 | to include CLI commands in bug reports. The default *'startup.conf'* file |
| 190 | is to write to *'/var/log/vpp/vpp.log'*. |
| 191 | |
| 192 | In VPP 18.04, the default log file location was moved from '/tmp/vpp.log' |
| 193 | to '/var/log/vpp/vpp.log' . The VPP code is indifferent to the file location. |
| 194 | However, if SELinux is enabled, then the new location is required for the file |
| 195 | to be properly labeled. Check your local *'startup.conf'* file for the log file |
| 196 | location on your system. |
| 197 | |
| 198 | **Example:** log /var/log/vpp/vpp-debug.log |
| 199 | |
| 200 | * **exec|startup-config <filename>** |
| 201 | Read startup operational configuration from filename. The contents of the file |
| 202 | will be performed as though entered at the CLI. The two keywords are aliases |
| 203 | for the same function; if both are specified, only the last will have an effect. |
| 204 | The file contains CLI commands, for example: |
| 205 | |
| 206 | | $ cat /usr/share/vpp/scripts/interface-up.txt |
| 207 | | set interface state TenGigabitEthernet1/0/0 up |
| 208 | | set interface state TenGigabitEthernet1/0/1 up |
| 209 | |
| 210 | **Example:** startup-config /usr/share/vpp/scripts/interface-up.txt |
| 211 | |
| 212 | * **gid number|name>** |
| 213 | Sets the effective group ID to the input group ID or group name of the calling |
| 214 | process. |
| 215 | |
| 216 | **Example:** gid vpp |
| 217 | |
| 218 | * **full-coredump** |
| 219 | Ask the Linux kernel to dump all memory-mapped address regions, instead of |
| 220 | just text+data+bss. |
| 221 | |
| 222 | **Example:** full-coredump |
| 223 | |
| 224 | * **coredump-size unlimited|<n>G|<n>M|<n>K|<n>** |
| 225 | Set the maximum size of the coredump file. The input value can be set in |
| 226 | GB, MB, KB or bytes, or set to *'unlimited'*. |
| 227 | |
| 228 | **Example:** coredump-size unlimited |
| 229 | |
| 230 | * **cli-listen <ipaddress:port>|<socket-path>** |
| 231 | Bind the CLI to listen at address localhost on TCP port 5002. This will |
| 232 | accept an ipaddress:port pair or a filesystem path; in the latter case a |
| 233 | local Unix socket is opened instead. The default *'startup.conf'* file |
| 234 | is to open the socket *'/run/vpp/cli.sock'*. |
| 235 | |
| 236 | **Example:** cli-listen localhost:5002 |
| 237 | **Example:** cli-listen /run/vpp/cli.sock |
| 238 | |
| 239 | * **cli-line-mode** |
| 240 | Disable character-by-character I/O on stdin. Useful when combined with, |
| 241 | for example, emacs M-x gud-gdb. |
| 242 | |
| 243 | **Example:** cli-line-mode |
| 244 | |
| 245 | * **cli-prompt <string>** |
| 246 | Configure the CLI prompt to be string. |
| 247 | |
| 248 | **Example:** cli-prompt vpp-2 |
| 249 | |
| 250 | * **cli-history-limit <n>** |
| 251 | Limit commmand history to <n> lines. A value of 0 disables command history. |
| 252 | Default value: 50 |
| 253 | |
| 254 | **Example:** cli-history-limit 100 |
| 255 | |
| 256 | * **cli-no-banner** |
| 257 | Disable the login banner on stdin and Telnet connections. |
| 258 | |
| 259 | **Example:** cli-no-banner |
| 260 | |
| 261 | * **cli-no-pager** |
| 262 | Disable the output pager. |
| 263 | |
| 264 | **Example:** cli-no-pager |
| 265 | |
| 266 | * **cli-pager-buffer-limit <n>** |
| 267 | Limit pager buffer to <n> lines of output. A value of 0 disables the |
| 268 | pager. Default value: 100000 |
| 269 | |
| 270 | **Example:** cli-pager-buffer-limit 5000 |
| 271 | |
| 272 | * **runtime-dir <dir>** |
| 273 | Set the runtime directory, which is the default location for certain |
| 274 | files, like socket files. Default is based on User ID used to start VPP. |
| 275 | Typically it is *'root'*, which defaults to *'/run/vpp/'*. Otherwise, |
| 276 | defaults to *'/run/user/<uid>/vpp/'*. |
| 277 | |
| 278 | **Example:** runtime-dir /tmp/vpp |
| 279 | |
| 280 | * **poll-sleep-usec <n>** |
| 281 | Add a fixed-sleep between main loop poll. Default is 0, which is not to |
| 282 | sleep. |
| 283 | |
| 284 | **Example:** poll-sleep-usec 100 |
| 285 | |
| 286 | * **pidfile <filename>** |
| 287 | Writes the pid of the main thread in the given filename. |
| 288 | |
| 289 | **Example:** pidfile /run/vpp/vpp1.pid |
| 290 | |
| 291 | .. _dpdk: |
| 292 | |
| 293 | "dpdk" Parameters |
| 294 | _________________ |
| 295 | |
| 296 | Command line DPDK configuration controls a number of parameters, including |
| 297 | device whitelisting, the number of CPUs available for launching |
| 298 | dpdk-eal-controlled threads, the number of I/O buffers, and the process |
| 299 | affinity mask. In addition, the DPDK configuration function attempts to support |
| 300 | all of the DPDK EAL configuration parameters. |
| 301 | |
| 302 | All of the DPDK EAL options should be available. |
| 303 | See ../src/plugins/dpdk/device/dpdk_priv.h, look at the set of |
| 304 | "foreach_eal_XXX" macros. |
| 305 | |
| 306 | Popular options include: |
| 307 | * **dev <pci-dev>** |
| 308 | White-list [as in, attempt to drive] a specific PCI device. PCI-dev is a |
| 309 | string of the form "DDDD:BB:SS.F" where: |
| 310 | |
| 311 | | DDDD = Domain |
| 312 | | BB = Bus Number |
| 313 | | SS = Slot number |
| 314 | | F = Function |
| 315 | |
| 316 | This is the same format used in the linux sysfs tree (i.e. |
| 317 | /sys/bus/pci/devices) for PCI device directory names. |
| 318 | |
| 319 | **Example:** dev 0000:02:00.0 |
| 320 | |
| 321 | * **dev <pci-dev> { .. }** |
| 322 | When whitelisting specific interfaces by specifying PCI address, |
| 323 | additional custom parameters can also be specified. Valid options include: |
| 324 | |
| 325 | * **num-rx-queues <n>** |
| 326 | Number of receive queues. Also enables RSS. Default value is 1. |
| 327 | * **num-tx-queues <n>** |
| 328 | Number of transmit queues. Default is equal to number of worker |
| 329 | threads or 1 if no workers treads. |
| 330 | * **num-rx-desc <n>** |
| 331 | Number of descriptors in receive ring. Increasing or reducing number |
| 332 | can impact performance. Default is 1024. |
| 333 | * **num-rt-desc <n>** |
| 334 | Number of descriptors in transmit ring. Increasing or reducing number |
| 335 | can impact performance. Default is 1024. |
| 336 | * **workers** |
| 337 | TBD |
| 338 | * **vlan-strip-offload on|off**: |
| 339 | VLAN strip offload mode for interface. VLAN stripping is off by default |
| 340 | for all NICs except VICs, using ENIC driver, which has VLAN stripping on |
| 341 | by default. |
| 342 | * **hqos** |
| 343 | Enable the Hierarchical Quaity-of-Service (HQoS) scheduler, default is |
| 344 | disabled. This enables HQoS on specific output interface. |
| 345 | * **hqos { .. }** |
| 346 | HQoS can also have its own set of custom parameters. Setting a custom |
| 347 | parameter also enables HQoS. |
| 348 | |
| 349 | * **hqos-thread <n>** |
| 350 | HQoS thread used by this interface. To setup a pool of threads that |
| 351 | are shared by all HQoS interfaces, set via the*'cpu'* section using |
| 352 | either *'corelist-hqos-threads'* or *'coremask-hqos-threads'*. |
| 353 | |
| 354 | * **rss** |
| 355 | TBD |
| 356 | |
| 357 | **Example:** |
| 358 | |
| 359 | | dev 0000:02:00.1 { |
| 360 | | num-rx-queues 2 |
| 361 | | num-tx-queues 2 |
| 362 | | } |
| 363 | |
| 364 | * **vdev <eal-command>** |
| 365 | Provide a DPDK EAL command to specify bonded Ethernet interfaces, operating |
| 366 | modes and PCI addresses of slave links. Only XOR balanced (mode 2) mode is |
| 367 | supported. |
| 368 | |
| 369 | **Example:** |
| 370 | |
| 371 | | vdev eth_bond0,mode=2,slave=0000:0f:00.0,slave=0000:11:00.0,xmit_policy=l34 |
| 372 | | vdev eth_bond1,mode=2,slave=0000:10:00.0,slave=0000:12:00.0,xmit_policy=l34 |
| 373 | |
| 374 | * **num-mbufs <n>** |
| 375 | Increase number of buffers allocated. May be needed in scenarios with |
| 376 | large number of interfaces and worker threads, or a lot of physical |
| 377 | interfaces with multiple RSS queues. Value is per CPU socket. Default is |
| 378 | 16384. |
| 379 | |
| 380 | **Example:** num-mbufs 128000 |
| 381 | |
| 382 | * **no-pci** |
| 383 | When VPP is started, if an interface is not owned by the linux kernel |
| 384 | (interface is administratively down), VPP will attempt to manage the |
| 385 | interface. *'no-pci'* indicates that VPP should not walk the PCI table |
| 386 | looking for interfaces. |
| 387 | |
| 388 | **Example:** no-pci |
| 389 | |
| 390 | * **no-hugetlb** |
| 391 | Don't use huge TLB pages. Potentially useful for running simulator images. |
| 392 | |
| 393 | **Example:** no-hugetlb |
| 394 | |
| 395 | * **kni <n>** |
| 396 | Number of KNI interfaces. Refer to the DPDK documentation. |
| 397 | |
| 398 | **Example:** kni 2 |
| 399 | |
| 400 | * **uio-driver uio_pci_generic|igb_uio|vfio-pci|auto** |
| 401 | Change UIO driver used by VPP. Default is *'auto'*. |
| 402 | |
| 403 | **Example:** uio-driver igb_uio |
| 404 | |
| 405 | * **socket-mem <n>** |
| 406 | Change hugepages allocation per-socket, needed only if there is need for |
| 407 | larger number of mbufs. Default is 64 hugepages on each detected CPU |
| 408 | socket. |
| 409 | |
| 410 | **Example:** socket-mem 2048,2048 |
| 411 | |
| 412 | **Other options include:** |
| 413 | |
| 414 | * **enable-tcp-udp-checksum** |
| 415 | Enables UDP/TCP RX checksum offload. |
| 416 | |
| 417 | **Example:** enable-tcp-udp-checksum |
| 418 | |
| 419 | * **no-multi-seg** |
| 420 | Disable mutli-segment buffers, improves performance but disables Jumbo MTU |
| 421 | support. |
| 422 | |
| 423 | **Example:** no-multi-seg |
| 424 | |
| 425 | * **no-tx-checksum-offload** |
| 426 | Disables UDP/TCP TX checksum offload. Typically needed for use faster |
| 427 | vector PMDs (together with no-multi-seg). |
| 428 | |
| 429 | **Example:** no-tx-checksum-offload |
| 430 | |
| 431 | * **decimal-interface-names** |
| 432 | Format DPDK device names with decimal, as opposed to hexadecimal. |
| 433 | |
| 434 | **Example:** decimal-interface-names |
| 435 | |
| 436 | * **log-level emergency|alert|critical|error|warning|notice|info|debug** |
| 437 | Set the log level for DPDK logs. Default is *'notice'*. |
| 438 | |
| 439 | **Example:** log-level error |
| 440 | |
| 441 | * **dev default { .. }** |
| 442 | Change default settings for all intefaces. This sections supports the |
| 443 | same set of custom parameters described in *'dev <pci-dev> { .. }*'. |
| 444 | |
| 445 | **Example:** |
| 446 | |
| 447 | | dev default { |
| 448 | | num-rx-queues 3 |
| 449 | | num-tx-queues 3 |
| 450 | | } |
| 451 | |
| 452 | .. _cpu: |
| 453 | |
| 454 | "cpu" Parameters |
| 455 | ________________ |
| 456 | |
| 457 | Command-line CPU configuration controls the creation of named thread types, and |
| 458 | the cpu affinity thereof. In the VPP there is one main thread and optionally |
| 459 | the user can create worker(s). The main thread and worker thread(s) can be |
| 460 | pinned to CPU core(s) automatically or manually. |
| 461 | |
| 462 | **Automatic Pinning:** |
| 463 | |
| 464 | * **workers <n>** |
| 465 | Create <n> worker threads. |
| 466 | |
| 467 | **Example:** workers 4 |
| 468 | |
| 469 | * **io <n>** |
| 470 | Create <n> i/o threads. |
| 471 | |
| 472 | **Example:** io 2 |
| 473 | |
| 474 | * **main-thread-io** |
| 475 | Handle i/o devices from thread 0, hand off traffic to worker threads. |
| 476 | Requires "workers <n>". |
| 477 | |
| 478 | **Example:** main-thread-io |
| 479 | |
| 480 | * **skip-cores <n>** |
| 481 | Sets number of CPU core(s) to be skipped (1 ... N-1). Skipped CPU core(s) |
| 482 | are not used for pinning main thread and working thread(s). The main thread |
| 483 | is automatically pinned to the first available CPU core and worker(s) are |
| 484 | pinned to next free CPU core(s) after core assigned to main threadLeave |
| 485 | the low nn bits of the process affinity mask clear. |
| 486 | |
| 487 | **Example:** skip-cores 4 |
| 488 | |
| 489 | **Manual Pinning:** |
| 490 | |
| 491 | * **main-core <n>** |
| 492 | Assign main thread to a specific core. |
| 493 | |
| 494 | **Example:** main-core 1 |
| 495 | |
| 496 | * **coremask-workers <hex-mask>** |
| 497 | Place worker threads according to the bitmap hex-mask. |
| 498 | |
| 499 | **Example:** coremask-workers 0x0000000000C0000C |
| 500 | |
| 501 | * **corelist-workers <list>** |
| 502 | Same as coremask-workers but accepts a list of cores instead of a bitmap. |
| 503 | |
| 504 | **Example:** corelist-workers 2-3,18-19 |
| 505 | |
| 506 | * **coremask-io <hex-mask>** |
| 507 | Place I/O threads according to the bitmap hex-mask. |
| 508 | |
| 509 | **Example:** coremask-io 0x0000000003000030 |
| 510 | |
| 511 | * **corelist-io <list>** |
| 512 | Same as coremask-io but accepts a list of cores instead of a bitmap. |
| 513 | |
| 514 | **Example:** corelist-io 4-5,20-21 |
| 515 | |
| 516 | * **coremask-hqos-threads <hex-mask>** |
| 517 | Place HQoS threads according to the bitmap hex-mask. A HQoS thread can |
| 518 | run multiple HQoS objects each associated with different output interfaces. |
| 519 | |
| 520 | **Example:** coremask-hqos-threads 0x000000000C0000C0 |
| 521 | |
| 522 | * **corelist-hqos-threads <list>** |
| 523 | Same as coremask-hqos-threads but accepts a list of cores instead of a |
| 524 | bitmap. |
| 525 | |
| 526 | **Example:** corelist-hqos-threads 6-7,22-23 |
| 527 | |
| 528 | **Other:** |
| 529 | |
| 530 | * **use-pthreads** |
| 531 | TBD |
| 532 | |
| 533 | **Example:** use-pthreads |
| 534 | |
| 535 | * **thread-prefix <prefix>** |
| 536 | Set a prefix to be prepended to each thread name. The thread name already |
| 537 | contains an underscore. If not provided, the default is *'vpp'*. |
| 538 | Currently, prefix used on threads: *'vpp_main'*, *'vpp_stats'* |
| 539 | |
| 540 | **Example:** thread-prefix vpp1 |
| 541 | |
| 542 | * **scheduler-policy rr|fifo|batch|idle|other** |
| 543 | TBD |
| 544 | |
| 545 | **Example:** scheduler-policy fifo |
| 546 | |
| 547 | * **scheduler-priority <n>** |
| 548 | Set the scheduler priority. Only valid if the *'scheduler-policy'* is set |
| 549 | to *'fifo'* or *'rr'*. The valid ranges for the scheduler priority depends |
| 550 | on the *'scheduler-policy'* and the current kernel version running. The |
| 551 | range is typically 1 to 99, but see the linux man pages for *'sched'* for |
| 552 | more details. If this value is not set, the current linux kernel default |
| 553 | is left in place. |
| 554 | |
| 555 | **Example:** scheduler-priority 50 |
| 556 | |
| 557 | * **<thread-name> <count>** |
| 558 | Set the number of threads for a given thread (by name). Some threads, like |
| 559 | *'stats'*, have a fixed number of threads and cannot be changed. List of |
| 560 | possible threads include (but not limited too): hqos-threads, workers |
| 561 | |
| 562 | **Example:** hqos-threads 2 |
| 563 | |
| 564 | .. note:: |
| 565 | |
| 566 | The "main" thread always occupies the lowest core-id specified in the |
| 567 | DPDK [process-level] coremask. |
| 568 | |
| 569 | Here's a full-bore manual placement example: |
| 570 | |
| 571 | .. code-block:: console |
| 572 | |
| 573 | /usr/bin/vpp unix interactive tuntap disable cpu { main-thread-io coremask-workers 18 coremask-stats 4 } dpdk { coremask 1e } |
| 574 | |
| 575 | # taskset -a -p <vpe-pid> |
| 576 | pid 16251's current affinity mask: 2 # main thread |
| 577 | pid 16288's current affinity mask: ffffff # DPDK interrupt thread (not bound to a core) |
| 578 | pid 16289's current affinity mask: 4 # stats thread |
| 579 | pid 16290's current affinity mask: 8 # worker thread 0 |
| 580 | pid 16291's current affinity mask: 10 # worker thread 1 |
| 581 | |
| 582 | |
| 583 | .. _acl-plugin: |
| 584 | |
| 585 | "acl-plugin" Parameters |
| 586 | _______________________ |
| 587 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 588 | These parameters change the configuration of the ACL (access control list) plugin, |
| 589 | such as how the ACL bi-hash tables are initialized. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 590 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 591 | They should only be set by those that are familiar with the interworkings of VPP |
| 592 | and the ACL Plugin. |
| 593 | |
| 594 | The first three parameters, *connection hash buckets*, *connection hash memory*, |
| 595 | and *connection count max*, set the **connection table per-interface parameters** |
| 596 | for modifying how the two bounded-index extensible hash tables for |
| 597 | IPv6 (40\*8 bit key and 8\*8 bit value pairs) and IPv4 |
| 598 | (16\*8 bit key and 8\*8 bit value pairs) **ACL plugin FA interface sessions** |
| 599 | are initialized. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 600 | |
| 601 | * **connection hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 602 | Sets the number of hash buckets (rounded up to a power of 2) in each |
| 603 | of the two bi-hash tables. Defaults to 64\*1024 (65536) hash buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 604 | |
| 605 | **Example:** connection hash buckets 65536 |
| 606 | |
| 607 | * **connection hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 608 | Sets the allocated memory size (in bytes) for each of the two bi-hash tables. |
| 609 | Defaults to 1073741824 bytes. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 610 | |
| 611 | **Example:** connection hash memory 1073741824 |
| 612 | |
| 613 | * **connection count max <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 614 | Sets the maximum number of pool elements when allocating each per-worker |
| 615 | pool of sessions for both bi-hash tables. Defaults to 500000 elements in each pool. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 616 | |
| 617 | **Example:** connection count max 500000 |
| 618 | |
| 619 | * **main heap size <n>G|<n>M|<n>K|<n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 620 | Sets the size of the main memory heap that holds all the ACL module related |
| 621 | allocations (other than hash.) Default size is 0, but during |
| 622 | ACL heap initialization is equal to |
| 623 | *per_worker_size_with_slack * tm->n_vlib_mains + bihash_size + main_slack*. |
| 624 | Note that these variables are partially based on the |
| 625 | **connection table per-interface parameters** mentioned above. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 626 | |
| 627 | **Example:** main heap size 3G |
| 628 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 629 | The next three parameters, *hash lookup heap size*, *hash lookup hash buckets*, |
| 630 | and *hash lookup hash memory*, modify the initialization of the bi-hash lookup |
| 631 | table used by the ACL plugin. This table is initialized when attempting to apply |
| 632 | an ACL to the existing vector of ACLs looked up during packet processing |
| 633 | (but it is found that the table does not exist / has not been initialized yet.) |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 634 | |
| 635 | * **hash lookup heap size <n>G|<n>M|<n>K|<n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 636 | Sets the size of the memory heap that holds all the miscellaneous allocations |
| 637 | related to hash-based lookups. Default size is 67108864 bytes. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 638 | |
| 639 | **Example:** hash lookup heap size 70M |
| 640 | |
| 641 | * **hash lookup hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 642 | Sets the number of hash buckets (rounded up to a power of 2) in the bi-hash |
| 643 | lookup table. Defaults to 65536 hash buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 644 | |
| 645 | **Example:** hash lookup hash buckets 65536 |
| 646 | |
| 647 | * **hash lookup hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 648 | Sets the allocated memory size (in bytes) for the bi-hash lookup table. |
| 649 | Defaults to 67108864 bytes. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 650 | |
| 651 | **Example:** hash lookup hash memory 67108864 |
| 652 | |
| 653 | * **use tuple merge <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 654 | Sets a boolean value indicating whether or not to use TupleMerge |
| 655 | for hash ACL's. Defaults to 1 (true), meaning the default implementation |
| 656 | of hashing ACL's **does use** TupleMerge. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 657 | |
| 658 | **Example:** use tuple merge 1 |
| 659 | |
| 660 | * **tuple merge split threshold <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 661 | Sets the maximum amount of rules (ACE's) that can collide in a bi-hash |
| 662 | lookup table before the table is split into two new tables. Splitting ensures |
| 663 | less rule collisions by hashing colliding rules based on their common tuple |
| 664 | (usually their maximum common tuple.) Splitting occurs when the |
| 665 | *length of the colliding rules vector* is greater than this threshold amount. |
| 666 | Defaults to a maximum of 39 rule collisions per table. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 667 | |
| 668 | **Example:** tuple merge split threshold 30 |
| 669 | |
| 670 | * **reclassify sessions <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 671 | Sets a boolean value indicating whether or not to take the epoch of the session |
| 672 | into account when dealing with re-applying ACL's or changing already applied ACL's. |
| 673 | Defaults to 0 (false), meaning the default implementation **does NOT** take the |
| 674 | epoch of the session into account. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 675 | |
| 676 | **Example:** reclassify sessions 1 |
| 677 | |
| 678 | .. _api-queue: |
| 679 | |
| 680 | "api-queue" Parameters |
| 681 | ______________________ |
| 682 | |
| 683 | The following parameters should only be set by those that are familiar with the |
| 684 | interworkings of VPP. |
| 685 | |
| 686 | * **length <n>** |
| 687 | Sets the api queue length. Minimum valid queue length is 1024, which is |
| 688 | also the default. |
| 689 | |
| 690 | **Example:** length 2048 |
| 691 | |
| 692 | .. _api-segment: |
| 693 | |
| 694 | "api-segment" Parameters |
| 695 | ________________________ |
| 696 | |
| 697 | These values control various aspects of the binary API interface to VPP. |
| 698 | |
| 699 | * **prefix <path>** |
| 700 | Sets the prefix prepended to the name used for shared memory (SHM) |
| 701 | segments. The default is empty, meaning shared memory segments are created |
| 702 | directly in the SHM directory *'/dev/shm'*. It is worth noting that on |
| 703 | many systems *'/dev/shm'* is a symbolic link to somewhere else in the file |
| 704 | system; Ubuntu links it to *'/run/shm'*. |
| 705 | |
| 706 | **Example:** prefix /run/shm |
| 707 | |
| 708 | * **uid <number|name>** |
| 709 | Sets the user ID or name that should be used to set the ownership of the |
| 710 | shared memory segments. Defaults to the same user that VPP is started |
| 711 | with, probably root. |
| 712 | |
| 713 | **Example:** uid root |
| 714 | |
| 715 | * **gid <number|name>** |
| 716 | Sets the group ID or name that should be used to set the ownership of the |
| 717 | shared memory segments. Defaults to the same group that VPP is started |
| 718 | with, probably root. |
| 719 | |
| 720 | **Example:** gid vpp |
| 721 | |
| 722 | The following parameters should only be set by those that are familiar with the |
| 723 | interworkings of VPP. |
| 724 | |
| 725 | * **baseva <x>** |
| 726 | Set the base address for SVM global region. If not set, on AArch64, the |
| 727 | code will try to determine the base address. All other default to |
| 728 | 0x30000000. |
| 729 | |
| 730 | **Example:** baseva 0x20000000 |
| 731 | |
| 732 | * **global-size <n>G|<n>M|<n>** |
| 733 | Set the global memory size, memory shared across all router instances, |
| 734 | packet buffers, etc. If not set, defaults to 64M. The input value can be |
| 735 | set in GB, MB or bytes. |
| 736 | |
| 737 | **Example:** global-size 2G |
| 738 | |
| 739 | * **global-pvt-heap-size <n>M|size <n>** |
| 740 | Set the size of the global VM private mheap. If not set, defaults to 128k. |
| 741 | The input value can be set in MB or bytes. |
| 742 | |
| 743 | **Example:** global-pvt-heap-size size 262144 |
| 744 | |
| 745 | * **api-pvt-heap-size <n>M|size <n>** |
| 746 | Set the size of the api private mheap. If not set, defaults to 128k. |
| 747 | The input value can be set in MB or bytes. |
| 748 | |
| 749 | **Example:** api-pvt-heap-size 1M |
| 750 | |
| 751 | * **api-size <n>M|<n>G|<n>** |
| 752 | Set the size of the API region. If not set, defaults to 16M. The input |
| 753 | value can be set in GB, MB or bytes. |
| 754 | |
| 755 | **Example:** api-size 64M |
| 756 | |
| 757 | .. _api-trace: |
| 758 | |
| 759 | "api-trace" Parameters |
| 760 | ______________________ |
| 761 | |
| 762 | The ability to trace, dump, and replay control-plane API traces makes all the |
| 763 | difference in the world when trying to understand what the control-plane has |
| 764 | tried to ask the forwarding-plane to do. |
| 765 | |
| 766 | * **on|enable** |
| 767 | Enable API trace capture from the beginning of time, and arrange for a |
| 768 | post-mortem dump of the API trace if the application terminates abnormally. |
| 769 | By default, the (circular) trace buffer will be configured to capture |
| 770 | 256K traces. The default *'startup.conf'* file has trace enabled by default, |
| 771 | and unless there is a very strong reason, it should remain enabled. |
| 772 | |
| 773 | **Example:** on |
| 774 | |
| 775 | * **nitems <n>** |
| 776 | Configure the circular trace buffer to contain the last <n> entries. By |
| 777 | default, the trace buffer captures the last 256K API messages received. |
| 778 | |
| 779 | **Example:** nitems 524288 |
| 780 | |
| 781 | * **save-api-table <filename>** |
| 782 | Dumps the API message table to /tmp/<filename>. |
| 783 | |
| 784 | **Example:** save-api-table apiTrace-07-04.txt |
| 785 | |
| 786 | Typically, one simply enables the API message trace scheme: |
| 787 | |
| 788 | api-trace { on } |
| 789 | |
| 790 | .. _buffers: |
| 791 | |
| 792 | "buffers" Parameters |
| 793 | ____________________ |
| 794 | |
| 795 | Command line Buffer configuration controls buffer management. |
| 796 | |
| 797 | * **memory-size-in-mb <n>** |
| 798 | Configure the memory size used for buffers. If not set, VPP defaults |
| 799 | to 32MB. |
| 800 | |
| 801 | **Example:** memory-size-in-mb 64 |
| 802 | |
| 803 | |
| 804 | .. _cj: |
| 805 | |
| 806 | "cj" Parameters |
| 807 | _______________ |
| 808 | |
| 809 | The circular journal (CJ) thread-safe circular log buffer scheme is |
| 810 | occasionally useful when chasing bugs. Calls to it should not be checked in. |
| 811 | See .../vlib/vlib/unix/cj.c. The circular journal is disables by default. |
| 812 | When enabled, the number of records must be provided, there is no default |
| 813 | value. |
| 814 | |
| 815 | * **records <n>** |
| 816 | Configure the number of circular journal records in the circular buffer. |
| 817 | The number of records should be a power of 2. |
| 818 | |
| 819 | **Example:** records 131072 |
| 820 | |
| 821 | * **on** |
| 822 | Turns on logging at the earliest possible moment. |
| 823 | |
| 824 | **Example:** on |
| 825 | |
| 826 | .. _dns: |
| 827 | |
| 828 | "dns" Parameters |
| 829 | ________________ |
| 830 | |
| 831 | * **max-cache-size <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 832 | Set the maximum number of active elements allowed in the pool of |
| 833 | dns cache entries. When resolving an expired entry or adding a new |
| 834 | static entry and the max number of active entries is reached, |
| 835 | a random, non-static entry is deleted. Defaults to 65535 entries. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 836 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 837 | **Example:** max-cache-size 65535 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 838 | |
| 839 | * **max-ttl <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 840 | Currently not implemented. Defaults to 86400 seconds (24 hours.) |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 841 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 842 | **Example:** max-ttl 86400 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 843 | |
| 844 | .. _heapsize: |
| 845 | |
| 846 | "heapsize" Parameters |
| 847 | _____________________ |
| 848 | |
| 849 | Heapsize configuration controls the size of the main heap. The heap size is |
| 850 | configured very early in the boot sequence, before loading plug-ins or doing |
| 851 | much of anything else. |
| 852 | |
| 853 | * **heapsize <n>M|<n>G** |
| 854 | Specifies the size of the heap in MB or GB. The default is 1GB. Setting the |
| 855 | main heap size to 4GB or more requires recompilation of the entire system |
| 856 | with CLIB_VEC64 > 0. See .../clib/clib/vec_bootstrap.h. |
| 857 | |
| 858 | **Example:** heapsize 2G |
| 859 | |
| 860 | .. _ip: |
| 861 | |
| 862 | "ip" Parameters |
| 863 | _______________ |
| 864 | |
| 865 | IPv4 heap configuration. he heap size is configured very early in the boot |
| 866 | sequence, before loading plug-ins or doing much of anything else. |
| 867 | |
| 868 | * **heap-size <n>G|<n>M|<n>K|<n>** |
| 869 | Set the IPv4 mtrie heap size, which is the amount of memory dedicated to |
| 870 | the destination IP lookup table. The input value can be set in GB, MB, KB |
| 871 | or bytes. The default value is 32MB. |
| 872 | |
| 873 | **Example:** heap-size 64M |
| 874 | |
| 875 | .. _ip6: |
| 876 | |
| 877 | "ip6" Parameters |
| 878 | ________________ |
| 879 | |
| 880 | IPv6 heap configuration. he heap size is configured very early in the boot |
| 881 | sequence, before loading plug-ins or doing much of anything else. |
| 882 | |
| 883 | |
| 884 | * **heap-size <n>G|<n>M|<n>K|<n>** |
| 885 | Set the IPv6 forwarding table heap size. The input value can be set in GB, |
| 886 | MB, KB or bytes. The default value is 32MB. |
| 887 | |
| 888 | **Example:** heap-size 64M |
| 889 | |
| 890 | * **hash-buckets <n>** |
| 891 | Set the number of IPv6 forwarding table hash buckets. The default value is |
| 892 | 64K (65536). |
| 893 | |
| 894 | **Example:** hash-buckets 131072 |
| 895 | |
| 896 | .. _l2learn: |
| 897 | |
| 898 | "l2learn" Parameters |
| 899 | ____________________ |
| 900 | |
| 901 | Configure Layer 2 MAC Address learning parameters. |
| 902 | |
| 903 | * **limit <n>** |
| 904 | Configures the number of L2 (MAC) addresses in the L2 FIB at any one time, |
| 905 | which limits the size of the L2 FIB to <n> concurrent entries. Defaults to |
| 906 | 4M entries (4194304). |
| 907 | |
| 908 | **Example:** limit 8388608 |
| 909 | |
| 910 | .. _l2tp: |
| 911 | |
| 912 | "l2tp" Parameters |
| 913 | _________________ |
| 914 | |
| 915 | IPv6 Layer 2 Tunnelling Protocol Version 3 (IPv6-L2TPv3) configuration controls |
| 916 | the method used to locate a specific IPv6-L2TPv3 tunnel. The following settings |
| 917 | are mutually exclusive: |
| 918 | |
| 919 | * **lookup-v6-src** |
| 920 | Lookup tunnel by IPv6 source address. |
| 921 | |
| 922 | **Example:** lookup-v6-src |
| 923 | |
| 924 | * **lookup-v6-dst** |
| 925 | Lookup tunnel by IPv6 destination address. |
| 926 | |
| 927 | **Example:** lookup-v6-dst |
| 928 | |
| 929 | * **lookup-session-id** |
| 930 | Lookup tunnel by L2TPv3 session identifier. |
| 931 | |
| 932 | **Example:** lookup-session-id |
| 933 | |
| 934 | .. _logging: |
| 935 | |
| 936 | "logging" Parameters |
| 937 | ____________________ |
| 938 | |
| 939 | * **size <n>** |
| 940 | TBD |
| 941 | |
| 942 | **Example:** TBD |
| 943 | |
| 944 | * **unthrottle-time <n>** |
| 945 | TBD |
| 946 | |
| 947 | **Example:** TBD |
| 948 | |
| 949 | * **default-log-level emerg|alertcrit|err|warn|notice|info|debug|disabled** |
| 950 | TBD |
| 951 | |
| 952 | **Example:** TBD |
| 953 | |
| 954 | * **default-syslog-log-level emerg|alertcrit|err|warn|notice|info|debug|disabled** |
| 955 | TBD |
| 956 | |
| 957 | **Example:** TBD |
| 958 | |
| 959 | .. _mactime: |
| 960 | |
| 961 | "mactime" Parameters |
| 962 | ____________________ |
| 963 | |
| 964 | * **lookup-table-buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 965 | Sets the number of hash buckets in the mactime bi-hash lookup table. |
| 966 | Defaults to 128 buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 967 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 968 | **Example:** lookup-table-buckets 128 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 969 | |
| 970 | * **lookup-table-memory <n>G|<n>M|<n>K|<n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 971 | Sets the allocated memory size (in bytes) for the mactime bi-hash lookup table. |
| 972 | The input value can be set in GB, MB, KB or bytes. The default value is 262144 |
| 973 | (256 << 10) bytes or roughly 256KB. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 974 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 975 | **Example:** lookup-table-memory 300K |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 976 | |
| 977 | * **timezone_offset <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 978 | Sets the timezone offset from UTC. Defaults to an offset of -5 hours |
| 979 | from UTC (US EST / EDT.) |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 980 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 981 | **Example:** timezone_offset -5 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 982 | |
| 983 | .. _map: |
| 984 | |
| 985 | "map" Parameters |
| 986 | ________________ |
| 987 | |
| 988 | * **customer edge** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 989 | Sets a boolean true to indicate that the MAP node is a Customer Edge (CE) |
| 990 | router. The boolean defaults to false, meaning the MAP node is not treated |
| 991 | as a CE router. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 992 | |
| 993 | **Example:** customer edge |
| 994 | |
| 995 | .. _mc: |
| 996 | |
| 997 | "mc" Parameters |
| 998 | _______________ |
| 999 | |
| 1000 | MC Test Process. |
| 1001 | |
| 1002 | * **interface <name>** |
| 1003 | TBD |
| 1004 | |
| 1005 | **Example:** TBD |
| 1006 | |
| 1007 | * **n-bytes <n>** |
| 1008 | TBD |
| 1009 | |
| 1010 | **Example:** TBD |
| 1011 | |
| 1012 | * **max-n-bytes <n>** |
| 1013 | TBD |
| 1014 | |
| 1015 | **Example:** TBD |
| 1016 | |
| 1017 | * **min-n-bytes <n>** |
| 1018 | TBD |
| 1019 | |
| 1020 | **Example:** TBD |
| 1021 | |
| 1022 | * **seed <n>** |
| 1023 | TBD |
| 1024 | |
| 1025 | **Example:** TBD |
| 1026 | |
| 1027 | * **window <n>** |
| 1028 | TBD |
| 1029 | |
| 1030 | **Example:** TBD |
| 1031 | |
| 1032 | * **verbose** |
| 1033 | TBD |
| 1034 | |
| 1035 | **Example:** verbose |
| 1036 | |
| 1037 | * **no-validate** |
| 1038 | TBD |
| 1039 | |
| 1040 | **Example:** no-validate |
| 1041 | |
| 1042 | * **min-delay <n.n>** |
| 1043 | TBD |
| 1044 | |
| 1045 | **Example:** TBD |
| 1046 | |
| 1047 | * **max-delay <n.n>** |
| 1048 | TBD |
| 1049 | |
| 1050 | **Example:** TBD |
| 1051 | |
| 1052 | * **no-delay** |
| 1053 | TBD |
| 1054 | |
| 1055 | **Example:** no-delay |
| 1056 | |
| 1057 | * **n-packets <n.n>** |
| 1058 | TBD |
| 1059 | |
| 1060 | **Example:** TBD |
| 1061 | |
| 1062 | .. _nat: |
| 1063 | |
| 1064 | |
| 1065 | "nat" Parameters |
| 1066 | ________________ |
| 1067 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1068 | These parameters change the configuration of the NAT (Network address translation) |
| 1069 | plugin, such as how the NAT & NAT64 bi-hash tables are initialized, if the NAT is |
| 1070 | endpoint dependent, or if the NAT is deterministic. |
| 1071 | |
| 1072 | For each NAT per thread data, the following 4 parameters change how certain |
| 1073 | bi-hash tables are initialized. |
| 1074 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1075 | * **translation hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1076 | Sets the number of hash buckets in each of the two in/out NAT bi-hash lookup |
| 1077 | tables. Defaults to 1024 buckets. |
| 1078 | |
| 1079 | If the NAT is indicated to be endpoint dependent, which can be set with the |
| 1080 | :ref:`endpoint-dependent parameter <endpointLabel>`, then this parameter sets |
| 1081 | the number of hash buckets in each of the two endpoint dependent sessions |
| 1082 | NAT bi-hash lookup tables. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1083 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1084 | **Example:** translation hash buckets 1024 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1085 | |
| 1086 | * **translation hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1087 | Sets the allocated memory size (in bytes) for each of the two in/out NAT |
| 1088 | bi-hash tables. Defaults to 134217728 (128 << 20) bytes, which is roughly 128 MB. |
| 1089 | |
| 1090 | If the NAT is indicated to be endpoint dependent, which can be set with the |
| 1091 | :ref:`endpoint-dependent parameter <endpointLabel>`, then this parameter sets the |
| 1092 | allocated memory size for each of the two endpoint dependent sessions NAT bi-hash |
| 1093 | lookup tables. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1094 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1095 | **Example:** translation hash memory 134217728 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1096 | |
| 1097 | * **user hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1098 | Sets the number of hash buckets in the user bi-hash lookup table |
| 1099 | (src address lookup for a user.) Defaults to 128 buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1100 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1101 | **Example:** user hash buckets 128 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1102 | |
| 1103 | * **user hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1104 | Sets the allocated memory size (in bytes) for the user bi-hash lookup table |
| 1105 | (src address lookup for a user.) Defaults to 67108864 (64 << 20) bytes, |
| 1106 | which is roughly 64 MB. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1107 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1108 | **Example:** user hash memory 67108864 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1109 | |
| 1110 | * **max translations per user <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1111 | Sets the maximum amount of dynamic and/or static NAT sessions each user can have. |
| 1112 | Defaults to 100. When this limit is reached, the least recently used translation |
| 1113 | is recycled. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1114 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1115 | **Example:** max translations per user 50 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1116 | |
| 1117 | * **outside VRF id <n>** |
| 1118 | TBD |
| 1119 | |
| 1120 | **Example:** TBD |
| 1121 | |
| 1122 | * **outside ip6 VRF id <n>** |
| 1123 | TBD |
| 1124 | |
| 1125 | **Example:** TBD |
| 1126 | |
| 1127 | * **inside VRF id <n>** |
| 1128 | TBD |
| 1129 | |
| 1130 | **Example:** TBD |
| 1131 | |
| 1132 | * **inside VRF id <n>** |
| 1133 | TBD |
| 1134 | |
| 1135 | **Example:** TBD |
| 1136 | |
| 1137 | * **static mapping only** |
| 1138 | TBD |
| 1139 | |
| 1140 | **Example:** static mapping only |
| 1141 | |
| 1142 | * **connection tracking** |
| 1143 | TBD |
| 1144 | |
| 1145 | **Example:** connection tracking |
| 1146 | |
| 1147 | * **deterministic** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1148 | Sets a boolean value to 1 indicating that the NAT is deterministic. Defaults to 0, |
| 1149 | meaning the NAT is not deterministic. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1150 | |
| 1151 | **Example:** deterministic |
| 1152 | |
| 1153 | * **nat64 bib hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1154 | Sets the number of hash buckets in each of the two in/out NAT64 BIB bi-hash |
| 1155 | tables. Defaults to 1024 buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1156 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1157 | **Example:** nat64 bib hash buckets 1024 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1158 | |
| 1159 | * **nat64 bib hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1160 | Sets the allocated memory size (in bytes) for each of the two in/out NAT64 |
| 1161 | BIB bi-hash tables. Defaults to 134217728 (128 << 20) bytes, |
| 1162 | which is roughly 128 MB. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1163 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1164 | **Example:** nat64 bib hash memory 134217728 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1165 | |
| 1166 | * **nat64 st hash buckets <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1167 | Sets the number of hash buckets in each of the two in/out NAT64 session table |
| 1168 | bi-hash tables. Defaults to 2048 buckets. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1169 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1170 | **Example:** nat64 st hash buckets 2048 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1171 | |
| 1172 | * **nat64 st hash memory <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1173 | Sets the allocated memory size (in bytes) for each of the two in/out NAT64 session |
| 1174 | table bi-hash tables. Defaults to 268435456 (256 << 20) bytes, which is roughly |
| 1175 | 256 MB. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1176 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1177 | **Example:** nat64 st hash memory 268435456 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1178 | |
| 1179 | * **out2in dpo** |
| 1180 | TBD |
| 1181 | |
| 1182 | **Example:** out2in dpo |
| 1183 | |
| 1184 | * **dslite ce** |
| 1185 | TBD |
| 1186 | |
| 1187 | **Example:** dslite ce |
| 1188 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1189 | .. _endpointLabel: |
| 1190 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1191 | * **endpoint-dependent** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1192 | Sets a boolean value to 1, indicating that the NAT is endpoint dependent. |
| 1193 | Defaults to 0, meaning the NAT is not endpoint dependent. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1194 | |
| 1195 | **Example:** endpoint-dependent |
| 1196 | |
| 1197 | .. _oam: |
| 1198 | |
| 1199 | "oam" Parameters |
| 1200 | ________________ |
| 1201 | |
| 1202 | OAM configuration controls the (ip4-icmp) interval, and number of misses |
| 1203 | allowed before reporting an oam target down to any registered listener. |
| 1204 | |
| 1205 | * **interval <n.n>** |
| 1206 | Interval, floating-point seconds, between sending OAM IPv4 ICMP messages. |
| 1207 | Default is 2.04 seconds. |
| 1208 | |
| 1209 | **Example:** interval 3.5 |
| 1210 | |
| 1211 | * **misses-allowed <n>** |
| 1212 | Number of misses before declaring an OAM target down. Default is 3 misses. |
| 1213 | |
| 1214 | **Example:** misses-allowed 5 |
| 1215 | |
| 1216 | .. _plugins: |
| 1217 | |
| 1218 | "plugins" Parameters |
| 1219 | ____________________ |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1220 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1221 | A plugin can be disabled by default. It may still be in an experimental phase |
| 1222 | or only be needed in special circumstances. If this is the case, the plugin can |
| 1223 | be explicitely enabled in *'startup.conf'*. Also, a plugin that is enabled by |
| 1224 | default can be explicitely disabled in *'startup.conf'*. |
| 1225 | |
| 1226 | Another useful use of this section is to disable all the plugins, then enable |
| 1227 | only the plugins that are desired. |
| 1228 | |
| 1229 | * **path <path>** |
| 1230 | Adjust the plugin path depending on where the VPP plugins are installed. |
| 1231 | |
| 1232 | **Example:** path /home/bms/vpp/build-root/install-vpp-native/vpp/lib64/vpp_plugins |
| 1233 | |
| 1234 | * **name-filter <filter-name>** |
| 1235 | TBD |
| 1236 | |
| 1237 | **Example:** TBD |
| 1238 | |
| 1239 | * **vat-path <path>** |
| 1240 | TBD |
| 1241 | |
| 1242 | **Example:** TBD |
| 1243 | |
| 1244 | * **vat-name-filter <filter-name>** |
| 1245 | TBD |
| 1246 | |
| 1247 | **Example:** TBD |
| 1248 | |
| 1249 | * **plugin <plugin.so> { .. }** |
| 1250 | Configure parameters for a given plugin. Valid parameters are as follows: |
| 1251 | |
| 1252 | * **enable** |
| 1253 | Enable the given plugin. |
| 1254 | * **disable** |
| 1255 | Disable the given plugin. |
| 1256 | * **skip-version-check** |
| 1257 | In the plugin registration, if *'.version_required'* is set, the |
| 1258 | plugin will not be loaded if there is version mismatch between |
| 1259 | plugin and VPP. This can be bypassed by setting "skip-version-check" |
| 1260 | for specific plugin. |
| 1261 | |
| 1262 | **Example:** plugin ila_plugin.so { enable skip-version-check } |
| 1263 | |
| 1264 | * **plugin default { .. }** |
| 1265 | Set the default behavior for all plugins. Valid parameters are as follows: |
| 1266 | |
| 1267 | * **disable** |
| 1268 | Disable all plugins. |
| 1269 | |
| 1270 | **Example:** |
| 1271 | | plugin default { disable } |
| 1272 | | plugin dpdk_plugin.so { enable } |
| 1273 | | plugin acl_plugin.so { enable } |
| 1274 | |
| 1275 | .. _plugin_path: |
| 1276 | |
| 1277 | "plugin_path" Parameters |
| 1278 | ________________________ |
| 1279 | |
| 1280 | Alternate syntax to choose plugin path. Plugin_path configuration controls the |
| 1281 | set of directories searched for vlib plugins. Supply a colon-separated list of |
| 1282 | (absolute) directory names: plugin_path dir1:dir2:...:dirN |
| 1283 | |
| 1284 | **Example:** plugin_path /home/bms/vpp/build-root/install-vpp-native/vpp/lib64/vpp_plugins |
| 1285 | |
| 1286 | .. _punt: |
| 1287 | |
| 1288 | "punt" Parameters |
| 1289 | _________________ |
| 1290 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1291 | Configuration parameters for the local TCP/IP stack punt infrastructure. |
| 1292 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1293 | * **socket <path>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1294 | The filesystem pathname of a bound UNIX domain socket to be used with punt. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1295 | |
| 1296 | **Example:** TBD |
| 1297 | |
| 1298 | .. _session: |
| 1299 | |
| 1300 | "session" Parameters |
| 1301 | ____________________ |
| 1302 | |
| 1303 | * **event-queue-length <n>** |
| 1304 | TBD |
| 1305 | |
| 1306 | **Example:** TBD |
| 1307 | |
| 1308 | * **preallocated-sessions <n>** |
| 1309 | TBD |
| 1310 | |
| 1311 | **Example:** TBD |
| 1312 | |
| 1313 | * **v4-session-table-buckets <n>** |
| 1314 | TBD |
| 1315 | |
| 1316 | **Example:** TBD |
| 1317 | |
| 1318 | * **v4-halfopen-table-buckets <n>** |
| 1319 | TBD |
| 1320 | |
| 1321 | **Example:** TBD |
| 1322 | |
| 1323 | * **v6-session-table-buckets <n>** |
| 1324 | TBD |
| 1325 | |
| 1326 | **Example:** TBD |
| 1327 | |
| 1328 | * **v6-halfopen-table-buckets <n>** |
| 1329 | TBD |
| 1330 | |
| 1331 | **Example:** TBD |
| 1332 | |
| 1333 | * **v4-session-table-memory <n>G|<n>M|<n>K|<n>** |
| 1334 | TBD |
| 1335 | The input value can be set in GB, MB, KB or bytes. |
| 1336 | |
| 1337 | **Example:** TBD |
| 1338 | |
| 1339 | * **v4-halfopen-table-memory <n>G|<n>M|<n>K|<n>** |
| 1340 | TBD |
| 1341 | The input value can be set in GB, MB, KB or bytes. |
| 1342 | |
| 1343 | **Example:** TBD |
| 1344 | |
| 1345 | * **v6-session-table-memory <n>G|<n>M|<n>K|<n>** |
| 1346 | TBD |
| 1347 | The input value can be set in GB, MB, KB or bytes. |
| 1348 | |
| 1349 | **Example:** TBD |
| 1350 | |
| 1351 | * **v6-halfopen-table-memory <n>G|<n>M|<n>K|<n>** |
| 1352 | TBD |
| 1353 | The input value can be set in GB, MB, KB or bytes. |
| 1354 | |
| 1355 | **Example:** TBD |
| 1356 | |
| 1357 | * **local-endpoints-table-memory <n>G|<n>M|<n>K|<n>** |
| 1358 | TBD |
| 1359 | The input value can be set in GB, MB, KB or bytes. |
| 1360 | |
| 1361 | **Example:** TBD |
| 1362 | |
| 1363 | * **local-endpoints-table-buckets <n>** |
| 1364 | TBD |
| 1365 | |
| 1366 | **Example:** TBD |
| 1367 | |
| 1368 | * **evt_qs_memfd_seg** |
| 1369 | TBD |
| 1370 | |
| 1371 | **Example:** evt_qs_memfd_seg |
| 1372 | |
| 1373 | .. _socketsvr: |
| 1374 | |
| 1375 | "socketsvr" Parameters |
| 1376 | ______________________ |
| 1377 | |
| 1378 | Create a socket server for API server (.../vlibmemory/socksvr_vlib.c.). |
| 1379 | If not set, API server doesn't run. |
| 1380 | |
| 1381 | * **socket-name <filename>** |
| 1382 | Configure API socket filename. |
| 1383 | |
| 1384 | **Example:** socket-name /run/vpp/vpp-api.sock |
| 1385 | |
| 1386 | * **default** |
| 1387 | Use the default API socket (/run/vpp-api.sock). |
| 1388 | |
| 1389 | **Example:** default |
| 1390 | |
| 1391 | .. _stats: |
| 1392 | |
| 1393 | "stats" Parameters |
| 1394 | __________________ |
| 1395 | |
| 1396 | Create a socket server for *'stats'* poller. If not set, 'stats'* poller |
| 1397 | doesn't run. |
| 1398 | |
| 1399 | * **socket-name <filename>** |
| 1400 | Configure *'stats'* socket filename. |
| 1401 | |
| 1402 | **Example:** socket-name /run/vpp/stats.sock |
| 1403 | |
| 1404 | * **default** |
| 1405 | Use the default *'stats'* socket (/run/vpp/stats.sock). |
| 1406 | |
| 1407 | **Example:** default |
| 1408 | |
| 1409 | .. _statseg: |
| 1410 | |
| 1411 | "statseg" Parameters |
| 1412 | ____________________ |
| 1413 | |
| 1414 | * **size <n>G|<n>M|<n>K|<n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1415 | Sets the size of the memory mapped stats segment object *stat_segment*. |
| 1416 | The input value can be set in GB, MB, KB or bytes. Defaults to 33554432 |
| 1417 | (32 << 20) bytes or roughly 32 MB. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1418 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1419 | **Example:** size 32M |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1420 | |
| 1421 | .. _tapcli: |
| 1422 | |
| 1423 | "tapcli" Parameters |
| 1424 | ___________________ |
| 1425 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1426 | Configuration parameters for TAPCLI (dynamic tap interface hookup.) |
| 1427 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1428 | * **mtu <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1429 | Sets interface MTU (maximum transmission unit) size in bytes. This size |
| 1430 | is also related to the number of MTU buffers. Defaults to 1500 bytes. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1431 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1432 | **Example:** mtu 1500 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1433 | |
| 1434 | * **disable** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1435 | Disables TAPCLI. Default is that TAPCLI is enabled. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1436 | |
| 1437 | **Example:** disable |
| 1438 | |
| 1439 | .. _tcp: |
| 1440 | |
| 1441 | "tcp" Parameters |
| 1442 | ________________ |
| 1443 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1444 | Configuration parameters for TCP host stack utilities. The following |
| 1445 | preallocation parameters are related to the initialization of fixed-size, |
| 1446 | preallocation pools. |
| 1447 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1448 | * **preallocated-connections <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1449 | Sets the number of preallocated TCP connections. Defaults to 0. |
| 1450 | The preallocated connections per thread is related to this value, |
| 1451 | equal to (preallocated_connections / (num_threads - 1)). |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1452 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1453 | **Example:** preallocated-connections 5 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1454 | |
| 1455 | * **preallocated-half-open-connections <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1456 | Sets the number of preallocated TCP half-open connections. Defaults to 0. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1457 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1458 | **Example:** preallocated-half-open-connections 5 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1459 | |
| 1460 | * **buffer-fail-fraction <n.n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1461 | Sets the TCP buffer fail fraction (a float) used for fault-injection |
| 1462 | when debugging TCP buffer allocation. Its use is found in *tcp_debug.h*. |
| 1463 | Defaults to 0.0. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1464 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1465 | **Example:** buffer-fail-fraction 0.0 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1466 | |
| 1467 | .. _tls: |
| 1468 | |
| 1469 | "tls" Parameters |
| 1470 | ________________ |
| 1471 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1472 | Configures TLS parameters, such as enabling the use of test certificates. |
| 1473 | These parameters affect the tlsmbedtls and tlsopenssl plugins. |
| 1474 | |
| 1475 | * **use-test-cert-in-ca** |
| 1476 | Sets a boolean value to 1 to indicate during the initialization of a |
| 1477 | TLS CA chain to attempt to parse and add test certificates to the chain. |
| 1478 | Defaults to 0, meaning test certificates are not used. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1479 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1480 | **Example:** use-test-cert-in-ca |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1481 | |
| 1482 | * **ca-cert-path <filename>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1483 | Sets the filename path of the location of TLS CA certificates, used when |
| 1484 | initializing and loading TLS CA certificates during the initialization |
| 1485 | of a TLS CA chain. If not set, the default filename path is |
| 1486 | */etc/ssl/certs/ca-certificates.crt*. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1487 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1488 | **Example:** ca-cert-path /etc/ssl/certs/ca-certificates.crt |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1489 | |
| 1490 | .. _tuntap: |
| 1491 | |
| 1492 | "tuntap" Parameters |
| 1493 | ___________________ |
| 1494 | |
| 1495 | The "tuntap" driver configures a point-to-point interface between the vpp |
| 1496 | engine and the local Linux kernel stack. This allows e.g. users to ssh to the |
| 1497 | host | VM | container via vpp "revenue" interfaces. It's marginally useful, and |
| 1498 | is currently disabled by default. To [dynamically] create TAP interfaces - the |
| 1499 | preferred scheme - see the "tap_connect" binary API. The Linux network stack |
| 1500 | "vnet" interface needs to manually configure, and VLAN and other settings if |
| 1501 | desired. |
| 1502 | |
| 1503 | * **enable|disable** |
| 1504 | Enable or disable the tun/tap driver. |
| 1505 | |
| 1506 | **Example:** enable |
| 1507 | |
| 1508 | * **ethernet|ether** |
| 1509 | Create a tap device (ethernet MAC) instead of a tun device (point-to-point |
| 1510 | tunnel). The two keywords are aliases for the same function. |
| 1511 | |
| 1512 | **Example:** ethernet |
| 1513 | |
| 1514 | * **have-normal-interface|have-normal** |
| 1515 | Treat the host Linux stack as a routing peer instead of programming VPP |
| 1516 | interface L3 addresses onto the tun/tap devices. The two keywords are |
| 1517 | aliases for the same function. |
| 1518 | |
| 1519 | **Example:** have-normal-interface |
| 1520 | |
| 1521 | * **name <name>** |
| 1522 | Assign name to the tun/tap device. |
| 1523 | |
| 1524 | **Example:** name vpp1 |
| 1525 | |
| 1526 | Here's a typical multiple parameter invocation: |
| 1527 | |
| 1528 | | tuntap { ethernet have-normal-interface name vpp1 } |
| 1529 | |
| 1530 | .. _vhost-user: |
| 1531 | |
| 1532 | "vhost-user" Parameters |
| 1533 | _______________________ |
| 1534 | |
| 1535 | Vhost-user configuration parameters control the vhost-user driver. |
| 1536 | |
| 1537 | * **coalesce-frames <n>** |
| 1538 | Subject to deadline-timer expiration - see next item - attempt to transmit |
| 1539 | at least <n> packet frames. Default is 32 frames. |
| 1540 | |
| 1541 | **Example:** coalesce-frames 64 |
| 1542 | |
| 1543 | * **coalesce-time <seconds>** |
| 1544 | Hold packets no longer than (floating-point) seconds before transmitting |
| 1545 | them. Default is 0.001 seconds |
| 1546 | |
| 1547 | **Example:** coalesce-time 0.002 |
| 1548 | |
| 1549 | * **dont-dump-memory** |
| 1550 | vhost-user shared-memory segments can add up to a large amount of memory, so |
| 1551 | it's handy to avoid adding them to corefiles when using a significant number |
| 1552 | of such interfaces. |
| 1553 | |
| 1554 | **Example:** dont-dump-memory |
| 1555 | |
| 1556 | .. _vlib: |
| 1557 | |
| 1558 | "vlib" Parameters |
| 1559 | _________________ |
| 1560 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1561 | These parameters configure VLIB, such as allowing you to choose whether to |
| 1562 | enable memory traceback or a post-mortem elog dump. |
| 1563 | |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1564 | * **memory-trace** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1565 | Enables memory trace (mheap traceback.) Defaults to 0, meaning memory |
| 1566 | trace is disabled. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1567 | |
| 1568 | **Example:** memory-trace |
| 1569 | |
| 1570 | * **elog-events <n>** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1571 | Sets the number of elements/events (the size) of the event ring |
| 1572 | (a circular buffer of events.) This number rounds to a power of 2. |
| 1573 | Defaults to 131072 (128 << 10) elements. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1574 | |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1575 | **Example:** elog-events 4096 |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1576 | |
| 1577 | * **elog-post-mortem-dump** |
andrew | 9f0c020 | 2018-08-14 09:35:42 -0400 | [diff] [blame^] | 1578 | Enables the attempt of a post-mortem elog dump to |
| 1579 | */tmp/elog_post_mortem.<PID_OF_CALLING_PROCESS>* if os_panic or |
| 1580 | os_exit is called. |
John DeNisco | 06dcd45 | 2018-07-26 12:45:10 -0400 | [diff] [blame] | 1581 | |
| 1582 | **Example:** elog-post-mortem-dump |
| 1583 | |