blob: 84b2fd758879b793ef5a9fcb56434f863b3a8025 [file] [log] [blame]
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +02001.. _configuration_reference:
John DeNisco06dcd452018-07-26 12:45:10 -04002
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +02003Configuration Reference
4=======================
John DeNisco06dcd452018-07-26 12:45:10 -04005
John DeNisco4f859682019-12-10 14:25:50 -05006Below is the list of some section names and their associated parameters.
7This is not an exhaustive list, but should give you an idea of how VPP can be configured.
8
9For all of the configuration parameters search the source code for instances of
10**VLIB_CONFIG_FUNCTION** and **VLIB_EARLY_CONFIG_FUNCTION**.
John DeNisco06dcd452018-07-26 12:45:10 -040011
12For example, the invocation *'VLIB_CONFIG_FUNCTION (foo_config, "foo")'* will
13cause the function *'foo_config'* to receive all parameters given in a
John DeNisco4f859682019-12-10 14:25:50 -050014parameter block named "foo": "foo { arg1 arg2 arg3 ... }".
John DeNisco06dcd452018-07-26 12:45:10 -040015
John DeNisco4f859682019-12-10 14:25:50 -050016The unix section
17----------------
John DeNisco06dcd452018-07-26 12:45:10 -040018
John DeNisco4f859682019-12-10 14:25:50 -050019Configures VPP startup and behavior type attributes, as well and any OS based
John DeNisco06dcd452018-07-26 12:45:10 -040020attributes.
21
John DeNisco4f859682019-12-10 14:25:50 -050022.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -040023
John DeNisco4f859682019-12-10 14:25:50 -050024 unix {
25 nodaemon
26 log /var/log/vpp/vpp.log
27 full-coredump
28 cli-listen /run/vpp/cli.sock
29 gid vpp
30 }
31
32nodaemon
33^^^^^^^^
34
35Do not fork / background the vpp process. Typical when invoking VPP
36applications from a process monitor. Set by default in the default
37*'startup.conf'* file.
38
39.. code-block:: console
40
41 nodaemon
42
Ruslan Babayeve31820a2020-02-14 17:45:02 -080043nosyslog
44^^^^^^^^
45
46Disable syslog and log errors to stderr instead. Typical when invoking
47VPP applications from a process monitor like runit or daemontools that
48pipe service's output to a dedicated log service, which will typically
49attach a timestamp and rotate the logs as necessary.
50
51.. code-block:: console
52
53 nosyslog
54
John DeNisco4f859682019-12-10 14:25:50 -050055interactive
56^^^^^^^^^^^
57
58Attach CLI to stdin/out and provide a debugging command line interface.
59
60.. code-block:: console
61
62 interactive
63
64log <filename>
65^^^^^^^^^^^^^^
66
67Logs the startup configuration and all subsequent CLI commands in filename.
68Very useful in situations where folks don't remember or can't be bothered
69to include CLI commands in bug reports. The default *'startup.conf'* file
70is to write to *'/var/log/vpp/vpp.log'*.
71
72In VPP 18.04, the default log file location was moved from '/tmp/vpp.log'
73to '/var/log/vpp/vpp.log' . The VPP code is indifferent to the file location.
74However, if SELinux is enabled, then the new location is required for the file
75to be properly labeled. Check your local *'startup.conf'* file for the log file
76location on your system.
77
78.. code-block:: console
79
80 log /var/log/vpp/vpp-debug.log
81
82exec | startup-config <filename>
83^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
84
85Read startup operational configuration from filename. The contents of the file
86will be performed as though entered at the CLI. The two keywords are aliases
87for the same function; if both are specified, only the last will have an effect.
88
89A file of CLI commands might look like:
90
91.. code-block:: console
92
93 $ cat /usr/share/vpp/scripts/interface-up.txt
94 set interface state TenGigabitEthernet1/0/0 up
95 set interface state TenGigabitEthernet1/0/1 up
96
97Parameter Example:
98
99.. code-block:: console
100
101 startup-config /usr/share/vpp/scripts/interface-up.txt
102
103gid <number | name>
104^^^^^^^^^^^^^^^^^^^
105
106Sets the effective group ID to the input group ID or group name of the calling
107process.
108
109.. code-block:: console
110
111 gid vpp
112
113full-coredump
114^^^^^^^^^^^^^
115
116Ask the Linux kernel to dump all memory-mapped address regions, instead of
117just text+data+bss.
118
119.. code-block:: console
120
121 full-coredump
122
123coredump-size unlimited | <n>G | <n>M | <n>K | <n>
124^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
125
John DeNisco06dcd452018-07-26 12:45:10 -0400126 Set the maximum size of the coredump file. The input value can be set in
127 GB, MB, KB or bytes, or set to *'unlimited'*.
John DeNisco4f859682019-12-10 14:25:50 -0500128
129.. code-block:: console
130
131 coredump-size unlimited
132
133cli-listen <ipaddress:port> | <socket-path>
134^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
135
John DeNisco06dcd452018-07-26 12:45:10 -0400136 Bind the CLI to listen at address localhost on TCP port 5002. This will
137 accept an ipaddress:port pair or a filesystem path; in the latter case a
138 local Unix socket is opened instead. The default *'startup.conf'* file
139 is to open the socket *'/run/vpp/cli.sock'*.
John DeNisco4f859682019-12-10 14:25:50 -0500140
141.. code-block:: console
142
143 cli-listen localhost:5002
144 cli-listen /run/vpp/cli.sock
145
146cli-line-mode
147^^^^^^^^^^^^^
148
John DeNisco06dcd452018-07-26 12:45:10 -0400149 Disable character-by-character I/O on stdin. Useful when combined with,
150 for example, emacs M-x gud-gdb.
John DeNisco4f859682019-12-10 14:25:50 -0500151
152.. code-block:: console
153
154 cli-line-mode
155
156cli-prompt <string>
157^^^^^^^^^^^^^^^^^^^
158
John DeNisco06dcd452018-07-26 12:45:10 -0400159 Configure the CLI prompt to be string.
John DeNisco4f859682019-12-10 14:25:50 -0500160
161.. code-block:: console
162
163 cli-prompt vpp-2
164
165cli-history-limit <n>
166^^^^^^^^^^^^^^^^^^^^^
167
Paul Vinciguerra7fa3dd22019-10-27 17:28:10 -0400168 Limit command history to <n> lines. A value of 0 disables command history.
John DeNisco06dcd452018-07-26 12:45:10 -0400169 Default value: 50
John DeNisco4f859682019-12-10 14:25:50 -0500170
171.. code-block:: console
172
173 cli-history-limit 100
174
175cli-no-banner
176^^^^^^^^^^^^^
177
John DeNisco06dcd452018-07-26 12:45:10 -0400178 Disable the login banner on stdin and Telnet connections.
John DeNisco4f859682019-12-10 14:25:50 -0500179
180.. code-block:: console
181
182 cli-no-banner
183
184cli-no-pager
185^^^^^^^^^^^^
186
John DeNisco06dcd452018-07-26 12:45:10 -0400187 Disable the output pager.
John DeNisco4f859682019-12-10 14:25:50 -0500188
189.. code-block:: console
190
191 cli-no-pager
192
193cli-pager-buffer-limit <n>
194^^^^^^^^^^^^^^^^^^^^^^^^^^
195
John DeNisco06dcd452018-07-26 12:45:10 -0400196 Limit pager buffer to <n> lines of output. A value of 0 disables the
197 pager. Default value: 100000
John DeNisco4f859682019-12-10 14:25:50 -0500198
199.. code-block:: console
200
201 cli-pager-buffer-limit 5000
202
203runtime-dir <dir>
204^^^^^^^^^^^^^^^^^
205
John DeNisco06dcd452018-07-26 12:45:10 -0400206 Set the runtime directory, which is the default location for certain
207 files, like socket files. Default is based on User ID used to start VPP.
208 Typically it is *'root'*, which defaults to *'/run/vpp/'*. Otherwise,
209 defaults to *'/run/user/<uid>/vpp/'*.
John DeNisco06dcd452018-07-26 12:45:10 -0400210
211.. code-block:: console
212
John DeNisco4f859682019-12-10 14:25:50 -0500213 runtime-dir /tmp/vpp
214
215poll-sleep-usec <n>
216^^^^^^^^^^^^^^^^^^^
217
218 Add a fixed-sleep between main loop poll. Default is 0, which is not to
219 sleep.
220
221.. code-block:: console
222
223 poll-sleep-usec 100
224
225pidfile <filename>
226^^^^^^^^^^^^^^^^^^
227
228 Writes the pid of the main thread in the given filename.
229
230.. code-block:: console
231
232 pidfile /run/vpp/vpp1.pid
John DeNisco06dcd452018-07-26 12:45:10 -0400233
234
John DeNisco4f859682019-12-10 14:25:50 -0500235The api-trace Section
236---------------------
John DeNisco06dcd452018-07-26 12:45:10 -0400237
John DeNisco4f859682019-12-10 14:25:50 -0500238The ability to trace, dump, and replay control-plane API traces makes all the
239difference in the world when trying to understand what the control-plane has
240tried to ask the forwarding-plane to do.
241
242Typically, one simply enables the API message trace scheme:
243
244.. code-block:: console
245
246 api-trace {
247 api-trace on
248 }
249
250on | enable
251^^^^^^^^^^^
252
253 Enable API trace capture from the beginning of time, and arrange for a
254 post-mortem dump of the API trace if the application terminates abnormally.
255 By default, the (circular) trace buffer will be configured to capture
256 256K traces. The default *'startup.conf'* file has trace enabled by default,
257 and unless there is a very strong reason, it should remain enabled.
258
259.. code-block:: console
260
261 on
262
263nitems <n>
264^^^^^^^^^^
265
266 Configure the circular trace buffer to contain the last <n> entries. By
267 default, the trace buffer captures the last 256K API messages received.
268
269.. code-block:: console
270
271 nitems 524288
272
273save-api-table <filename>
274^^^^^^^^^^^^^^^^^^^^^^^^^
275
276 Dumps the API message table to /tmp/<filename>.
277
278.. code-block:: console
279
280 save-api-table apiTrace-07-04.txt
281
282
283The api-segment Section
284-----------------------
285
286These values control various aspects of the binary API interface to VPP.
287
288The default looks like the following:
289
290.. code-block:: console
291
292 api-segment {
293 gid vpp
294 }
295
296
297prefix <path>
298^^^^^^^^^^^^^
299
300 Sets the prefix prepended to the name used for shared memory (SHM)
301 segments. The default is empty, meaning shared memory segments are created
302 directly in the SHM directory *'/dev/shm'*. It is worth noting that on
303 many systems *'/dev/shm'* is a symbolic link to somewhere else in the file
304 system; Ubuntu links it to *'/run/shm'*.
305
306.. code-block:: console
307
308 prefix /run/shm
309
310uid <number | name>
311^^^^^^^^^^^^^^^^^^^
312
313 Sets the user ID or name that should be used to set the ownership of the
314 shared memory segments. Defaults to the same user that VPP is started
315 with, probably root.
316
317.. code-block:: console
318
319 uid root
320
321gid <number | name>
322^^^^^^^^^^^^^^^^^^^
323
324 Sets the group ID or name that should be used to set the ownership of the
325 shared memory segments. Defaults to the same group that VPP is started
326 with, probably root.
327
328.. code-block:: console
329
330 gid vpp
331
332**The following parameters should only be set by those that are familiar with the
333interworkings of VPP.**
334
335baseva <x>
336^^^^^^^^^^
337
338 Set the base address for SVM global region. If not set, on AArch64, the
339 code will try to determine the base address. All other default to
340 0x30000000.
341
342.. code-block:: console
343
344 baseva 0x20000000
345
346global-size <n>G | <n>M | <n>
347^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
348
349 Set the global memory size, memory shared across all router instances,
350 packet buffers, etc. If not set, defaults to 64M. The input value can be
351 set in GB, MB or bytes.
352
353.. code-block:: console
354
355 global-size 2G
356
357global-pvt-heap-size <n>M | size <n>
358^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
359
360 Set the size of the global VM private mheap. If not set, defaults to 128k.
361 The input value can be set in MB or bytes.
362
363.. code-block:: console
364
365 global-pvt-heap-size size 262144
366
367api-pvt-heap-size <n>M | size <n>
368^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
369
370 Set the size of the api private mheap. If not set, defaults to 128k.
371 The input value can be set in MB or bytes.
372
373.. code-block:: console
374
375 api-pvt-heap-size 1M
376
377api-size <n>M | <n>G | <n>
378^^^^^^^^^^^^^^^^^^^^^^^^^^
379
380 Set the size of the API region. If not set, defaults to 16M. The input
381 value can be set in GB, MB or bytes.
382
383.. code-block:: console
384
385 api-size 64M
386
387The socksvr Section
388-------------------
389
390Enables a Unix domain socket which processes binary API messages. See
391.../vlibmemory/socket_api.c. If this parameter is not set, vpp
392won't process binary API messages over sockets.
393
394.. code-block:: console
395
396 socksvr {
397 # Explicitly name a socket file
398 socket-name /run/vpp/api.sock
399 or
400 # Use defaults as described below
401 default
402 }
403
404The "default" keyword instructs vpp to use /run/vpp/api.sock when
405running as root, otherwise to use /run/user/<uid>/api.sock.
406
407The cpu Section
408---------------
409
410In the VPP there is one main thread and optionally the user can create worker(s)
411The main thread and worker thread(s) can be pinned to CPU core(s) manually or automatically
412
413.. code-block:: console
414
415 cpu {
416 main-core 1
417 corelist-workers 2-3,18-19
418 }
419
420
421Manual pinning of thread(s) to CPU core(s)
422^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
423
424main-core
425^^^^^^^^^
426
427Set logical CPU core where main thread runs, if main core is not set VPP will use
428core 1 if available
429
430.. code-block:: console
431
432 main-core 1
433
434corelist-workers
435^^^^^^^^^^^^^^^^
436
437Set logical CPU core(s) where worker threads are running
438
439.. code-block:: console
440
441 corelist-workers 2-3,18-19
442
443Automatic pinning of thread(s) to CPU core(s)
444^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
445
446skip-cores number
447^^^^^^^^^^^^^^^^^
448
449Sets number of CPU core(s) to be skipped (1 ... N-1), Skipped CPU core(s) are
450not used for pinning main thread and working thread(s).
451
452The main thread is automatically pinned to the first available CPU core and worker(s)
453are pinned to next free CPU core(s) after core assigned to main thread
454
455.. code-block:: console
456
457 skip-cores 4
458
459workers number
460^^^^^^^^^^^^^^
461
462Specify a number of workers to be created Workers are pinned to N consecutive
463CPU cores while skipping "skip-cores" CPU core(s) and main thread's CPU core
464
465.. code-block:: console
466
467 workers 2
468
469scheduler-policy other | batch | idle | fifo | rr
470^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
471
472Set scheduling policy and priority of main and worker threads
473
474Scheduling policy options are: other (SCHED_OTHER), batch (SCHED_BATCH)
475idle (SCHED_IDLE), fifo (SCHED_FIFO), rr (SCHED_RR)
476
477.. code-block:: console
478
479 scheduler-policy fifo
480
481scheduler-priority number
482^^^^^^^^^^^^^^^^^^^^^^^^^
483
484Scheduling priority is used only for "real-time policies (fifo and rr),
485and has to be in the range of priorities supported for a particular policy
486
487.. code-block:: console
488
489 scheduler-priority 50
490
491The buffers Section
492-------------------
493
494.. code-block:: console
495
496 buffers {
497 buffers-per-numa 128000
498 default data-size 2048
Nathan Skrzypczak61559022020-11-23 16:25:21 +0100499 page-size default-hugepage
John DeNisco4f859682019-12-10 14:25:50 -0500500 }
501
502buffers-per-numa number
503^^^^^^^^^^^^^^^^^^^^^^^
504
505Increase number of buffers allocated, needed only in scenarios with
506large number of interfaces and worker threads. Value is per numa node.
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200507Default is 16384 (8192 if running unprivileged)
John DeNisco4f859682019-12-10 14:25:50 -0500508
509.. code-block:: console
510
511 buffers-per-numa 128000
512
513default data-size number
514^^^^^^^^^^^^^^^^^^^^^^^^
515
516Size of buffer data area, default is 2048
517
518.. code-block:: console
519
520 default data-size 2048
521
Nathan Skrzypczak61559022020-11-23 16:25:21 +0100522page-size number
523^^^^^^^^^^^^^^^^
524
525Set the page size for buffer allocation
526
527.. code-block:: console
528
529 page-size 4K
530 page-size 2M
531 page-size 1G
532 page-size default
533 page-size default-hugepage
534
John DeNisco4f859682019-12-10 14:25:50 -0500535
536The dpdk Section
537----------------
538
539.. code-block:: console
540
541 dpdk {
542 dev default {
543 num-rx-desc 512
544 num-tx-desc 512
545 }
546
547 dev 0000:02:00.1 {
548 num-rx-queues 2
549 name eth0
550 }
551 }
552
553dev <pci-dev> | default { .. }
554^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
555
556White-list [as in, attempt to drive] a specific PCI device. PCI-dev is a
557string of the form "DDDD:BB:SS.F" where:
558
559* DDDD = Domain
560* BB = Bus Number
561* SS = Slot number
562* F = Function
563
Paul Vinciguerra5ac392d2020-03-01 01:37:37 -0500564If the keyword **default** is used the values will apply to all the devices.
John DeNisco4f859682019-12-10 14:25:50 -0500565
566This is the same format used in the linux sysfs tree (i.e./sys/bus/pci/devices)
567for PCI device directory names.
568
569.. code-block:: console
570
571 dpdk {
572 dev default {
573 num-rx-desc 512
574 num-tx-desc 512
575 }
576
577dev <pci-dev> { .. }
578^^^^^^^^^^^^^^^^^^^^
579
580Whitelist specific interface by specifying PCI address. When whitelisting specific
581interfaces by specifying PCI address, additional custom parameters can also be
582specified. Valid options include:
583
584.. code-block:: console
585
586 dev 0000:02:00.0
587 dev 0000:03:00.0
588
589blacklist <pci-dev>
590^^^^^^^^^^^^^^^^^^^
591
592Blacklist specific device type by specifying PCI vendor:device Whitelist entries
593take precedence
594
595.. code-block:: console
596
597 blacklist 8086:10fb
598
599name interface-name
600^^^^^^^^^^^^^^^^^^^
601
602Set interface name
603
604.. code-block:: console
605
606 dev 0000:02:00.1 {
607 name eth0
608 }
609
610num-rx-queues <n>
611^^^^^^^^^^^^^^^^^
612
613Number of receive queues. Also enables RSS. Default value is 1.
614
615.. code-block:: console
616
617 dev 0000:02:00.1 {
Paul Vinciguerra5ac392d2020-03-01 01:37:37 -0500618 num-rx-queues <n>
John DeNisco4f859682019-12-10 14:25:50 -0500619 }
620
621num-tx-queues <n>
622^^^^^^^^^^^^^^^^^
623
624Number of transmit queues. Default is equal to number of worker threads
625or 1 if no workers treads.
626
627.. code-block:: console
628
629 dev 000:02:00.1 {
630 num-tx-queues <n>
631 }
632
633num-rx-desc <n>
634^^^^^^^^^^^^^^^
635
636Number of descriptors in receive ring. Increasing or reducing number
637can impact performance. Default is 1024.
638
639.. code-block:: console
640
641 dev 000:02:00.1 {
642 num-rx-desc <n>
643 }
644
645vlan-strip-offload on | off
646^^^^^^^^^^^^^^^^^^^^^^^^^^^
647
648VLAN strip offload mode for interface. VLAN stripping is off by default
649for all NICs except VICs, using ENIC driver, which has VLAN stripping on
650by default.
651
652.. code-block:: console
653
654 dev 000:02:00.1 {
655 vlan-strip-offload on|off
656 }
657
658uio-driver driver-name
659^^^^^^^^^^^^^^^^^^^^^^
660
661Change UIO driver used by VPP, Options are: igb_uio, vfio-pci, uio_pci_generic
662or auto (default)
663
664
665.. code-block:: console
666
667 uio-driver vfio-pci
668
669no-multi-seg
670^^^^^^^^^^^^
671
672Disable multi-segment buffers, improves performance but disables Jumbo MTU support
673
674.. code-block:: console
675
676 no-multi-seg
677
678socket-mem <n>
679^^^^^^^^^^^^^^
680
681Change hugepages allocation per-socket, needed only if there is need for
682larger number of mbufs. Default is 256M on each detected CPU socket
683
684.. code-block:: console
685
686 socket-mem 2048,2048
687
688no-tx-checksum-offload
689^^^^^^^^^^^^^^^^^^^^^^
690
691Disables UDP / TCP TX checksum offload. Typically needed for use faster
692vector PMDs (together with no-multi-seg)
693
694.. code-block:: console
695
696 no-tx-checksum-offload
697
698enable-tcp-udp-checksum
699^^^^^^^^^^^^^^^^^^^^^^^
700
701Enable UDP / TCP TX checksum offload This is the reversed option of
702'no-tx-checksum-offload'
703
704.. code-block:: console
705
706 enable-tcp-udp-checksum
707
708The plugins Section
709-------------------
710
711Configure VPP plugins.
712
713.. code-block:: console
714
715 plugins {
716 path /ws/vpp/build-root/install-vpp-native/vpp/lib/vpp_plugins
717 plugin dpdk_plugin.so enable
718 }
719
720path pathname
721^^^^^^^^^^^^^
722
723Adjust the plugin path depending on where the VPP plugins are.
724
725.. code-block:: console
726
727 path /ws/vpp/build-root/install-vpp-native/vpp/lib/vpp_plugins
728
729plugin plugin-name | default enable | disable
730^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
731
732Disable all plugins by default and then selectively enable specific plugins
733
734.. code-block:: console
735
736 plugin default disable
737 plugin dpdk_plugin.so enable
738 plugin acl_plugin.so enable
739
740Enable all plugins by default and then selectively disable specific plugins
741
742.. code-block:: console
743
744 plugin dpdk_plugin.so disable
745 plugin acl_plugin.so disable
746
747Th statseg Section
748^^^^^^^^^^^^^^^^^^
749
750.. code-block:: console
751
752 statseg {
753 per-node-counters on
754 }
755
756socket-name <filename>
757^^^^^^^^^^^^^^^^^^^^^^
758
759Name of the stats segment socket defaults to /run/vpp/stats.sock.
760
761.. code-block:: console
762
763 socket-name /run/vpp/stats.sock
764
765size <nnn>[KMG]
766^^^^^^^^^^^^^^^
767
768The size of the stats segment, defaults to 32mb
769
770.. code-block:: console
771
772 size 1024M
773
774per-node-counters on | off
775^^^^^^^^^^^^^^^^^^^^^^^^^^
776
777Defaults to none
778
779.. code-block:: console
780
781 per-node-counters on
782
783update-interval <f64-seconds>
784^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
785
786Sets the segment scrape / update interval
787
788.. code-block:: console
789
790 update-interval 300
791
792
793Some Advanced Parameters:
794-------------------------
795
796
797acl-plugin Section
798------------------
John DeNisco06dcd452018-07-26 12:45:10 -0400799
andrew9f0c0202018-08-14 09:35:42 -0400800These parameters change the configuration of the ACL (access control list) plugin,
801such as how the ACL bi-hash tables are initialized.
John DeNisco06dcd452018-07-26 12:45:10 -0400802
andrew9f0c0202018-08-14 09:35:42 -0400803They should only be set by those that are familiar with the interworkings of VPP
804and the ACL Plugin.
805
806The first three parameters, *connection hash buckets*, *connection hash memory*,
807and *connection count max*, set the **connection table per-interface parameters**
808for modifying how the two bounded-index extensible hash tables for
809IPv6 (40\*8 bit key and 8\*8 bit value pairs) and IPv4
810(16\*8 bit key and 8\*8 bit value pairs) **ACL plugin FA interface sessions**
811are initialized.
John DeNisco06dcd452018-07-26 12:45:10 -0400812
John DeNisco4f859682019-12-10 14:25:50 -0500813connection hash buckets <n>
814^^^^^^^^^^^^^^^^^^^^^^^^^^^
815
816Sets the number of hash buckets (rounded up to a power of 2) in each
817of the two bi-hash tables. Defaults to 64\*1024 (65536) hash buckets.
818
819.. code-block:: console
820
821 connection hash buckets 65536
822
823connection hash memory <n>
824^^^^^^^^^^^^^^^^^^^^^^^^^^
825
826Sets the allocated memory size (in bytes) for each of the two bi-hash tables.
827Defaults to 1073741824 bytes.
828
829.. code-block:: console
830
831 connection hash memory 1073741824
832
833connection count max <n>
834^^^^^^^^^^^^^^^^^^^^^^^^
835
836Sets the maximum number of pool elements when allocating each per-worker
837pool of sessions for both bi-hash tables. Defaults to 500000 elements in each pool.
838
839.. code-block:: console
840
841 connection count max 500000
842
843main heap size <n>G | <n>M | <n>K | <n>
844^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
845
846Sets the size of the main memory heap that holds all the ACL module related
847allocations (other than hash.) Default size is 0, but during
848ACL heap initialization is equal to
849*per_worker_size_with_slack * tm->n_vlib_mains + bihash_size + main_slack*.
850Note that these variables are partially based on the
851**connection table per-interface parameters** mentioned above.
852
853.. code-block:: console
854
855 main heap size 3G
John DeNisco06dcd452018-07-26 12:45:10 -0400856
andrew9f0c0202018-08-14 09:35:42 -0400857The next three parameters, *hash lookup heap size*, *hash lookup hash buckets*,
858and *hash lookup hash memory*, modify the initialization of the bi-hash lookup
859table used by the ACL plugin. This table is initialized when attempting to apply
860an ACL to the existing vector of ACLs looked up during packet processing
861(but it is found that the table does not exist / has not been initialized yet.)
John DeNisco4f859682019-12-10 14:25:50 -0500862
863hash lookup heap size <n>G | <n>M | <n> K | <n>
864^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
865
866Sets the size of the memory heap that holds all the miscellaneous allocations
867related to hash-based lookups. Default size is 67108864 bytes.
868
869.. code-block:: console
870
871 hash lookup heap size 70M
872
873hash lookup hash buckets <n>
874^^^^^^^^^^^^^^^^^^^^^^^^^^^^
875
876Sets the number of hash buckets (rounded up to a power of 2) in the bi-hash
877lookup table. Defaults to 65536 hash buckets.
878
879.. code-block:: console
880
881 hash lookup hash buckets 65536
882
883hash lookup hash memory <n>
884^^^^^^^^^^^^^^^^^^^^^^^^^^^
885
886Sets the allocated memory size (in bytes) for the bi-hash lookup table.
887Defaults to 67108864 bytes.
888
889.. code-block:: console
890
891 hash lookup hash memory 67108864
892
893use tuple merge <n>
894^^^^^^^^^^^^^^^^^^^
895
896Sets a boolean value indicating whether or not to use TupleMerge
897for hash ACL's. Defaults to 1 (true), meaning the default implementation
898of hashing ACL's does use TupleMerge.
899
900.. code-block:: console
901
902 use tuple merge 1
903
904tuple merge split threshold <n>
905^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
906
907Sets the maximum amount of rules (ACE's) that can collide in a bi-hash
908lookup table before the table is split into two new tables. Splitting ensures
909less rule collisions by hashing colliding rules based on their common tuple
910(usually their maximum common tuple.) Splitting occurs when the
911*length of the colliding rules vector* is greater than this threshold amount.
912Defaults to a maximum of 39 rule collisions per table.
913
914.. code-block:: console
915
916 tuple merge split threshold 30
917
918reclassify sessions <n>
919^^^^^^^^^^^^^^^^^^^^^^^
920
921Sets a boolean value indicating whether or not to take the epoch of the session
922into account when dealing with re-applying ACL's or changing already applied ACL's.
923Defaults to 0 (false), meaning the default implementation does NOT take the
924epoch of the session into account.
925
926.. code-block:: console
927
928 reclassify sessions 1
John DeNisco06dcd452018-07-26 12:45:10 -0400929
930.. _api-queue:
931
John DeNisco4f859682019-12-10 14:25:50 -0500932api-queue Section
933-----------------
John DeNisco06dcd452018-07-26 12:45:10 -0400934
John DeNisco4f859682019-12-10 14:25:50 -0500935length <n>
936^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -0400937
John DeNisco4f859682019-12-10 14:25:50 -0500938Sets the api queue length. Minimum valid queue length is 1024, which is
939also the default.
John DeNisco06dcd452018-07-26 12:45:10 -0400940
John DeNisco4f859682019-12-10 14:25:50 -0500941.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -0400942
John DeNisco4f859682019-12-10 14:25:50 -0500943 length 2048
John DeNisco06dcd452018-07-26 12:45:10 -0400944
945.. _cj:
946
John DeNisco4f859682019-12-10 14:25:50 -0500947cj Section
948----------
John DeNisco06dcd452018-07-26 12:45:10 -0400949
950The circular journal (CJ) thread-safe circular log buffer scheme is
951occasionally useful when chasing bugs. Calls to it should not be checked in.
952See .../vlib/vlib/unix/cj.c. The circular journal is disables by default.
953When enabled, the number of records must be provided, there is no default
954value.
955
John DeNisco4f859682019-12-10 14:25:50 -0500956records <n>
957^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -0400958
John DeNisco4f859682019-12-10 14:25:50 -0500959Configure the number of circular journal records in the circular buffer.
960The number of records should be a power of 2.
John DeNisco06dcd452018-07-26 12:45:10 -0400961
John DeNisco4f859682019-12-10 14:25:50 -0500962.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -0400963
John DeNisco4f859682019-12-10 14:25:50 -0500964 records 131072
John DeNisco06dcd452018-07-26 12:45:10 -0400965
John DeNisco4f859682019-12-10 14:25:50 -0500966on
967^^
John DeNisco06dcd452018-07-26 12:45:10 -0400968
John DeNisco4f859682019-12-10 14:25:50 -0500969Turns on logging at the earliest possible moment.
John DeNisco06dcd452018-07-26 12:45:10 -0400970
John DeNisco4f859682019-12-10 14:25:50 -0500971.. code-block:: console
972
973 on
974
975dns Section
976-----------
977
978max-cache-size <n>
979^^^^^^^^^^^^^^^^^^
980
981Set the maximum number of active elements allowed in the pool of
982dns cache entries. When resolving an expired entry or adding a new
983static entry and the max number of active entries is reached,
984a random, non-static entry is deleted. Defaults to 65535 entries.
985
986.. code-block:: console
987
988 max-cache-size 65535
989
Paul Vinciguerra491741a2020-03-02 16:10:54 -0500990
991ethernet Section
992-----------------
993
994default-mtu <n>
995^^^^^^^^^^^^^^^
996
997Specifies the default MTU size for Ethernet interfaces. Must be in
998the range of 64-9000. The default is 9000.
999
1000.. code-block:: console
1001
1002 default-mtu 1500
1003
John DeNisco4f859682019-12-10 14:25:50 -05001004heapsize Section
1005-----------------
John DeNisco06dcd452018-07-26 12:45:10 -04001006
1007Heapsize configuration controls the size of the main heap. The heap size is
1008configured very early in the boot sequence, before loading plug-ins or doing
1009much of anything else.
1010
John DeNisco4f859682019-12-10 14:25:50 -05001011heapsize <n>M | <n>G
1012^^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001013
Dave Barach2fef3df2020-02-21 17:31:17 -05001014Specifies the size of the heap in MB or GB. The default is 1GB.
John DeNisco06dcd452018-07-26 12:45:10 -04001015
John DeNisco4f859682019-12-10 14:25:50 -05001016.. code-block:: console
1017
1018 heapsize 2G
1019
1020ip Section
1021----------
John DeNisco06dcd452018-07-26 12:45:10 -04001022
1023IPv4 heap configuration. he heap size is configured very early in the boot
1024sequence, before loading plug-ins or doing much of anything else.
1025
John DeNisco4f859682019-12-10 14:25:50 -05001026heap-size <n>G | <n>M | <n>K | <n>
1027^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001028
John DeNisco4f859682019-12-10 14:25:50 -05001029Set the IPv4 mtrie heap size, which is the amount of memory dedicated to
1030the destination IP lookup table. The input value can be set in GB, MB, KB
1031or bytes. The default value is 32MB.
John DeNisco06dcd452018-07-26 12:45:10 -04001032
John DeNisco4f859682019-12-10 14:25:50 -05001033.. code-block:: console
1034
1035 heap-size 64M
1036
1037ip6 Section
1038-----------
John DeNisco06dcd452018-07-26 12:45:10 -04001039
1040IPv6 heap configuration. he heap size is configured very early in the boot
1041sequence, before loading plug-ins or doing much of anything else.
1042
1043
John DeNisco4f859682019-12-10 14:25:50 -05001044heap-size <n>G | <n>M | <n>K | <n>
1045^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001046
John DeNisco4f859682019-12-10 14:25:50 -05001047Set the IPv6 forwarding table heap size. The input value can be set in GB,
1048MB, KB or bytes. The default value is 32MB.
John DeNisco06dcd452018-07-26 12:45:10 -04001049
John DeNisco4f859682019-12-10 14:25:50 -05001050.. code-block:: console
1051
1052 heap-size 64M
1053
1054hash-buckets <n>
1055^^^^^^^^^^^^^^^^
1056
1057Set the number of IPv6 forwarding table hash buckets. The default value is
105864K (65536).
1059
1060.. code-block:: console
1061
1062 hash-buckets 131072
1063
1064l2learn Section
1065---------------
John DeNisco06dcd452018-07-26 12:45:10 -04001066
1067Configure Layer 2 MAC Address learning parameters.
1068
John DeNisco4f859682019-12-10 14:25:50 -05001069limit <n>
1070^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001071
John DeNisco4f859682019-12-10 14:25:50 -05001072Configures the number of L2 (MAC) addresses in the L2 FIB at any one time,
1073which limits the size of the L2 FIB to <n> concurrent entries. Defaults to
10744M entries (4194304).
John DeNisco06dcd452018-07-26 12:45:10 -04001075
John DeNisco4f859682019-12-10 14:25:50 -05001076.. code-block:: console
1077
1078 limit 8388608
1079
1080l2tp Section
1081------------
John DeNisco06dcd452018-07-26 12:45:10 -04001082
1083IPv6 Layer 2 Tunnelling Protocol Version 3 (IPv6-L2TPv3) configuration controls
1084the method used to locate a specific IPv6-L2TPv3 tunnel. The following settings
1085are mutually exclusive:
1086
John DeNisco4f859682019-12-10 14:25:50 -05001087lookup-v6-src
1088^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001089
John DeNisco4f859682019-12-10 14:25:50 -05001090Lookup tunnel by IPv6 source address.
John DeNisco06dcd452018-07-26 12:45:10 -04001091
John DeNisco4f859682019-12-10 14:25:50 -05001092.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -04001093
John DeNisco4f859682019-12-10 14:25:50 -05001094 lookup-v6-src
John DeNisco06dcd452018-07-26 12:45:10 -04001095
John DeNisco4f859682019-12-10 14:25:50 -05001096lookup-v6-dst
1097^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001098
John DeNisco4f859682019-12-10 14:25:50 -05001099Lookup tunnel by IPv6 destination address.
John DeNisco06dcd452018-07-26 12:45:10 -04001100
John DeNisco4f859682019-12-10 14:25:50 -05001101.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -04001102
John DeNisco4f859682019-12-10 14:25:50 -05001103 lookup-v6-dst
1104
1105lookup-session-id
1106^^^^^^^^^^^^^^^^^
1107
1108Lookup tunnel by L2TPv3 session identifier.
1109
1110.. code-block:: console
1111
1112 lookup-session-id
1113
1114logging Section
1115---------------
1116
1117size <n>
1118^^^^^^^^
1119
1120Number of entries in the global logging buffer. Defaults to 512.
1121
1122.. code-block:: console
1123
1124 size 512
1125
1126nthrottle-time <n>
1127^^^^^^^^^^^^^^^^^^
1128
1129Set the global value for the time to wait (in seconds) before resuming
1130logging of a log subclass that exceeded the per-subclass message-per-second
1131threshold. Defaults to 3.
1132
1133.. code-block:: console
1134
1135 unthrottle-time 3
1136
1137default-log-level emerg|alert | crit | err | warn | notice | info | debug | disabled
1138^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1139
1140Set the default logging level of the system log. Defaults to notice.
1141
1142.. code-block:: console
1143
1144 default-log-level notice
1145
1146default-syslog-log-level emerg|alert | crit | err | warn | notice | info | debug | disabled
1147^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1148
1149Set the default logging level of the syslog target. Defaults to warning.
1150
1151.. code-block:: console
1152
1153 default-syslog-log-level warning
1154
1155mactime Section
1156---------------
1157
1158lookup-table-buckets <n>
1159^^^^^^^^^^^^^^^^^^^^^^^^
1160
1161Sets the number of hash buckets in the mactime bi-hash lookup table.
1162Defaults to 128 buckets.
1163
1164.. code-block:: console
1165
1166 lookup-table-buckets 128
1167
1168lookup-table-memory <n>G | <n>M | <n>K | <n>
1169^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1170
1171Sets the allocated memory size (in bytes) for the mactime bi-hash lookup table.
1172The input value can be set in GB, MB, KB or bytes. The default value is 262144
1173(256 << 10) bytes or roughly 256KB.
1174
1175.. code-block:: console
1176
1177 lookup-table-memory 300K
1178
1179timezone_offset <n>
1180^^^^^^^^^^^^^^^^^^^
1181
1182Sets the timezone offset from UTC. Defaults to an offset of -5 hours
1183from UTC (US EST / EDT.)
1184
1185.. code-block:: console
1186
1187 timezone_offset -5
John DeNisco06dcd452018-07-26 12:45:10 -04001188
1189"map" Parameters
John DeNisco4f859682019-12-10 14:25:50 -05001190----------------
John DeNisco06dcd452018-07-26 12:45:10 -04001191
John DeNisco4f859682019-12-10 14:25:50 -05001192customer edge
1193^^^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001194
John DeNisco4f859682019-12-10 14:25:50 -05001195Sets a boolean true to indicate that the MAP node is a Customer Edge (CE)
1196router. The boolean defaults to false, meaning the MAP node is not treated
1197as a CE router.
John DeNisco06dcd452018-07-26 12:45:10 -04001198
John DeNisco4f859682019-12-10 14:25:50 -05001199.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -04001200
John DeNisco4f859682019-12-10 14:25:50 -05001201 customer edge
John DeNisco06dcd452018-07-26 12:45:10 -04001202
John DeNisco4f859682019-12-10 14:25:50 -05001203nat Section
1204-----------
John DeNisco06dcd452018-07-26 12:45:10 -04001205
andrew9f0c0202018-08-14 09:35:42 -04001206These parameters change the configuration of the NAT (Network address translation)
1207plugin, such as how the NAT & NAT64 bi-hash tables are initialized, if the NAT is
1208endpoint dependent, or if the NAT is deterministic.
1209
1210For each NAT per thread data, the following 4 parameters change how certain
1211bi-hash tables are initialized.
1212
John DeNisco4f859682019-12-10 14:25:50 -05001213translation hash buckets <n>
1214^^^^^^^^^^^^^^^^^^^^^^^^^^^^
andrew9f0c0202018-08-14 09:35:42 -04001215
John DeNisco4f859682019-12-10 14:25:50 -05001216Sets the number of hash buckets in each of the two in/out NAT bi-hash lookup
1217tables. Defaults to 1024 buckets.
andrew9f0c0202018-08-14 09:35:42 -04001218
John DeNisco4f859682019-12-10 14:25:50 -05001219If the NAT is indicated to be endpoint dependent, which can be set with the
1220:ref:`endpoint-dependent parameter <endpointLabel>`, then this parameter sets
1221the number of hash buckets in each of the two endpoint dependent sessions
1222NAT bi-hash lookup tables.
1223
1224.. code-block:: console
1225
1226 translation hash buckets 1024
1227
1228translation hash memory <n>
1229^^^^^^^^^^^^^^^^^^^^^^^^^^^
1230
1231Sets the allocated memory size (in bytes) for each of the two in/out NAT
1232bi-hash tables. Defaults to 134217728 (128 << 20) bytes, which is roughly 128 MB.
1233
1234If the NAT is indicated to be endpoint dependent, which can be set with the
1235:ref:`endpoint-dependent parameter <endpointLabel>`, then this parameter sets the
1236allocated memory size for each of the two endpoint dependent sessions NAT bi-hash
1237lookup tables.
1238
1239.. code-block:: console
1240
1241 translation hash memory 134217728
1242
1243user hash buckets <n>
1244^^^^^^^^^^^^^^^^^^^^^
1245
1246Sets the number of hash buckets in the user bi-hash lookup table
1247(src address lookup for a user.) Defaults to 128 buckets.
1248
1249.. code-block:: console
1250
1251 user hash buckets 128
1252
1253user hash memory <n>
1254^^^^^^^^^^^^^^^^^^^^
1255
1256Sets the allocated memory size (in bytes) for the user bi-hash lookup table
1257(src address lookup for a user.) Defaults to 67108864 (64 << 20) bytes,
1258which is roughly 64 MB.
1259
1260.. code-block:: console
1261
1262 user hash memory 67108864
1263
1264max translations per user <n>
1265^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1266
1267Sets the maximum amount of dynamic and/or static NAT sessions each user can have.
1268Defaults to 100. When this limit is reached, the least recently used translation
1269is recycled.
1270
1271.. code-block:: console
1272
1273 max translations per user 50
1274
1275deterministic
1276^^^^^^^^^^^^^
1277
1278Sets a boolean value to 1 indicating that the NAT is deterministic. Defaults to 0,
1279meaning the NAT is not deterministic.
1280
1281.. code-block:: console
1282
1283 deterministic
1284
1285nat64 bib hash buckets <n>
Jieqiang Wangaffa0552019-10-22 20:09:16 +08001286^^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco4f859682019-12-10 14:25:50 -05001287
1288Sets the number of hash buckets in each of the two in/out NAT64 BIB bi-hash
1289tables. Defaults to 1024 buckets.
1290
1291.. code-block:: console
1292
1293 nat64 bib hash buckets 1024
1294
1295nat64 bib hash memory <n>
Jieqiang Wangaffa0552019-10-22 20:09:16 +08001296^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco4f859682019-12-10 14:25:50 -05001297
1298Sets the allocated memory size (in bytes) for each of the two in/out NAT64
1299BIB bi-hash tables. Defaults to 134217728 (128 << 20) bytes,
1300which is roughly 128 MB.
1301
1302.. code-block:: console
1303
1304 nat64 bib hash memory 134217728
1305
1306nat64 st hash buckets <n>
Jieqiang Wangaffa0552019-10-22 20:09:16 +08001307^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco4f859682019-12-10 14:25:50 -05001308
1309Sets the number of hash buckets in each of the two in/out NAT64 session table
1310bi-hash tables. Defaults to 2048 buckets.
1311
1312.. code-block:: console
1313
1314 nat64 st hash buckets 2048
1315
1316nat64 st hash memory <n>
Jieqiang Wangaffa0552019-10-22 20:09:16 +08001317^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco4f859682019-12-10 14:25:50 -05001318
1319Sets the allocated memory size (in bytes) for each of the two in/out NAT64 session
1320table bi-hash tables. Defaults to 268435456 (256 << 20) bytes, which is roughly
1321256 MB.
1322
1323.. code-block:: console
1324
1325 nat64 st hash memory 268435456
1326
andrew9f0c0202018-08-14 09:35:42 -04001327.. _endpointLabel:
1328
John DeNisco4f859682019-12-10 14:25:50 -05001329endpoint-dependent
1330^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001331
John DeNisco4f859682019-12-10 14:25:50 -05001332Sets a boolean value to 1, indicating that the NAT is endpoint dependent.
1333Defaults to 0, meaning the NAT is not endpoint dependent.
John DeNisco06dcd452018-07-26 12:45:10 -04001334
John DeNisco4f859682019-12-10 14:25:50 -05001335.. code-block:: console
1336
1337 endpoint-dependent
1338
1339oam Section
1340-----------
John DeNisco06dcd452018-07-26 12:45:10 -04001341
1342OAM configuration controls the (ip4-icmp) interval, and number of misses
1343allowed before reporting an oam target down to any registered listener.
1344
John DeNisco4f859682019-12-10 14:25:50 -05001345interval <n.n>
1346^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001347
John DeNisco4f859682019-12-10 14:25:50 -05001348Interval, floating-point seconds, between sending OAM IPv4 ICMP messages.
1349Default is 2.04 seconds.
John DeNisco06dcd452018-07-26 12:45:10 -04001350
John DeNisco4f859682019-12-10 14:25:50 -05001351.. code-block:: console
andrew9f0c0202018-08-14 09:35:42 -04001352
John DeNisco4f859682019-12-10 14:25:50 -05001353 interval 3.5
John DeNisco06dcd452018-07-26 12:45:10 -04001354
Jieqiang Wangaffa0552019-10-22 20:09:16 +08001355physmem Section
1356---------------
1357
1358Configuration parameters used to specify base address and maximum size of
1359the memory allocated for the pmalloc module in VPP. pmalloc is a NUMA-aware,
1360growable physical memory allocator. pmalloc allocates memory for the DPDK
1361memory pool.
1362
1363base-addr <address>
1364^^^^^^^^^^^^^^^^^^^
1365
1366Specify the base address for pmalloc memory space.
1367
1368.. code-block:: console
1369
1370 base-addr 0xfffe00000000
1371
1372max-size <n>G | <n>M | <n>K | <n>
1373^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1374
1375Set the memory size for pmalloc memory space. The default is 16G.
1376
1377.. code-block:: console
1378
1379 max-size 4G
1380
John DeNisco4f859682019-12-10 14:25:50 -05001381tapcli Section
1382--------------
John DeNisco06dcd452018-07-26 12:45:10 -04001383
andrew9f0c0202018-08-14 09:35:42 -04001384Configuration parameters for TAPCLI (dynamic tap interface hookup.)
1385
John DeNisco4f859682019-12-10 14:25:50 -05001386mtu <n>
1387^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001388
John DeNisco4f859682019-12-10 14:25:50 -05001389Sets interface MTU (maximum transmission unit) size in bytes. This size
1390is also related to the number of MTU buffers. Defaults to 1500 bytes.
John DeNisco06dcd452018-07-26 12:45:10 -04001391
John DeNisco4f859682019-12-10 14:25:50 -05001392.. code-block:: console
1393
1394 mtu 1500
1395
1396disable
1397^^^^^^^
1398
1399Disables TAPCLI. Default is that TAPCLI is enabled.
1400
1401.. code-block:: console
1402
1403 disable
1404
1405
1406tcp Section
1407-----------
John DeNisco06dcd452018-07-26 12:45:10 -04001408
andrew9f0c0202018-08-14 09:35:42 -04001409Configuration parameters for TCP host stack utilities. The following
1410preallocation parameters are related to the initialization of fixed-size,
1411preallocation pools.
1412
John DeNisco4f859682019-12-10 14:25:50 -05001413preallocated-connections <n>
1414^^^^^^^^^^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001415
John DeNisco4f859682019-12-10 14:25:50 -05001416Sets the number of preallocated TCP connections. Defaults to 0.
1417The preallocated connections per thread is related to this value,
1418equal to (preallocated_connections / (num_threads - 1)).
John DeNisco06dcd452018-07-26 12:45:10 -04001419
John DeNisco4f859682019-12-10 14:25:50 -05001420.. code-block:: console
1421
1422 preallocated-connections 5
1423
1424preallocated-half-open-connections <n>
1425^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1426
1427Sets the number of preallocated TCP half-open connections. Defaults to 0.
1428
1429.. code-block:: console
1430
1431 preallocated-half-open-connections 5
1432
1433buffer-fail-fraction <n.n>
1434^^^^^^^^^^^^^^^^^^^^^^^^^^
1435
1436Sets the TCP buffer fail fraction (a float) used for fault-injection
1437when debugging TCP buffer allocation. Its use is found in *tcp_debug.h*.
1438Defaults to 0.0.
1439
1440.. code-block:: console
1441
1442 buffer-fail-fraction 0.0
1443
1444
1445tls Section
1446-----------
John DeNisco06dcd452018-07-26 12:45:10 -04001447
andrew9f0c0202018-08-14 09:35:42 -04001448Configures TLS parameters, such as enabling the use of test certificates.
1449These parameters affect the tlsmbedtls and tlsopenssl plugins.
1450
John DeNisco4f859682019-12-10 14:25:50 -05001451use-test-cert-in-ca
1452^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001453
John DeNisco4f859682019-12-10 14:25:50 -05001454Sets a boolean value to 1 to indicate during the initialization of a
1455TLS CA chain to attempt to parse and add test certificates to the chain.
1456Defaults to 0, meaning test certificates are not used.
John DeNisco06dcd452018-07-26 12:45:10 -04001457
John DeNisco4f859682019-12-10 14:25:50 -05001458.. code-block:: console
1459
1460 use-test-cert-in-ca
1461
1462ca-cert-path <filename>
1463^^^^^^^^^^^^^^^^^^^^^^^
1464
1465Sets the filename path of the location of TLS CA certificates, used when
1466initializing and loading TLS CA certificates during the initialization
1467of a TLS CA chain. If not set, the default filename path is
1468*/etc/ssl/certs/ca-certificates.crt*.
1469
1470.. code-block:: console
1471
1472 ca-cert-path /etc/ssl/certs/ca-certificates.crt
1473
1474
1475tuntap Section
1476--------------
John DeNisco06dcd452018-07-26 12:45:10 -04001477
1478The "tuntap" driver configures a point-to-point interface between the vpp
1479engine and the local Linux kernel stack. This allows e.g. users to ssh to the
1480host | VM | container via vpp "revenue" interfaces. It's marginally useful, and
1481is currently disabled by default. To [dynamically] create TAP interfaces - the
1482preferred scheme - see the "tap_connect" binary API. The Linux network stack
1483"vnet" interface needs to manually configure, and VLAN and other settings if
1484desired.
1485
John DeNisco06dcd452018-07-26 12:45:10 -04001486
John DeNisco4f859682019-12-10 14:25:50 -05001487enable|disable
1488^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001489
John DeNisco4f859682019-12-10 14:25:50 -05001490Enable or disable the tun/tap driver.
John DeNisco06dcd452018-07-26 12:45:10 -04001491
John DeNisco4f859682019-12-10 14:25:50 -05001492.. code-block:: console
John DeNisco06dcd452018-07-26 12:45:10 -04001493
John DeNisco4f859682019-12-10 14:25:50 -05001494 enable
1495
1496ethernet|ether
1497^^^^^^^^^^^^^^
1498
1499Create a tap device (ethernet MAC) instead of a tun device (point-to-point
1500tunnel). The two keywords are aliases for the same function.
1501
1502.. code-block:: console
1503
1504 ethernet
1505
1506have-normal-interface|have-normal
1507^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1508
1509Treat the host Linux stack as a routing peer instead of programming VPP
1510interface L3 addresses onto the tun/tap devices. The two keywords are
1511aliases for the same function.
1512
1513.. code-block:: console
1514
1515 have-normal-interface
1516
1517name <name>
1518^^^^^^^^^^^
1519
1520Assign name to the tun/tap device.
1521
1522.. code-block:: console
1523
1524 name vpp1
1525
1526
1527vhost-user Section
1528------------------
John DeNisco06dcd452018-07-26 12:45:10 -04001529
1530Vhost-user configuration parameters control the vhost-user driver.
1531
John DeNisco4f859682019-12-10 14:25:50 -05001532coalesce-frames <n>
1533^^^^^^^^^^^^^^^^^^^
John DeNisco06dcd452018-07-26 12:45:10 -04001534
John DeNisco4f859682019-12-10 14:25:50 -05001535Subject to deadline-timer expiration - see next item - attempt to transmit
1536at least <n> packet frames. Default is 32 frames.
John DeNisco06dcd452018-07-26 12:45:10 -04001537
John DeNisco4f859682019-12-10 14:25:50 -05001538.. code-block:: console
1539
1540 coalesce-frames 64
1541
1542coalesce-time <seconds>
1543^^^^^^^^^^^^^^^^^^^^^^^
1544
1545Hold packets no longer than (floating-point) seconds before transmitting
1546them. Default is 0.001 seconds
1547
1548.. code-block:: console
1549
1550 coalesce-time 0.002
1551
1552dont-dump-memory
1553^^^^^^^^^^^^^^^^
1554
1555vhost-user shared-memory segments can add up to a large amount of memory, so
1556it's handy to avoid adding them to corefiles when using a significant number
1557of such interfaces.
1558
1559.. code-block:: console
1560
1561 dont-dump-memory
1562
1563
1564vlib Section
1565------------
John DeNisco06dcd452018-07-26 12:45:10 -04001566
andrew9f0c0202018-08-14 09:35:42 -04001567These parameters configure VLIB, such as allowing you to choose whether to
1568enable memory traceback or a post-mortem elog dump.
1569
John DeNisco4f859682019-12-10 14:25:50 -05001570memory-trace
1571^^^^^^^^^^^^
1572
1573Enables memory trace (mheap traceback.) Defaults to 0, meaning memory
1574trace is disabled.
1575
1576.. code-block:: console
1577
1578 memory-trace
1579
1580elog-events <n>
1581^^^^^^^^^^^^^^^
1582
1583Sets the number of elements/events (the size) of the event ring
1584(a circular buffer of events.) This number rounds to a power of 2.
1585Defaults to 131072 (128 << 10) elements.
1586
1587.. code-block:: console
1588
1589 elog-events 4096
1590
1591elog-post-mortem-dump
1592^^^^^^^^^^^^^^^^^^^^^
1593
1594Enables the attempt of a post-mortem elog dump to
1595*/tmp/elog_post_mortem.<PID_OF_CALLING_PROCESS>* if os_panic or
1596os_exit is called.
1597
1598.. code-block:: console
1599
1600 elog-post-mortem-dump