- 经验
- 2
- 分贝
- 0
- 家园分
- 12
- 在线时间:
- 2 小时
- 最后登录:
- 2020-1-27
- 帖子:
- 1
- 精华:
- 0
- 注册时间:
- 2019-3-14
- UID:
- 1420964
注册:2019-3-141
|
以下是作为一名新手从事PON产品测试或研发及技术支持等人员学习OLT开局配置的一种思路指导;
1、串口或telnet登录OLT
>>User name:root
>>User password:admin
1
2
2、激活卡板
MA5680T>enable
MA5680T#config
1、 add board to 2 Slot(GPFD)
MA5680T(config)#board add 0/2 H805GPFD
1 [2017-06-29 20:56:01+08:00]:
A board auto disappear,FrameID:0,SlotID:2,Board_name:H805GPFD
0 frame 2 slot board added successfully
MA5680T(config)#
MA5680T(config)#board add 0/17 H801GICF
1 [2017-06-29 20:56:49+08:00]:
A board auto disappear,FrameID:0,SlotID:17,Board_name:H801GICF
0 frame 17 slot board added successfully
MA5680T(config)#
MA5680T(config)#board add 0/18 H801GICF
1 [2017-06-29 20:56:55+08:00]:
A board auto disappear,FrameID:0,SlotID:18,Board_name:H801GICF
0 frame 18 slot board added successfully
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
3、配置vlan-ID
MA5680T(config)#
MA5680T(config)#vlan 100 smart
MA5680T(config)#vlan 1001-1005 smart
MA5680T(config)#vlan attrib 100 q-in-q
MA5680T(config)#port vlan 100 0/7 0
MA5680T(config)#port vlan 100 0/7 1
1
2
3
4
5
6
4、配置完 vlan 后要将vlan绑定到上行端口上
MA5680T(config)#interface scu 0/7
MA5680T(config-if-scu-0/7)#native-vlan 1 vlan 100
MA5680T(config-if-scu-0/7)#quit
1
2
3
5、创建DBA模板,配置PON上行带宽限速,注意一点,该DBA配置的带宽大小会影响到你所接入的PON扣下所能支持多少台终端设备,GPON PON下行不超过2,4G;
MA5680T(config)#dba-profile add profile-id 100 profile-name 100M-INTERNET type3 assure 102400 max 204800
MA5680T(config)#
1
2
6、配置两大模板
MA5680T(config)#ont-srvprofile gpon profile-id 10 profile-name 821WV-OTT
MA5680T(config-gpon-srvprofile-10)#ont-port pots 2 eth 4 /指定ONU能力及,不知道的话先查一下,在回过头来配置这个地方
MA5680T(config-gpon-srvprofile-10)#commit
MA5680T(config-gpon-srvprofile-10)#quit
MA5680T(config)#ont-lineprofile gpon profile-id 10 profile-name 821WV-OTT-way1
MA5680T(config-gpon-lineprofile-10)#tcont 1 dba-profile-id 100
MA5680T(config-gpon-lineprofile-10)#gem add 1 eth tcont 1
MA5680T(config-gpon-lineprofile-10)#gem mapping 1 1 vlan 100(常见的vlan映射方式;也可以端口映射,优先级映射等)
MA5680T(config-gpon-lineprofile-10)#commit
MA5680T(config-gpon-lineprofile-10)#quit
1
2
3
4
5
6
7
8
9
10
11
7、配置ONU自动发现功能
MA5680T(config)#interface gpon 0/2
MA5680T(config-if-gpon-0/2)#display ont autofind all
^
% Parameter error, the error locates at '^'
MA5680T(config-if-gpon-0/2)#
??????why ??? because this 2 slot`s port 0 not open ont-auto-find switch
MA5680T(config-if-gpon-0/2)#port 0 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 1 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 2 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 3 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 4 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 5 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 6 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 7 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 8 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 9 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 10 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 11 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 12 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 13 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 14 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#port 15 ont-auto-find enable
MA5680T(config-if-gpon-0/2)#
MA5680T(config-if-gpon-0/2)#display ont autofind 0
----------------------------------------------------------------------------
Number : 1
F/S/P : 0/2/0
Ont SN : 524C474D78C52898 (ZXIC-78C52898)
Password : 0x37383436323200000000(784622)
Loid : gpon12345678
Checkcode : 123456789
VendorID : ZXIC
Ont Version : V1.0
Ont SoftwareVersion : HGUV1.0.0B06
Ont EquipmentID : GPONV6
Ont autofind time : 2017-06-29 21:03:00+08:00
----------------------------------------------------------------------------
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
8、注册 ONU
MA5680T(config-if-gpon-0/2)#ont add 0 0 sn-auth 524C474D78C52898 omci ont-lineprofile-id 10 ont-srvprofile-id 10
MA5680T(config-if-gpon-0/2)#quit
MA5680T(config)#
1
2
3
9、配置业务端口
Way2-config: user-vlan 1001 translate business-vlan 100 but at ont-lineprofile profile to config mapping vlan is user-valn 1001: OK
MA5680T(config)#service-port 0 vlan 100 gpon 0/2/0 ont 0 gemport 1 multi-service user-vlan 1001 tag-transform translate
Way3-config: business-vlan==user-vlan==100 OK
MA5680T(config)#service-port 0 vlan 100 gpon 0/2/0 ont 0 gemport 1 multi-service user-vlan 100 tag-transform translate
MA5680T(config)#save configuration
————————————————
|
|