Nathan Skrzypczak | 9ad39c0 | 2021-08-19 11:38:06 +0200 | [diff] [blame] | 1 | Setting 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 node’s NodeConfig: |
| 13 | |
| 14 | :: |
| 15 | |
| 16 | ... |
| 17 | NodeConfig: |
| 18 | - NodeName: "ubuntu-1" |
| 19 | StealInterface: "ens3" |
| 20 | StealInterface: "ens4" |
| 21 | ... |
| 22 | |
| 23 | If only ``ens3`` is known to Linux, you only put a line for ``ens3`` |
| 24 | into the above NodeConfig. |