Setting OLT Huawei MA5608T
Inilah Cara Setting OLT Huawei MA5608T
Step 1 : Remote OLT Huawei via Menejemen Eth Port
OLT Huawei memiliki IP Address bawaan 10.11.104.2 berada di port eth management atau meth0
utk pertama kali masuk ke OLT, lakukan:
telnet 10.11.104.2
User name: root
User password: admin or admin123
MA5608T>
MA5608T> enable
MA5608T# config
Step 2: Service board Confirmation
MA5608T(config)# display board 0
Using this command a list of attached boards will display with auto_find status. now we will confirm those board
MA5608T(config)# board confirm 0/0
MA5608T(config)# board confirm 0/1
MA5608T(config)# display board 0
MA5608T(config)# save
That’s all now olt board show in normal or Active_normal status
Step 3 : Assign IP Address to vlan Huawei
In this step, we will allocate an IP address to VLAN Huawei olt for our remote management. We will assign 192.168.2.100/24 IP address to VLAN 100 and the gateway/router IP address is 192.168.2.1 (Ip address will change according to your network).
First, we will create VLAN 100 and assign this VLAN 100 to uplink port 3.
MA5608T>enable
MA5608T#config
MA5608T(config)#vlan 100 smart
MA5608T(config)#vlan name 100 management
MA5608T(config)#port vlan 100 0/2 2
MA5608T(config)#quit
MA5608T#save
That’s all we have successfully created VLAN and assign it to uplink port 3. Now we will assign the IP address
MA5608T>enable
MA5608T#config
MA5608T(config)#interface VLAN 100
MA5608T(config-if-vlanif100)#ip address 192.168.2.100 255.255.255.0
MA5608T(config)#ip route-static 0.0.0.0 0.0.0.0 192.168.2.1
Ip address setup complete. Now we can reach Huawei olt by 192.168.2.100 using this IP address from our local network. If you want to access from a remote network you need to assign a public IP address using the same procedure
Step 4 : Gpon Huawei Configuration
In this step, we will configure the gpon pon ports for the passing service using onu. Assume we will pass traffic using VLAN 101 to all pon ports using the below step.
Enable PON Ports
DBA Profile
Line Profile
Service Profile
how to add ont in huawei olt
Creating Service Port
All types of GPON OLT like VSOL Gpon OLT need to create DBA, LINE, Service profiles.
1. Enable PON Ports
In this step, we will enable pon ports for automatically found onu. When you connect onu to your network ONU will automatically be recognized by OLT.
Assume we are using 5608T OLT with GPBD Service board where has 16 pon ports. We will enable pon port using the below command
MA5608T>enable
MA5608T#config
MA5608T(config)#interface gpon 0/1
MA5608T(config-if-gpon-0/1)#port 0 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 1 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 2 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 3 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 4 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 5 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 6 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 7 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 8 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 9 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 10 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 11 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 12 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 13 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 14 ont-auto-find enable
MA5608T(config-if-gpon-0/1)#port 15 ont-auto-find enable
Using above command we have successfully enable all pon ports
MA5608T(config-if-gpon-0/1)#display ont autofind 0
Using this command you can check if there any onu is attached to the olt
2. DBA Profile
In this step we will create a DBA (Dynamic Bandwidth Allocation) Profile. In this profile we will declare ONU maximum bandwidth 1 GB
MA5608T>enable
MA5608T#config
MA5608T(config)#dba-profile add profile-id 10 profile-name maxbw type4 max 1024000
Here profile ID is 10 and Profile name maxbw. You have to keep in knowledge DBA Profile ID 10 for future configuration
3. Line Profile
In this step we will create a line for vlan 101 . Here profile ID will 10 and profile name line_vlan_101
First we will create vlan 101 and assign to uplink port 3
huawei olt vlan configuration
MA5608T>enable
MA5608T#config
MA5608T(config)#vlan 101 smart
MA5608T(config)#vlan name 101 PON
MA5608T(config)#port vlan 101 0/2 2
MA5608T(config)#quit
MA5608T#save
VLAN 101 Created successfully now we will make Line profile
MA5608T>enable
MA5608T#config
MA5608T(config)#ont-lineprofile gpon profile-id 10 profile-name line_vlan_101
MA5608T(config-gpon-lineprofile-10)#tcont 1 dba-profile-id 10
MA5608T(config-gpon-lineprofile-10)#gem add 0 eth tcont 1
MA5608T(config-gpon-lineprofile-10)#gem mapping 0 0 vlan 101
MA5608T(config-gpon-lineprofile-10)#commit
Line profile creation complete
4. Service Profile
In this step we will create a service profile for vlan 101.
Let’s start
MA5608T(config)#ont-srvprofile gpon profile-id 10 profile-name Srv_vlan_101
MA5608T(config-gpon-srvprofile-10)#ont-port eth 1
MA5608T(config-gpon-srvprofile-10)#port vlan eth 1 translation 101 user-vlan 101
MA5608T(config-gpon-srvprofile-10)#ring check enable
MA5608T(config-gpon-srvprofile-10)#ring check resume-interval 120
MA5608T(config-gpon-srvprofile-10)#commit
Here service profile is is 10 and service profile name Srv_vlan_101
we have almost complete Huawei OLT Configuration step by step and have a few step for how to add ont in Huawei olt lets start
5. How to add ont in Huawei OLT/Huawei Ont Configuration
For adding ont / onu to huawei olt first need to find out onu serial number using below command
MA5608T>enable
MA5608T#config
MA5608T(config)#interface gpon 0/1
MA5608T(config-if-gpon-0/1)#display ont info 0 all
using this command we find out onu seriel number and the number is 48575443522C499D
now we will authorize onu to Huawei olt
MA5608T>enable
MA5608T#config
MA5608T(config)#interface gpon 0/1
MA5608T(config-if-gpon-0/1)#display ont info 0 all
MA5608T(config-if-gpon-0/1)#ont add 0 0 sn-auth 48575443522C499D omci ont-lineprofile-id 10 ont-srvprofile-id 10 desc test
MA5608T(config-if-gpon-0/1)#ont port native-vlan 0 0 eth 1 vlan 101 priority 0
Onu address successfully now onu PON/REG led will stop blinking.
6. Creating Service Port
Now we will create service port for ONU using below command
MA5608T>enable
MA5608T#config
MA5608T(config)#service-port 0 vlan 101 gpon 0/1/0 ont 0 gemport 0 multi-service user-vlan 101 tag-transform translate
MA5608T(config)#quit
MA5608T#save
Thats all onu adding complete.
Panduan setting OLT Huawei lebih lengkap http://gponsolution.com/huawei-gpon-olt-configuration.html

Komentar
Posting Komentar