配置GPON ONT模板。
GPON ONT模板包括DBA模板、线路模板、业务模板、告警模板。
DBA模板:DBA模板描述了GPON的流量参数,T-CONT通过绑定DBA模板进行动态分配带宽,提高上行带宽利用率。
线路模板:线路模板描述了T-CONT和DBA模板的绑定关系、业务流的QoS模式、GEM Port与ONT侧业务的映射关系等。
业务模板:业务模板为采用OMCI方式管理的ONT提供了业务配置渠道。
告警模板:告警模板设置一系列告警门限参数,用于对激活的ONT线路进行性能统计监控,当某个统计量达到告警门限时,就通知主机,并向日志主机和网管发送告警信息。
配置DBA模板。
可以使用display dba-profile命令查询系统中已存在的DBA模板。如果系统中现有的DBA模板不能满足需求,则需要执行dba-profile add来添加。
针对不同的业务类型创建相同的DBA模板。DBA模板名称为ftth_dba,类型为Type3,保证带宽为8Mbit/s,最大带宽为20Mbit/s。huawei(config)#dba-profile add profile-name ftth_dba type3 assure 8192 max 20480
说明:
DBA基于整个ONT调度,需根据ONT的业务类型和用户数选择合适的带宽类型和带宽大小。请注意固定带宽(fix)和保证带宽(assure)之和不能大于PON接口的总带宽。
配置ONT线路模板。
创建模板名称为ftth的GPON ONT线路模板,并绑定DBA模板ftth_dba。huawei(config)#ont-lineprofile gpon profile-name ftth
huawei(config-gpon-lineprofile-1)#tcont 4 dba-profile-name ftth_dba
针对不同的业务类型创建不同的GEM Port。其中,
索引为11的GEM Port用于承载管理业务。
索引为12的GEM Port用于承载语音业务。
索引为13的GEM Port用于承载视频业务。
索引为14的GEM Port用于承载上网业务。huawei(config-gpon-lineprofile-1)#gem add 11 eth tcont 4
huawei(config-gpon-lineprofile-1)#gem add 12 eth tcont 4
huawei(config-gpon-lineprofile-1)#gem add 13 eth tcont 4
huawei(config-gpon-lineprofile-1)#gem add 14 eth tcont 4
说明:
如果需要修改系统缺省的QoS模式,请使用qos-mode命令配置QoS模式为gem-car或者flow-car,并且使用gem add命令配置此GEM Port绑定的流量模板索引。
QoS模式采用PQ时,默认的队列优先级为0;QoS模式采用flow-car时,默认绑定的流量模板索引为6(不限速);QoS模式采用gem-car时,默认绑定的流量模板索引为6(不限速)。
配置完成后,使用commit命令使配置的参数生效。huawei(config-gpon-lineprofile-1)#commit
huawei(config-gpon-lineprofile-1)#quit
配置ONT业务模板。
创建模板名称为ftth的GPON ONT业务模板。配置ETH端口和POTS端口能力集为adaptive,系统将根据上线的ONT的实际能力进行自适应。huawei(config)#ont-srvprofile gpon profile-name ftth
huawei(config-gpon-srvprofile-1)#ont-port eth adaptive pots adaptive
配置完成后,使用commit命令使配置的参数生效。huawei(config-gpon-srvprofile-1)#commit
huawei(config-gpon-srvprofile-1)#quit
(可选)配置告警门限模板。
系统缺省的GPON告警门限模板1,其中各告警域值为0,即不上报告警。
本实例中采用缺省的告警门限模板,无需配置。
当需要配置告警门限值参数,用于对激活的ONT线路进行性能统计监控时,使用gpon alarm-profile add命令配置GPON告警门限模板。
增加ONT。
GPON端口0/1/0下接入两个ONT,ONT ID为1和2,序列号为32303131D659FD40和6877687714852901,password为0100000001和0100000002,密码认证的发现模式为once-on,管理模式为OMCI,绑定ONT线路模板名称为ftth,ONT业务模板名称为ftth。
可以选择使用“离线增加ONT”或“确认自动发现ONT”两种方式:
离线增加ONT。
在已经获悉ONT的密码的情况下,可以使用ont add命令离线增加ONT。huawei(config)#interface gpon 0/1
huawei(config-if-gpon-0/1)#ont add 0 1 password-auth 0100000001 once-on no-aging omci ont-lineprofile-name
ftth ont-srvprofile-name ftth
huawei(config-if-gpon-0/1)#ont add 0 2 password-auth 0100000002 once-on no-aging omci ont-lineprofile-name
ftth ont-srvprofile-name ftth
确认自动发现ONT。
在ONT的密码或序列号未知的情况下,先在GPON模式下使用port portid ont-auto-find命令使能GPON端口的ONT自动发现功能。然后使用ont confirm命令确认ONT。huawei(config)#interface gpon 0/1
huawei(config-if-gpon-0/1)#port 0 ont-auto-find enable
huawei(config-if-gpon-0/1)#display ont autofind 0
//该命令会显示通过分光器接入到该GPON端口的所有ONT的信息
huawei(config-if-gpon-0/1)#ont confirm 0 ontid 1 sn-auth 32303131D659FD40 omci ont-lineprofile-name
ftth ont-srvprofile-name ftth
huawei(config-if-gpon-0/1)#ont confirm 0 ontid 2 sn-auth 6877687714852901 omci ont-lineprofile-name
ftth ont-srvprofile-name ftth
说明:
如果一个端口下有多个同类型的ONT,且绑定的线路模板或业务模板相同,可以通过批量确认自动发现的ONT的方式批量增加ONT,以简化操作、提高配置效率。如,上面的命令也可以修改为:huawei(config-if-gpon-0/1)#ont confirm 0 all sn-auth omci ont-lineprofile-name ftth
ont-srvprofile-name ftth
(可选)绑定告警门限模板。
本示例中使用ID为1的系统缺省模板。huawei(config-if-gpon-0/1)#ont alarm-profile 0 1 profile-id 1
huawei(config-if-gpon-0/1)#ont alarm-profile 0 2 profile-id 1
确认ONT状态。
增加ONT后,请使用display ont info命令查询ONT的当前状态,确保ONT的“Control flag”为“active”、“Run State”为“online”、“Config state”为“normal”及“Match state”为“match”。
huawei(config-if-gpon-0/1)#display ont info 0 1
---------------------------------------------------------------------
F/S/P : 0/1/0
ONT-ID : 1
Control flag : active //说明ONT已经激活
Run state : online //说明ONT已经正常在线
Config state : normal //说明ONT配置恢复状态正常
Match state : match //说明ONT绑定的能力模板与ONT实际能力一致
...//省略了后面的回显。
当出现ONU配置状态失败、ONU无法up等情况时:
如果“Control flag”为“deactive”,需要在GPON端口模式下使用ont activate命令激活ONU。
如果出现ONU无法up,即“Run state”为“offline”,可能是物理线路中断,也可能是光模块损坏,需要从器件和线路两方面排查。
如果出现ONU配置状态失败,即“Config state”为“failed”,则说明配置的ONU能力集超出了ONU实际支持的能力,需要在诊断模式下使用display ont failed-configuration命令查看配置失败项及原因,根据具体情况进行修改。
咨询电话
400-888-9999