papi: fix ubuntu 1804 make test socket.close error
[vpp.git] / docs / gettingstarted / users / configuring / startup.rst
index 51a22f0..e594b6a 100644 (file)
@@ -123,6 +123,18 @@ applications from a process monitor. Set by default in the default
 
    nodaemon
 
+nosyslog
+^^^^^^^^
+
+Disable syslog and log errors to stderr instead. Typical when invoking
+VPP applications from a process monitor like runit or daemontools that
+pipe service's output to a dedicated log service, which will typically
+attach a timestamp and rotate the logs as necessary.
+
+.. code-block:: console
+
+   nosyslog
+
 interactive
 ^^^^^^^^^^^
 
@@ -567,6 +579,7 @@ The buffers Section
    buffers {
       buffers-per-numa 128000
       default data-size 2048
+      page-size default-hugepage
    }
 
 buffers-per-numa number
@@ -589,6 +602,19 @@ Size of buffer data area, default is 2048
 
    default data-size 2048
 
+page-size number
+^^^^^^^^^^^^^^^^
+
+Set the page size for buffer allocation
+
+.. code-block:: console
+
+   page-size 4K
+   page-size 2M
+   page-size 1G
+   page-size default
+   page-size default-hugepage
+
 
 The dpdk Section
 ----------------
@@ -618,7 +644,7 @@ string of the form "DDDD:BB:SS.F" where:
 * SS = Slot number
 * F = Function
 
-If the keywork **default** is used the values will apply to all the devices.
+If the keyword **default** is used the values will apply to all the devices.
 
 This is the same format used in the linux sysfs tree (i.e./sys/bus/pci/devices)
 for PCI device directory names.
@@ -672,7 +698,7 @@ Number of receive queues. Also enables RSS. Default value is 1.
 .. code-block:: console
 
    dev 0000:02:00.1 {
-      num-tx-queues <n>
+      num-rx-queues <n>
    }
 
 num-tx-queues <n>
@@ -1044,6 +1070,20 @@ a random, non-static entry is deleted. Defaults to 65535 entries.
 
    max-cache-size 65535
 
+
+ethernet Section
+-----------------
+
+default-mtu <n>
+^^^^^^^^^^^^^^^
+
+Specifies the default MTU size for Ethernet interfaces.  Must be in
+the range of 64-9000.  The default is 9000.
+
+.. code-block:: console
+
+   default-mtu 1500
+
 heapsize Section
 -----------------
 
@@ -1054,9 +1094,7 @@ much of anything else.
 heapsize <n>M | <n>G
 ^^^^^^^^^^^^^^^^^^^^
 
-Specifies the size of the heap in MB or GB. The default is 1GB. Setting the
-main heap size to 4GB or more requires recompilation of the entire system
-with CLIB_VEC64 > 0. See .../clib/clib/vec_bootstrap.h.
+Specifies the size of the heap in MB or GB. The default is 1GB.
 
 .. code-block:: console