ONU对接 欣诺Sino OLT业务不通问题 分析

分析 ONU对接 任何厂商 ONU互联互通问题:首先要明确 OLT配置是否正确;客户是否使用同一个配置对接过其它厂商的ONU可以正常同业务呢??
像以下配置 可以看出 是OLT配置出了问题。
1、先查看 客户OLT的配置;

Username:admin	
Password:admin
GPON> enable
GPON# configure terminal

查看了 OLT的版本信息

GPON# show version
Product Name     : GPON
Software Version : R5.2.0V3316
Compiled by jenkins Tue Aug 29 20:18:09 CST 2017
Hardware Version : 1.1
Serial Num  : 1111G82BY1707028
Contact          :
Loction  :

查看了当前gpon OLT接口下配置

GPON# configure terminal
GPON(config)# interface gpon-olt 1/1
GPON(config-gpon-olt1/1)# show running-config interface gpon-olt1/1
!
interface gpon-olt1/1
 no shutdown
qos-queue-scheduler model hierarchy
!

查看光模块信息

GPON(config-gpon-olt1/1)# show optical module info
 optical module tx power         : 3.76 dbm
 optical module temperature      : 31.00 C
 optical module voltage          : 3.23 V
 optical module bias current     : 9.22 mA

查看 未注册ONU 信息

GPON(config-gpon-olt1/1)# show onuunconfig

gpon-olt        onu-index     info
       1/1          1     sn:ZXICd70079fc pw:PD70079FC loid:123456789 loidpw:123456

  Total: 1

注册ONU后 查看 ONU状态信息

GPON(config-gpon-olt1/1)#onu 1 type STG-402 sn ZXICd70079fc
GPON(config-gpon-olt1/1)# show onu status

gpon-onuauth-type  auth-info                                state
-------------------------------------------------------------------------------------
1/1:1      snsn:ZXICd70079fc                          added

Total: 1

GPON(config-gpon-olt1/1)# show onu status

gpon-onuauth-type  auth-info                                state
-------------------------------------------------------------------------------------
1/1:1      snsn:AZGPd70079fc                          auth pass

Total: 1

GPON(config-gpon-olt1/1)# show onu status

gpon-onuauth-type  auth-info                                state
-------------------------------------------------------------------------------------
1/1:1      snsn:AZGPd70079fc                          operational

Total: 1

查看ONU能力及

GPON(config-gpon-olt1/1)# interface gpon-onu 1/1:1
GPON(config-gpon-onu1/1:1)# show onu remote capability
TCONT number:                     15
GEMPort number:                   256
Total priority queue number:      128
Up priority queue number:         120
Down priority queue number:       8
Traffic scheduler number:         15
Total Card number:                0
Total Ethuni number:              0
Card1 Ethuni number:              0
Operation Id:                     CTC
CTC Spec Version:                 V2.0
OnuType:                          HGU
Tx power supply control:          2
GPON(config-gpon-onu1/1:1)#

查看OLT上行接口配置信息

GPON(config)# show running-config interface ge1/1
!
interface ge1/1
 no shutdown
 speed 1000
 duplex full
 switchport mode trunk
 switchport trunk tag 2-4094
 storm-control broadcast pps 100
 storm-control unicast pps 100
!

查看GPON OLT接口配置信息

GPON(config)# show running-config interface gpon-olt1/1
!
interface gpon-olt1/1
 no shutdown
qos-queue-scheduler model hierarchy
onu 1 type STG-402 sn ZXICd70079fc

!
查看GPON ONU接口下配置信息

GPON(config)# show running-config interface gpon-onu1/1:1
!
interface gpon-onu1/1:1
tcont 1 profile default
gemport 1 tcont 1
 service-port 1 gemport 1 user-vlan 100 transparent
 remote service 1 gem 1 vlan 100
 remote uni veip vlan-mode transparent
 !

GPON(config)#
以上操作 针对 OLT 配置ONU基本业务所用到的操作步骤;都一一查看了一遍; 最终发现 Sino OLT的配置和 C300中兴OLT配置基本类似;命令风格也一样;于是结合中兴OLT的配置 方法 照搬照套 应用到Sino OLT上面来;
最后发现有一处 配置有问题:
问题在于 GPON ONU接口下配置:
service-port 1 gemport 1 user-vlan 100 transparent
修改为:service-port 1 gemport 1 user-vlan 100 vlan 100 即可实现业务通

猜你喜欢

转载自blog.csdn.net/weixin_42353331/article/details/86418163