blob: 57242d18f87da3d9f04d8afc63166a823e0de4a4 [file] [log] [blame]
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +02001Setting Up a Node with Multiple NICs
2====================================
3
4- First, configure hardware interfaces in the VPP startup config, as
5 described
6 `here <https://github.com/contiv/vpp/blob/master/docs/VPP_CONFIG.md#multi-nic-configuration>`__.
7
8- For each interface owned by Linux, you need to provide individual
9 configuration for each interface used by VPP in the Node
10 Configuration for the node in the ``contiv-vpp.yaml``. For example,
11 if both ``ens3`` and ``ens4`` are known to Linux, then put the
12 following stanza into the nodes NodeConfig:
13
14::
15
16 ...
17 NodeConfig:
18 - NodeName: "ubuntu-1"
19 StealInterface: "ens3"
20 StealInterface: "ens4"
21 ...
22
23If only ``ens3`` is known to Linux, you only put a line for ``ens3``
24into the above NodeConfig.