Service stitching – ELAN services

Service stitching algorithm for Elan services 

The following are the service stitching algorithm for Elan services with their stitching criteria:

Algorithm

Stitching Criteria

route-target 

sites must have inverse matching route-target values

service-name 

matching service-name

evi 

sites must have matching evi values and inverse matching local/remote ac values

vcid 

site's tunnel binding must have matching vcid

Service stitching with service-name algorithm
 

Stitch the Elan service created on MD NE using the following API.

POST: (https://{{server}}/restconf/data/nsp-service-intent:stitchservices)

BODY:

    { 
       "input":{ 
       "service-type":"elan", 
       "algorithm":"service-name",
       "sites":["92.168.96.190","92.168.96.46"]
       }
    }

RESPONSE:

    { 
       "response": { 
          "status": 0, 
          "startRow": 0, 
          "endRow": 0, 
          "totalRows": 1, 
          "data": "Successfully submitted to Job Manager for Service Stitch processing with Job Name: elan_service-name-1727419509598", 
          "errors": null 
       } 
    } 

Ensure the service gets listed in the NSP Service Management in 'Unknown' state.

End of steps

Service stitching with evi algorithm
 

Stitch the Elan service created on MD NE using the following API:

POST: (https://{{server}}/restconf/data/nsp-service-intent:stitchservices)

BODY:

    { 
       "input":{ 
       "service-type":"elan", 
       "algorithm":"evi",
       "sites":["92.168.96.190","92.168.96.46"]
       }
    }

RESPONSE:

    { 
       "response": { 
          "status": 0, 
          "startRow": 0, 
          "endRow": 0, 
          "totalRows": 1, 
          "data": "Successfully submitted to Job Manager for Service Stitch processing with Job Name: elan_evi-1728379514781" 
          "errors": null 
       } 
    } 

Ensure the service gets listed in the NSP Service Management in 'Unknown' state.

End of steps