1. 程式人生 > >Fiberlink OLT GPON 配置思路指導

Fiberlink OLT GPON 配置思路指導

1、建立vlan100,200

vlan database
 vlan 1,100,200
 vlan 100 in-band-mgmt 
! 

2、建立DBA頻寬模版

gpon profile bandwidth 100M   //DBA頻寬模版
 traffic-type internet maximum-bandwidth 1000000
!

3、建立 GPON Flow流量模版

gpon profile flow sfu     //flow模版:單口ONU
 add flow # sfu-1
 sfu-1 encryption disable
 sfu-1 flow-type pbmp 1-4
 sfu-1 vlan 100 cos 0 service 100M
!

4、配置vlan轉發模版

 //未使用該vlan模版,由於ONU呼叫vlan模版時不支援trunk模式的vlan僅支援access vlan的模版引用
gpon profile vlan-translation vlan100
 add translation access 100
!

5、OLT上行口配置default vlan100,方便除錯,直連伺服器
i

nterface giga-ethernet0/0   //OLT上行口設定access vlan100
 switchport access vlan 100
 no shutdown
!

interface gpon2/2
 mac-address-table learning-mode move
 onu add serial-number zxic33445566   //ONU 會自動發現和自動註冊
 onu zxic33445566 ethernet-profile auto-on uni-port 1-4    //OLT自動寫入
 //手動繫結flow 模版;flow 模版中通過vlan去繫結DBA模版
 onu zxic33445566 flow-profile sfu   
  //手動繫結vlan轉發模版並指定到ONU四個LAN口上
 onu zxic33445566 vlan-translation-profile vlan100 uni-port 1-4 
 
 onu discovery-interval 30   //OLT自動寫入
 port-bridging    //OLT自動寫入
 switchport mode trunk    //設定PON埠型別
 switchport trunk allowed vlan 100   //設定PON埠為允許trunk vlan100
 no shutdown

6、設定帶外管理IP地址

interface mgmt
 ip address 192.168.1.1/24
 no shutdown
!
interface mgmt1
!

7、設定帶內管理vlan對應的IP地址

interface mgmt1.100  //管理vlan100設定IP地址
 description internet_vlan+management_vlan
 ip address 10.10.20.100/24
 no shutdown
!

1.如何建立管理vlan???
建立vlan database —>建立vlan100----> vlan 100 in-band-mgmt

# con t                                                                                     
(config)# vlan database                                                                      
(config-vlan)# vlan 100                                                                   
(config-vlan)# vlan 100 in-band-mgmt 

注意:OLT不支援 自動下發 PPPOE賬號和密碼到ONU WAN介面上