Okay, assuming we have ports, and a sdp that have been configured from the test before,
We're going to create a service for our first customer.
ME-TEST# configure service customer 12345 create --> in creating new customer, "create" must be used, and 12345 is the customer-id
ME-TEST>config>service>customer# description "Gigatech Corporate" --> the customer name
Now let's set ME-TEST2, copy the config you have on ME-TEST
ME-TEST2# configure service customer 12345 create
ME-TEST2>config>service>cust# description "Gigatech Corporate"
We're having our first customer on the new metro,
Now let's set the service for the customer.
ME-TEST# configure service epipe 190000001 customer 12345 create --> create service 190000001 for customer-id 12345, on my case, the customer I have set above
ME-TEST>config>service>epipe# description "GIGATECH CORP ME-TEST to ME-TEST2 VLAN 2500" --> the description
ME-TEST>config>service>epipe# service-mtu 1632 --> setting the MTU for the service
ME-TEST>config>service>epipe# sap 1/1/1:2500 create --> setting the port and allows it VLAN
ME-TEST>config>service>epipe>sap# no shutdown --> activate the sap on the service
ME-TEST>config>service>epipe>sap# exit
ME-TEST>config>service>epipe# spoke-sdp 2:190000001 --> 2 is the sdp-id and 190000001 is the vc-id
ME-TEST>config>service>epipe>spoke-sdp# no shutdown --> activate the sdp
ME-TEST>config>service>epipe>spoke-sdp# exit
ME-TEST>config>service>epipe# no shutdown --> activate the service
Now, we're having a new service, it should be looked like this.
ME-TEST# show service id 190000001 base
==================================================
Service Basic Information
==================================================
Service Id : 190000001 Vpn Id : 0
Service Type : Epipe
Description : GIGATECH CORP ME-TEST to ME-TEST2 VLAN 2500
Customer Id : 12345
Last Status Change: 12/08/2011 21:12:34
Last Mgmt Change : 08/16/2011 21:57:22
Admin State : Up Oper State : Down
MTU : 1632
Vc Switching : False
SAP Count : 1 SDP Bind Count : 1
-------------------------------------------------------------------------------
Service Access & Destination Points
-------------------------------------------------------------------------------
Identifier Type AdmMTU OprMTU Adm Opr
-------------------------------------------------------------------------------
sap:1/1/1:2500 q-tag 9212 9212 Up Up
sdp:2:190000001 S(10.1.1.2) n/a 0 9190 Up Down
Notice that the sdp and the service oper state is still down, we have to configure the metro on the other side as well to get it UP.
ME-TEST2# configure service epipe 190000001 customer 12345 create
ME-TEST2>config>service>epipe# description "GIGATECH CORP ME-TEST to ME-TEST2 VLAN 2500"
ME-TEST2>config>service>epipe# service-mtu 1632
ME-TEST2>config>service>epipe# sap 1/1/1:2500 create
ME-TEST2>config>service>epipe>sap# no shutdown
ME-TEST2>config>service>epipe>sap# exit
ME-TEST2>config>service>epipe#spoke-sdp 1:190000001 --> sdp-id 1 is link to the ME-TEST from ME-TEST2, and bind it with the vc-id
ME-TEST2>config>service>epipe>spoke-sdp# no shutdown
ME-TEST2>config>service>epipe>spoke-sdp# exit
ME-TEST2>config>service>epipe# no shutdown --> activate the service
Okay, now we're having a service that is connecting the metro link, like below
ME-TEST2# show service id 190000001 base
==================================================
Service Basic Information
==================================================
Service Id : 190000001 Vpn Id : 0
Service Type : Epipe
Description : GIGATECH CORP ME-TEST to ME-TEST2 VLAN 2500
Customer Id : 12345
Last Status Change: 12/08/2011 21:12:34
Last Mgmt Change : 08/16/2011 21:57:22
Admin State : Up Oper State : Up
MTU : 1632
Vc Switching : False
SAP Count : 1 SDP Bind Count : 1
-------------------------------------------------------------------------------
Service Access & Destination Points
-------------------------------------------------------------------------------
Identifier Type AdmMTU OprMTU Adm Opr
-------------------------------------------------------------------------------
sap:1/1/1:2500 q-tag 9212 9212 Up Up
sdp:1:190000001 S(10.1.1.1) n/a 0 9190 Up Up
ME-TEST# show service id 190000001 base
==================================================
Service Basic Information
==================================================
Service Id : 190000001 Vpn Id : 0
Service Type : Epipe
Description : GIGATECH CORP ME-TEST to ME-TEST2 VLAN 2500
Customer Id : 12345
Last Status Change: 12/08/2011 21:12:34
Last Mgmt Change : 08/16/2011 21:57:22
Admin State : Up Oper State : Up
MTU : 1632
Vc Switching : False
SAP Count : 1 SDP Bind Count : 1
-------------------------------------------------------------------------------
Service Access & Destination Points
-------------------------------------------------------------------------------
Identifier Type AdmMTU OprMTU Adm Opr
-------------------------------------------------------------------------------
sap:1/1/1:2500 q-tag 9212 9212 Up Up
sdp:2:190000001 S(10.1.1.2) n/a 0 9190 Up Up
And the link is ready to be used,
APZ :)