Hello, everyone!
Today, I will explain and show commands for configuring a service profile for GPON FTTH –gateway ONT. For access service (data, voice, video) we have to configure ONU profile. It consists: DBA profile, line profile, service profile and SNMP profile.
Service profile provides a configuration channel for the ONT that is managed through the OMCI (ONT Management Control Interface). Except that, service profile defines the interfaces of the ONT device: type of the ports, the quantity of the ports, etc.

Fig. 1. Gateway ONT – EG8247Q
On the fig. 1, we can see one example of gateway ONT. Now, I want to configure a service profile for this type of ONT. The principle is the same for all gateway ONTs.
The first step, we have to see all existing service profiles in the system, because we can not add new service profile with the same profile-id or profile-name. For this operation, we use the next command:
TEST(config)#display ont-srvprofile gpon all
{ <cr>||<K> }:
Command:
display ont-srvprofile gpon all
-----------------------------------------------------------------------------
Profile-ID Profile-name Binding times
-----------------------------------------------------------------------------
0 srv-profile_default_0 0
10 8012 465
20 ftth 542
-----------------------------------------------------------------------------
Total: 3
Now, we can add a new service profile with profile id: 25, profile name: EG8247Q. This ONT has 4 Gigabit ethernet ports, 2 POTS, 1 RF port for CATV and dual band wifi.
TEST(config)#ont-srvprofile gpon profile-id 25profile-name EG8247Q
TEST(config-gpon-srvprofile-25)#ont-port eth 4 pots 2 catv 1
{ <cr>|moca<K>|tdm<K>|tdm-srvtype<K>|tdm-type<K>|vdsl<K>|wifi<K> }:
Command:
ont-port eth 4 pots 2 catv 1
TEST(config-gpon-srvprofile-25)#commit
TEST(config-gpon-srvprofile-25)#quit
On this way, we configure the service profile only for ONT EG8247Q. If we want to configure a universal model for all gateway ONTs, we have to use the next command:
TEST(config-gpon-srvprofile-25)#ont-port eth adaptive pots adaptive catv adaptive
{ <cr>|moca<K>|tdm<K>|tdm-srvtype<K>|tdm-type<K>|vdsl<K>|wifi<K> }:
Command:
ont-port eth adaptivepots adaptivecatv adaptive
Now, the system will automatically adapts to the ONT according to the actual ONT on the network.
After this process, we can see all service profiles on the system, again:
TEST(config)#display ont-srvprofile gpon all
{ <cr>||<K> }:
Command:
display ont-srvprofile gpon all
-----------------------------------------------------------------------------
Profile-ID Profile-name Binding times
-----------------------------------------------------------------------------
0 srv-profile_default_0 0
10 8012 465
25 EG8247Q 0
20 ftth 542
-----------------------------------------------------------------------------
Total: 4
When we want to see many details about service profile, we can use the next command:
TEST(config)#display ont-srvprofile gpon profile-name EG8247Q
{ <cr>||<K> }:
Command:
display ont-srvprofile gpon profile-name EG8247Q
-----------------------------------------------------------------------------
Profile-ID : 25
Profile-name: EG8247Q
Access-type : GPON
-----------------------------------------------------------------------------
Port-type Port-number Max-adaptive-number
-----------------------------------------------------------------------------
POTS 2 -
ETH 4 -
VDSL 0 -
TDM 0 -
MOCA 0 -
CATV 1 -
-----------------------------------------------------------------------------
…
For this command we can use profile-id or profile-name.
And the end, when we want to delete some service profile, we use the next command:
TEST(config)#undo ont-srvprofile gpon profile-id 25
For this command we can use profile-id or profile-name.
Thank you!


