diff options
author | Scott Keeler <skeeler@cisco.com> | 2018-10-01 14:50:57 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-10-05 13:47:42 +0000 |
commit | 25c4d396eae99e23c4ebe7155fde7700dd1130b9 (patch) | |
tree | 2cd3661e26e37cf3e04327559479bc6ce0c9a752 /docs/usecases/contiv/MULTI_NIC_SETUP.md | |
parent | 2d24cd027275905f308f75bf45d0f9d163f2235b (diff) |
docs: add contiv vpp
Change-Id: I92227fc4968fc6a478beb7f38707b91e9f0635ec
Signed-off-by: Scott Keeler <skeeler@cisco.com>
Diffstat (limited to 'docs/usecases/contiv/MULTI_NIC_SETUP.md')
-rw-r--r-- | docs/usecases/contiv/MULTI_NIC_SETUP.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/usecases/contiv/MULTI_NIC_SETUP.md b/docs/usecases/contiv/MULTI_NIC_SETUP.md new file mode 100644 index 00000000000..5cbb031d290 --- /dev/null +++ b/docs/usecases/contiv/MULTI_NIC_SETUP.md @@ -0,0 +1,21 @@ +### Setting Up a Node with Multiple NICs + +* First, configure hardware interfaces in the VPP startup config, as +described [here](https://github.com/contiv/vpp/blob/master/docs/VPP_CONFIG.md#multi-nic-configuration). + +* For each interface owned by Linux, you need to provide individual + configuration for each interface used by VPP in the Node Configuration + for thenode in the `contiv-vpp.yaml`. For example, if both `ens3` and + `ens4` are known to Linux, then put the following stanza into the node's + NodeConfig: +``` +... + NodeConfig: + - NodeName: "ubuntu-1" + StealInterface: "ens3" + StealInterface: "ens4" +... +``` + If only `ens3` is known to Linux, you only put a line for `ens3` into the + above NodeConfig. + |