1、 配置管理地址配置上行 vlan 和接口
MA5680T(config)#vlan 1000 smart //创建 vlan 1000 作管理vlan
MA5680T(config)#vlan 1001 smart //创建 vlan 1001 作业务vlan
MA5680T(config)#port vlan 1000 0/19 0 //vlan透传到上行口 0框19板 0口
MA5680T(config)#port vlan 1001 0/19 0
MA5680T(config)#interface giu 0/19 //进入上行口
MA5680T(config)#interface vlanif 1000 //进入valn 1000 接口
MA5680T(config-if-vlanif1000)#ip address 192.168.100.10 255.255.255.0 // 配置管理vlan 1000接口地址
2、 配置 DBA 模板 动态带宽分配机制 具体查看本站dba介绍
MA5680T(config)#dba-profile add profile-id 13 profile-name dba_profile_10 type2 assure 10240 //增加一个dba模板dba_profile_10 保障带宽10M
3、 配置线路模板、映射方式(并添加tcont与port映射关系)
MA5680T(config)#ont-lineprofile gpon profile-id 13 profile-name line_profile_10 //定义一个线路模板 line_profile_10
MA5680T(config-gpon-lineprofile-13)#mapping-mode vlan-priority // 默认映射方式为vlan 其它参考值 port iptos priority
MA5680T(config-gpon-lineprofile-13)#tcont 1 dba-profile-id 13 //定义一个 tcont 并与 dba 模板邦定, 缺省情况下, tcont 0 和 dba 模板 1 绑定,不需配置。
MA5680T(config-gpon-lineprofile-13)#gem add 0 eth tcont 1
MA5680T(config-gpon-lineprofile-13)#gem mapping 0<注:端口port> 1<注:tcont 1> vlan 1001 //vlan方式设置GEM Port 与 ONT 侧业务映射关系 需要添加几个口就添加几个口 命令: gem mapping gem-index mapping-index vlan vlan-id
可以分别绑定vlan和port如下:
MA5680T(config-gpon-lineprofile-13)#tcont 4 dba-profile-id 13
MA5680T(config-gpon-lineprofile-13)#gem add 4 eth tcont 4
MA5680T(config-gpon-lineprofile-13)#gem mapping 4 4 vlan 1000
也可以使用优先级方式
MA5680T(config-gpon-lineprofile-13)#gem add 1 eth tcont 1
MA5680T(config-gpon-lineprofile-13)#gem mapping 0 1 vlan 1001 priority 0 //优先级方式
MA5680T(config-gpon-lineprofile-13)#commit //必须 commit 保存, 否则配置不生效
MA5680T(config-gpon-lineprofile-13)#quit
4、 配置业务模板步骤
MA5680T(config)#ont-srvprofile gpon profile-id 13 profile-name fttr //定义一个业务模板
MA5680T(config-gpon-srvprofile-13)#ont-port eth 4 pots 2 //配置 ont端口能力集, 指定 ont 有多少业务端口
MA5680T(config-gpon-srvprofile-13)#port vlan eth 1 1001 //配置 ont端口的业务 vlan
MA5680T(config-gpon-srvprofile-13)#commit //必须 commit 保存, 否则配置不生效
MA5680T(config-gpon-srvprofile-13)#quit5
5、 添加ont 和ont相关配置
MA5680T(config)#interface gpon 0/1 //进入 GPON 的业务板 0 框 1 板
MA5680T(config-if-gpon-0/1)#port 0 ont-auto-find enable //开启 0 端口的ont自动发现功能
MA5680T(config-if-gpon-0/1)#display ont autofind 0 //通过该命令查看自动发现的 ONT 的信息
MA5680T(config-if-gpon-0/1)#ont add 0<注:0口> 0<注:光猫编号> sn-auth 32303131AE405A41 omciont-lineprofile-id 13 ont-srvprofile-id 13 //以sn方式注册光猫 同时需指定 配置的线路模板和业务模板 关联关系
MA5680T(config-if-gpon-0/1)#display ont info 0 all //查看0口所有 ONT 的状态
MA5680T(config-if-gpon-0/1)#quit
配置下发B类(大ONU)ip 管理地址:
MA5680T(config-if-gpon-0/1)#ont ipconfig 0 1 static ip-address 172.16.100.101 mask 255.255.255.0 gateway vlan 1001 priority 3
MA5680T(config-if-gpon-0/1)#quit
6、 设置 ONT 端口的缺省 vlan
MA5680T(config)#interface gpon 0/1
MA5680T(config-if-gpon-0/1)#ont port native-vlan 0 0 eth 1 vlan 1001 //指定 1 槽 0 口对应的 onu id 为 0 的 onu 的 eth 1 口的缺省 vlan 为 1001
7、 添加 vlan 的业务虚端口
MA5680T(config)#service-port vlan 1001 gpon 0/1/0 ont 0 gemport 1 multi-service user-vlan 1001 rx-cttr 6 tx-cttr 6 //使用默认流量模板 6 即不限速
MA5680T(config)#service-port vlan 1002 gpon 0/1/0 ont 0 gemport 1 multi-service user-vlan 1002 rx-cttr 6 tx-cttr 6 //使用默认流量模板 6
8、5626配置
telnet 172.16.100.101
默认用户名密码
root
mduadmin
MA5626#vlan 1001
MA5626#port vlan 1001 0/0 1 //上行口vlan透传
MA5626#service-port 0 vlan 1001 eth 0/1/1 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 1 vlan 1001 eth 0/1/2 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 2 vlan 1001 eth 0/1/3 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 3 vlan 1001 eth 0/1/4 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 4 vlan 1001 eth 0/1/5 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 5 vlan 1001 eth 0/1/6 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626#service-port 6 vlan 1001 eth 0/1/7 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
MA5626# service-port 7 vlan 1001 eth 0/1/8 multi-service user-vlan untagged rx-cttr 6 tx-cttr 6
码字不易,希望能帮到更多的学者同行