Optical transport service configuration
Workflow
The following workflow describes how to create an optical transport service.
1 |
Create an optical transport service. |
2 |
Create the A end optical service site. |
3 |
Create the termination point port. |
4 |
Create the Z end optical service site. |
5 |
Create the termination point port. Up to two sites can be selected for the creation of an optical transport service. The NFM-P names the sites as follows: A end and a Z end site. For separate requests, see Service configuration in General service configuration . Replace the service object with optical.TransportService, replace the site object with optical.ServiceSite, and replace the access interface object with optical.TerminationPoint. Use the proper distinguishedName for the object you are creating. |
Examples
The following example outlines what is required for an XML request to create an optical transport service, site, and termination point port in one request.
Optical transport service creation parameters
-
distinguishedName - svc-mgr. The FDN can be determined by looking at the Parent Hierarchy of the class to be created in the XML API Reference
-
childConfigInfo - creates and configures the following service parameters:
-
<subscriberPointer> - assigns a subscriber. See the Parent Hierarchy of the class subscr.Subscriber for the FDN.
-
<serviceId> - (optional) assigns a unique service ID. If the service ID is not specified, the NFM-P automatically assigns the ID.
<children-Set> - tag to enclose children objects
• Site object - optical.ServiceSite
• actionMask - specifies the create operation
• <siteId> - IP address of the NE
• <sitePosition> - indicates whether site is at the A end (from) or Z end (to) of the service
• <children-Set> - tag to enclose children objects
• Termination point object - optical.TerminationPoint
• actionMask - specifies the create operation
• <portPointer> - assigns a port. See the Parent Hierarchy of the port or channel object such as equipment.PhysicalPort for the FDN.
Figure 19-20: Optical transport service creation request example
<generic.GenericObject.configureChildInstance xmlns="xmlapi_1.0"> |
<deployer>immediate</deployer> |
<synchronousDeploy>true</synchronousDeploy> |
<distinguishedName>svc-mgr</distinguishedName> |
<childConfigInfo> |
<optical.TransportService> |
<actionMask> |
<bit>create</bit> |
</actionMask> |
<serviceId/> |
<subscriberPointer/> |
<rate/> |
<children-Set> |
<optical.ServiceSite> |
<actionMask> |
<bit>create</bit> |
</actionMask> |
<siteId/> |
<sitePosition/> |
<children-Set> |
<optical.TerminationPoint> |
<actionMask> |
<bit>create</bit> |
</actionMask> |
<portPointer/> |
</optical.TerminationPoint> |
</children-Set> |
</optical.ServiceSite> |
</children-Set> |
</optical.TransportService> |
</childConfigInfo> |
</generic.GenericObject.configureChildInstance> |