docs: add contiv vpp
[vpp.git] / docs / usecases / contiv / MULTI_NIC_SETUP.md
1 ### Setting Up a Node with Multiple NICs
2
3 * First, configure hardware interfaces in the VPP startup config, as
4 described [here](https://github.com/contiv/vpp/blob/master/docs/VPP_CONFIG.md#multi-nic-configuration).
5
6 * For each interface owned by Linux, you need to provide individual
7   configuration for each interface used by VPP in the Node Configuration 
8   for thenode in the `contiv-vpp.yaml`. For example, if both `ens3` and
9   `ens4` are known to Linux, then put the following stanza into the node's
10   NodeConfig:
11 ```
12 ...
13     NodeConfig:
14     - NodeName: "ubuntu-1"
15       StealInterface: "ens3"
16       StealInterface: "ens4"
17 ...
18 ``` 
19   If only `ens3` is known to Linux, you only put a line for `ens3` into the 
20   above NodeConfig.
21