Get to Know Service Layer API
Service Layer API is a model-driven API over Google-defined remote procedure call (gRPC).
gRPC enables you to bring your applications, routing protocols, controllers in a rich set of languages including C++, Python, GO, and many more.
Service Layer API is available out of the box and no extra packages required.
In IOS XR, routing protocols use RIB, the MPLS label manager, BFD, and other modules, to program the forwarding plane. You can expose these protocols through the service layer API.
Benefits
The Service Layer API gives direct access to the Network Infrastructure Layer (Service-Adaptation Layer). Therefore, you have the following advantages:
-
High Performance: Direct access to the Network Infrastructure Layer, without going through a Network state database, results in higher performance than equivalent Management APIs
For example, Batch updates straight to the RIB, Label Switch Database (over gRPC)
-
Flexibility: The Service Layer API gives you the flexibility to bring your Protocol or Controller over gRPC.
-
Offload low-level tasks to IOS XR: IOS XR infrastructure layer handles the following. Hence, you can focus on higher-layer protocols and controller logic:
-
Conflict resolution
-
Transactional notifications
-
Data plane abstraction
-
Components of Service Layer API
The following are the components of the Service Layer API architecture:
-
Functionality Verticals/Domains: The verticals define the broader capability categories supported by the API. The following are the supported verticals. Each vertical supports data structure and RPCs defined in gpb
-
Initialization: Handles global initialization, sets up an event notification channel using GRPC streaming capabilities.
The initialization RPCs are mandatory. Use the initialization RPCs to connect a client to the gRPC server on the router. Also, to send heartbeats and termination requests from the server to the client.
-
IPv4, IPv6 Route (RIB): Handles route manipulations (add, update, delete) for a certain VRF.
-
MPLS: Handles allocation of label blocks and any incoming MPLS label mapping to a forwarding function.
-
Interface: Handles subscription of the registered clients to the interface state event notifications.
-
IPv4, IPv6 BFD: Manages BFD sessions, and corresponding BFD session state notifications.
-
-
Protobuf Schema/Model: Use any potential modeling technique to model the service layer API. Currently, we use the GPB protobuf IDL.
-
gRPC: gRPC utilizes GPB protobuf IDL by default to convert the models into bindings in various languages (c++, python, golang, and more). The gRPC server (running on the router) and the gRPC client use the generated bindings to serialize data and encode or decode the request or response between the server and the client.
-
Service Layer gRPC clients: Based on the business needs, the gRPC clients for service layer can exist in one of the following ways:
-
On-box (agents/protocol-stacks running natively or in containers)
-
Off-box (within Controllers or other open-source tools)
-
Bring your controller
To bring your controller on IOS XR, first, enable the service layer on the router and then write your Service Layer Client API.