中兴C600 EPON配置

(1)配置ONU模版 //如已配置,无需配置【相当于华为的业务模板】
ZXAN(config)#pon # 进入PON模式
ZXAN(config-pon)#onu-type epon 10GEPON # 创建一个ONU类型模板。模板名称为gpon
ZXAN(config-pon)#onu-type-if 10GEPON eth_0/1 # 配置gpon这个ONU类型模板为4个LAN口
ZXAN(config-pon)#onu-type-if 10GEPON eth_0/2
ZXAN(config-pon)#onu-type-if 10GEPON eth_0/3
ZXAN(config-pon)#onu-type-if 10GEPON eth_0/4
ZXAN(config-pon)#onu-type-if 10GEPON pots_1/1 # 配置gpon这个ONU类型模板为1个语音口

ZXAN(config-pon)#show onu-type epon # 查看已存在的ONU模板
ZXAN(config-pon)#show onu-type epon 10GEPON # 查看gpon这个ONU类型模板

(2)配置sla模板(相当于华为OLT的DBA,决定onu上行带宽)
ZXAN(config)#epon # 进入gpon配置模式
ZXAN(config-epon)#onu-sla-profile 10GEPON upstream assured 100000 fixed 500000 maximum 1000000 # 配置一个name为10GEPON的带宽模板,带宽类型为最大带宽1000Mbps,承诺带宽100Mbps,固定带宽500Mbps
ZXAN(config-epon)#exit
ZXAN(config)#show epon onu-sla-profile # 查看已存在的sla模板

(3)ONU注册
ZXAN(config)#show pon onu uncfg # 查看当前成功自动发现但未注册的ONU
ZXAN(config)#interface epon_olt-1/12/1 # 进入OLT PON口
ZXAN(config-if-epon_olt-1/9/1)#onu 3 type 10GEPON loid ttestw # 在OLT的1/9/1号PON口下创建一个loid为ttestw的10G-EPON ONU
ZXAN(config-if-epon_olt-1/9/1)#show epon onu detail-info epon_onu-1/9/1:3 # 查看onu详细状态信息
ZXAN(config-if-epon_olt-1/9/1)#show epon onu sla upstream epon_onu-1/9/1:3 #查看onu当前的dba带宽信息
ZXAN(config-if-epon_olt-1/9/1)#show epon onu state epon_olt-1/9/1 # 查看OLT PON口ONU在线状态

(4)配置业务流映射
ZXAN(config)#interface epon_onu-1/9/1:3
ZXAN(config-if-epon_onu-1/9/1:3)#mac-bind disable # 取消OLT的认证信息和mac绑定,让认证信息可以在不同的mac注册
ZXAN(config-if-gpon_onu-1/12/1:1)#sla-profile 10GEPON # 相当于华为的线路模板绑定DBA模板

ZXAN(config)#interface vport-1/9/1.3:1
ZXAN(config-if-vport-1/9/1.3:1)#service-port 1 user-vlan 46 vlan 46
ZXAN(config-if-vport-1/9/1.3:1)#service-port 2 user-vlan 47 vlan 47
ZXAN(config-if-vport-1/9/1.3:1)#service-port 3 user-vlan 50 vlan 50
ZXAN(config)#show running-config-interface vport-1/9/1.3:1 # 查询vport配置
ZXAN(config)#show running-config-interface epon_onu-1/9/1:3 # 查询ONU配置

猜你喜欢

转载自blog.csdn.net/petelaodi/article/details/129727965