diff options
author | Neale Ranns <nranns@cisco.com> | 2020-01-03 00:16:12 +0000 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-01-03 04:40:40 +0000 |
commit | c9e4b3000ee25722281d9bb2222dbb26d2b47ec6 (patch) | |
tree | e4baf4f5a1d6855caf98830b7f4e6dc93de7c854 /src/vnet | |
parent | 3ff2ae24caa84ef8d0368b45dc21f04e72a7a247 (diff) |
fib: add adjacency feature.yaml
Type: docs
Change-Id: I6cdfbae5a0eab8a69dfa2ae054945c510a3c63f6
Signed-off-by: Neale Ranns <nranns@cisco.com>
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/adj/FEATURE.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/vnet/adj/FEATURE.yaml b/src/vnet/adj/FEATURE.yaml new file mode 100644 index 00000000000..95e916402e7 --- /dev/null +++ b/src/vnet/adj/FEATURE.yaml @@ -0,0 +1,24 @@ +--- +name: Adjacency +maintainer: Neale Ranns <nranns@cisco.com> +features: + - An adjacency represents how to send different traffic types to a peer + - The principles properties of an adjacency are the interface and rewrite. + The rewrite will be prepended to the packet as it is forward through the + interface. + - The rewrite is provided either by the interface type. It can be constructed + either from fixed interface properties (i.e. src,dst IP address on a P2P + tunnel) or from a resolution protocol (like ARP on an Ethernet link). + - An Adjacency is said to be complete when the rewrite is present and + incomplete when it is not, + - An adjacency that is a leaf in the DPO graph is terminal/normal (i.e on + a physical interface). When not terminal it is termed a midchain (i.e. + one on a virtual interface, e.g. GRE tunnel). Midchain adjacencies can be + stacked/joined onto the the DPO graph that described subsequent forwarding + (i.e. how to send the the GRE tunnel's destination address). + - Glean adjacencies describe how to broadcast packets onto a subnet + + +description: "Adjacency" +state: production +properties: [API, CLI, MULTITHREAD] |