Skip to main content

ACS Configuration

In this tutorial, we'll show how to configure TR-069 on the ONUs through the OLT (via OMCI).

Important note

Automatic TR-069 configuration depends on the ONU being able to understand the OMCI parameters sent by the OLT — unfortunately this communication usually only works between OLTs and ONUs from the same manufacturer.

All commands must be run in the Config view.

HUAWEI> enable
HUAWEI# config
HUAWEI(config)#

1. Enable OMCI configuration mode

Go to config mode and run the command below:

HUAWEI(config)# gpon ont home-gateway config-method omci

2. Create the TR-069 profile

Go to config mode and run the command below:

HUAWEI(config)# ont tr069-server-profile add profile-id 1 profile-name "acs-cpehub" url "http://ACS_ADDRESS" user "USERNAME" "PASSWORD" auth-realm "auth"

We created the profile with id 1 — remember that we'll use this id in steps 4 and 5.

3. Enable the TR-069 profile on the Line profile

We'll show an example of how to add the profile to a single line profile, keep in mind:

  • This configuration must be done on every line profile that will use TR-069
  • In the example below, ip-index 0 was used — this index may vary depending on your scenario
HUAWEI(config)# ont-lineprofile gpon profile-id "LINE_PROFILE_ID" profile-name "LINE_PROFILE_NAME"
HUAWEI(config-line-profile)# tr069-management enable
HUAWEI(config-line-profile)# tr069-management ip-index 0
HUAWEI(config-line-profile)# commit
HUAWEI(config-line-profile)# quit

4. Add TR-069 to a single ONU

In the example below, we'll add the TR-069 configuration to a single ONU — you can usually do this for testing, before configuring TR-069 across the whole OLT.

In the example, we'll enable TR-069 on ONU 0/0/0/115.

HUAWEI(config)# interface gpon 0/0
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 0 115 profile-id 1

5. Add TR-069 to a PON

Now we'll enable TR-069 management on a PON — repeat the command for all the PONs and ports on your OLT.

In the example below, we'll enable ports 1, 2, 3, 4, and 5 of Gpon 0/0

HUAWEI(config)# interface gpon 0/0
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 0 all profile-id 1
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 1 all profile-id 1
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 2 all profile-id 1
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 3 all profile-id 1
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 4 all profile-id 1
HUAWEI(config-interface-gpon0/0)# ont tr069-server-config 5 all profile-id 1
HUAWEI(config-interface-gpon0/0)# #Continue the configuration on all ports