dpdk: remove vlan-strip offload code
[vpp.git] / src / vpp / conf / startup.conf
1
2 unix {
3   nodaemon
4   log /var/log/vpp/vpp.log
5   full-coredump
6   cli-listen /run/vpp/cli.sock
7   gid vpp
8
9   ## run vpp in the interactive mode
10   # interactive
11
12   ## do not use colors in terminal output
13   # nocolor
14
15   ## do not display banner
16   # nobanner
17 }
18
19 api-trace {
20 ## This stanza controls binary API tracing. Unless there is a very strong reason,
21 ## please leave this feature enabled.
22   on
23 ## Additional parameters:
24 ##
25 ## To set the number of binary API trace records in the circular buffer, configure nitems
26 ##
27 ## nitems <nnn>
28 ##
29 ## To save the api message table decode tables, configure a filename. Results in /tmp/<filename>
30 ## Very handy for understanding api message changes between versions, identifying missing
31 ## plugins, and so forth.
32 ##
33 ## save-api-table <filename>
34 }
35
36 api-segment {
37   gid vpp
38 }
39
40 socksvr {
41   default
42 }
43
44 # memory {
45         ## Set the main heap size, default is 1G
46         # main-heap-size 2G
47
48         ## Set the main heap page size. Default page size is OS default page
49         ## which is in most cases 4K. if different page size is specified VPP
50         ## will try to allocate main heap by using specified page size.
51         ## special keyword 'default-hugepage' will use system default hugepage
52         ## size
53         # main-heap-page-size 1G
54         ## Set the default huge page size.
55         # default-hugepage-size 1G
56 #}
57
58 cpu {
59         ## In the VPP there is one main thread and optionally the user can create worker(s)
60         ## The main thread and worker thread(s) can be pinned to CPU core(s) manually or automatically
61
62         ## Manual pinning of thread(s) to CPU core(s)
63
64         ## Set logical CPU core where main thread runs, if main core is not set
65         ## VPP will use core 1 if available
66         # main-core 1
67
68         ## Set logical CPU core(s) where worker threads are running
69         # corelist-workers 2-3,18-19
70
71         ## Automatic pinning of thread(s) to CPU core(s)
72
73         ## Sets number of CPU core(s) to be skipped (1 ... N-1)
74         ## Skipped CPU core(s) are not used for pinning main thread and working thread(s).
75         ## The main thread is automatically pinned to the first available CPU core and worker(s)
76         ## are pinned to next free CPU core(s) after core assigned to main thread
77         # skip-cores 4
78
79         ## Specify a number of workers to be created
80         ## Workers are pinned to N consecutive CPU cores while skipping "skip-cores" CPU core(s)
81         ## and main thread's CPU core
82         # workers 2
83
84         ## Set scheduling policy and priority of main and worker threads
85
86         ## Scheduling policy options are: other (SCHED_OTHER), batch (SCHED_BATCH)
87         ## idle (SCHED_IDLE), fifo (SCHED_FIFO), rr (SCHED_RR)
88         # scheduler-policy fifo
89
90         ## Scheduling priority is used only for "real-time policies (fifo and rr),
91         ## and has to be in the range of priorities supported for a particular policy
92         # scheduler-priority 50
93 }
94
95 # buffers {
96         ## Increase number of buffers allocated, needed only in scenarios with
97         ## large number of interfaces and worker threads. Value is per numa node.
98         ## Default is 16384 (8192 if running unpriviledged)
99         # buffers-per-numa 128000
100
101         ## Size of buffer data area
102         ## Default is 2048
103         # default data-size 2048
104
105         ## Size of the memory pages allocated for buffer data
106         ## Default will try 'default-hugepage' then 'default'
107         ## you can also pass a size in K/M/G e.g. '8M'
108         # page-size default-hugepage
109 # }
110
111 # dpdk {
112         ## Change default settings for all interfaces
113         # dev default {
114                 ## Number of receive queues, enables RSS
115                 ## Default is 1
116                 # num-rx-queues 3
117
118                 ## Number of transmit queues, Default is equal
119                 ## to number of worker threads or 1 if no workers treads
120                 # num-tx-queues 3
121
122                 ## Number of descriptors in transmit and receive rings
123                 ## increasing or reducing number can impact performance
124                 ## Default is 1024 for both rx and tx
125                 # num-rx-desc 512
126                 # num-tx-desc 512
127
128                 ## TCP Segment Offload
129                 ## Default is off
130                 ## To enable TSO, 'enable-tcp-udp-checksum' must be set
131                 # tso on
132
133                 ## Devargs
134                 ## device specific init args
135                 ## Default is NULL
136                 # devargs safe-mode-support=1,pipeline-mode-support=1
137
138                 ## rss-queues
139                 ## set valid rss steering queues
140                 # rss-queues 0,2,5-7
141         # }
142
143         ## Whitelist specific interface by specifying PCI address
144         # dev 0000:02:00.0
145
146         ## Blacklist specific device type by specifying PCI vendor:device
147         ## Whitelist entries take precedence
148         # blacklist 8086:10fb
149
150         ## Set interface name
151         # dev 0000:02:00.1 {
152         #       name eth0
153         # }
154
155         ## Whitelist specific interface by specifying PCI address and in
156         ## addition specify custom parameters for this interface
157         # dev 0000:02:00.1 {
158         #       num-rx-queues 2
159         # }
160
161         ## Change UIO driver used by VPP, Options are: igb_uio, vfio-pci,
162         ## uio_pci_generic or auto (default)
163         # uio-driver vfio-pci
164
165         ## Disable multi-segment buffers, improves performance but
166         ## disables Jumbo MTU support
167         # no-multi-seg
168
169         ## Change hugepages allocation per-socket, needed only if there is need for
170         ## larger number of mbufs. Default is 256M on each detected CPU socket
171         # socket-mem 2048,2048
172
173         ## Disables UDP / TCP TX checksum offload. Typically needed for use
174         ## faster vector PMDs (together with no-multi-seg)
175         # no-tx-checksum-offload
176
177         ## Enable UDP / TCP TX checksum offload
178         ## This is the reversed option of 'no-tx-checksum-offload'
179         # enable-tcp-udp-checksum
180
181         ## Enable/Disable AVX-512 vPMDs
182         # max-simd-bitwidth <256|512>
183 # }
184
185 ## node variant defaults
186 #node {
187
188 ## specify the preferred default variant
189 #       default { variant avx512 }
190
191 ## specify the preferred variant, for a given node
192 #       ip4-rewrite { variant avx2 }
193
194 #}
195
196
197 # plugins {
198         ## Adjusting the plugin path depending on where the VPP plugins are
199         #       path /ws/vpp/build-root/install-vpp-native/vpp/lib/vpp_plugins
200         ## Add additional directory to the plugin path
201         #       add-path /tmp/vpp_plugins
202
203         ## Disable all plugins by default and then selectively enable specific plugins
204         # plugin default { disable }
205         # plugin dpdk_plugin.so { enable }
206         # plugin acl_plugin.so { enable }
207
208         ## Enable all plugins by default and then selectively disable specific plugins
209         # plugin dpdk_plugin.so { disable }
210         # plugin acl_plugin.so { disable }
211 # }
212
213 ## Statistics Segment
214 # statseg {
215     # socket-name <filename>, name of the stats segment socket
216     #     defaults to /run/vpp/stats.sock
217     # size <nnn>[KMG], size of the stats segment, defaults to 32mb
218     # page-size <nnn>, page size, ie. 2m, defaults to 4k
219     # per-node-counters on | off, defaults to none
220     # update-interval <f64-seconds>, sets the segment scrape / update interval
221 # }
222
223 ## L2 FIB
224 # l2fib {
225     ## l2fib hash table size.
226     #  table-size 512M
227
228     ## l2fib hash table number of buckets. Must be power of 2.
229     #  num-buckets 524288
230 # }
231
232 ## ipsec
233 # {
234    # ip4 {
235    ## ipsec for ipv4 tunnel lookup hash number of buckets.
236    #  num-buckets 524288
237    # }
238    # ip6 {
239    ## ipsec for ipv6 tunnel lookup hash number of buckets.
240    #  num-buckets 524288
241    # }
242 # }
243
244 # logging {
245    ## set default logging level for logging buffer
246    ## logging levels: emerg, alert,crit, error, warn, notice, info, debug, disabled
247    # default-log-level debug
248    ## set default logging level for syslog or stderr output
249    # default-syslog-log-level info
250    ## Set per-class configuration
251    # class dpdk/cryptodev { rate-limit 100 level debug syslog-level error }
252 # }