Hello everyone!
Today, I’d like to share a case.
Problem description
Global GPON Line Profile does not exist error happened when customer query the GPON onu list.

Handling process
From the configuration of the OLT, we found such record:
ont-lineprofile gpon profile-id 5 profile-name "Cellsite_PL_D'Armes"
Due to the U2000 doesn’t support the character "'" in the profile name. it will leads to the U2000 cannot get Gpon profile fromt he NE correctly.
to make the U2000 synchronzie the line profile successfully,we need to do the below things:
1,On the NE side, delete the profile "Cellsite_PL_D'Armes"
2,On the U2000 side, run the below sql command:
use BMSDB
go
delete bms_pf_GponLineInfoNE where ProfileType = 1581 and ProfileName like 'lsite_PL%'
go
If success ,you will see x row affect
After the above step, and synchronize the NE again.
Root cause
There is a GPON line profile named "Cellsite_PL_D'Armes", due to the U2000 doesn’t support the character "'" in the profile name. it will leads to the U2000 cannot get Gpon profile fromt he NE correctly.
Solution
1,On the NE side, delete the profile "Cellsite_PL_D'Armes"
2,On the U2000 side, run the below sql command:
use BMSDB
go
delete bms_pf_GponLineInfoNE where ProfileType = 1581 and ProfileName like 'lsite_PL%'
go
If success ,you will see x row affect
After the above step, and synchronize the NE again.
Welcome to leave a message below.
We’ll study together.
Thank you!
