Blog Inspirasi Digital

Blog Inspirasi Digital

Tutorial Blog, Configurasi dan Tips Inspirasi Digital

Tuesday 26 November 2019

Create Vlan di GPON Huawei dengan CLI

Create VLAN
1. Membuat VLAN Active:
    GPON_Huawei(config)#vlan 1000 smart
2. Memberikan Deskripsi (Penamaan) Terhadap VLAN yang yang dibuat:
    GPON_Huawei(config)#vlan desc 1000 description "TEST_Create_VLAN_Access"
3. Tag Vlan yang dibuat ke Frame/Slot/Port untuk Uplink:
    GPON_Huawei(config)#port vlan 1000 0/6 0
4. Membuat dba-profile
    GPON_Huawei(config)#dba-profile add profile-id 100 profile-name "UPTO-100Mbps" type4 max 102400
5. Membuat Table Traffic seperti untuk Limit Bandwith:
GPON_Huawei(config)#traffic table ip index 100 name "ip-traffic-table-100Mb" cir 102400 cbs 3278800 pir 102400 pbs 3278800 priority 0 priority-policy local-setting
Keterangan:
traffic table ip index 100 = Nomor Index yang dibuat identik dengan besaran Limit Bandwith 100Mbps (Nomor index tidak harus sama dengan Limit tapi untuk memudahkan saja)
name "ip-traffic-table-100Mb" = Deskripsi atau Penamaan
cir 102400 = Committed Information Rate atau Besaran Limit Bandwith dalam kbps
cbs 3278800 = Commited Burst Size dengan besaran Byte yang ditentukan dengan formula: (2000+cir X 32)
pir 102400 = Peak Information Rate, Parameter ini Opsional. Besaran bisa sesuai dengan cir atau 2 kali lipatnya
pbs 3278800 = Peak Burst Size, dengan besaran Byte yang ditentukan dengan formula: (2000+pir X 32)
6. Register ONT baru di GPON OLT:
a. GPON_Huawei(config)#display ont autofind all
b. GPON_Huawei(config)#ont-lineprofile gpon profile-id 1000 profile-name "TEST_Create_VLAN_Access"
  tcont 1 dba-profile-id 100
  gem add 0 eth tcont 1
  gem mapping 0 0 vlan 1000
  commit                           
  quit
c. GPON_Huawei(config)#interface gpon 0/0
GPON_Huawei(config-if-gpon-0/0)#ont add 7 4 sn-auth "4857544345130C6A" omci ont-lineprofile-id 1000
ont-srvprofile-id 3 desc "TEST_Create_VLAN_Access"
d. *Ini untuk Konfigurasi Access, Jika ingin dirubah menjadi QinQ maka Konfigurasi ini tidak dibutuhkan*
GPON_Huawei(config)#interface gpon 0/0
BDG-KCO-OLT(config-if-gpon-0/0)#ont port native-vlan 7 4 eth 1 vlan 1000 priority 0
7. Memasang Limit Bandwith dan Tag ke Vlan dan Frame/Slot/Port
GPON_Huawei(config)#service-port 1000 vlan 1000 gpon 0/0/7 ont 4 gemport 0 multi-service user-vlan 1000 tag-transform translate inbound traffic-table index 100 outbound traffic-table index 100
Jika ingin merubah Mode menjad Trunk All maka ditambahkan other-all:
GPON_Huawei(config)#service-port 1000 vlan 1000 gpon 0/0/7 ont 7 gemport 0 multi-service user-vlan 
other-all tag-transform default inbound traffic-table index 50 outbound
traffic-table index 50
Catatan:
1. Config diatas untuk mode Access
2. Step Reconfigure (hapus dan config lagi) ont-lineprofile:
    a. undo service-port (index & vlan)
    b. ont delete port
    c. undo ont-lineprofile gpon profile-id
3. untuk merubah menjadi mode QinQ:
    a. tidak memakai ont port native-vlan 2 3 eth 1 vlan 1000 priority 2
4. untuk merubah menjadi mode Trunk All: di service-port menggunakan "other-all" 
5. untuk upgrade dan downgrade bandwith di OLT:
    a. undo service-port vlan trus create lagi service-port vlan dan rubah inbound traffic dan outbound traffic
    b. di ont-lineprofile rubah dba-profile-id
Sekian dan terima kasih


2 comments

 

Back to Top

Welcome to My Blog