aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/design/architecture.rst
blob: 6018370208c93afea86291c30b714088ec86c835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0

Architecture
------------

This section describes the architectural approach to incorporating the upstream
OpenDaylight (ODL) SFC project into the OPNFV Danube platform.

Service Functions
+++++++++++++++++

A Service Function (SF) is a Function that provides services to flows traversing
a Service Chain. Examples of typical SFs include: Firewall, NAT, QoS, and DPI.
In the context of OPNFV, the SF will be a Virtual Network Function. The SFs
receive data packets from a Service Function Forwarder.

Service Function Forwarders
+++++++++++++++++++++++++++

The Service Function Forwarder (SFF) is the core element used in Service
Chaining. It is an OpenFlow switch that, in the context of OPNFV, is hosted
in an OVS bridge. In OPNFV there will be one SFF per Compute Node that will
be hosted in the "br-int" OpenStack OVS bridge.

The responsibility of the SFF is to steer incoming packets to the corresponding
Service Function, or to the SFF in the next compute node. The flows in the SFF
are programmed by the OpenDaylight SFC SDN Controller.

Service Chains
++++++++++++++

Service Chains are defined in the OpenDaylight SFC Controller using the
following constructs:

SFC
  A Service Function Chain (SFC) is an ordered list of abstract SF types.

SFP
  A Service Function Path (SFP) references an SFC, and optionally provides
  concrete information about the SFC, like concrete SF instances. If SF
  instances are not supplied, then the RSP will choose them.

RSP
  A Rendered Service Path (RSP) is the actual Service Chain. An RSP references
  an SFP, and effectively merges the information from the SFP and SFC to create
  the Service Chain. If concrete SF details were not provided in the SFP, then
  SF selection algorithms are used to choose one. When the RSP is created, the
  OpenFlows will be programmed and written to the SFF(s).

Service Chaining Encapsulation
++++++++++++++++++++++++++++++

Service Chaining Encapsulation encapsulates traffic sent through the Service
Chaining domain to facilitate easier steering of packets through Service Chains.
If no Service Chaining Encapsulation is used, then packets much be classified
at every hop of the chain, which would be slow and would not scale well.

In ODL SFC, Network Service Headers (NSH) is used for Service Chaining
encapsulation. NSH is an IETF specification that uses 2 main header
fields to facilitate packet steering, namely:

NSP (NSH Path)
  The NSP is the Service Path ID.

NSI (NSH Index)
  The NSI is the Hop in the Service Chain. The NSI starts at 255 and is
  decremented by every SF. If the NSI reaches 0, then the packet is dropped,
  which avoids loops.

NSH also has metadata fields, but that's beyond the scope of this architecture.

In ODL SFC, NSH packets are encapsulated in VXLAN-GPE.

Classifiers
+++++++++++

A classifier is the entry point into Service Chaining. The role of the
classifier is to map incoming traffic to Service Chains. In ODL SFC, this
mapping is performed by matching the packets and encapsulating the packets in
a VXLAN-GPE NSH tunnel.

The packet matching is specific to the classifier implementation, but can be
as simple as an ACL, or can be more complex by using PCRF information or DPI.

VNF Manager
+++++++++++

In OPNFV SFC, a VNF Manager is needed to spin-up VMs for Service Functions.
It has been decided to use the OpenStack Tacker VNF Mgr to spin-up and manage
the life cycle of the SFs. Tacker will receive the ODL SFC configuration,
manage the SF VMs, and forward the configuration to ODL SFC. The following
sequence diagram details the interactions with the VNF Mgr:

.. image:: ./images/OPNFV_SFC_Brahmaputra_SfCreation.jpg

OPNFV SFC Network Topology
++++++++++++++++++++++++++

The following image details the Network Topology used in OPNFV Danube SFC:

.. image:: ./images/OPNFV_SFC_Brahmaputra_NW_Topology.jpg