DataCom OLT针对SFU ONU组播配置指导

以下是 SFU ONU配置组播的方式
1. VLANID 创建

dot1q
 vlan 100  #创建INTERNET业务vlanID
  interface gigabit-ethernet-1/1/10   #绑定上行端口10口,tag方式
  !
  interface gigabit-ethernet-1/1/12  #绑定上行端口12口,untag方式
    untagged
  !
 !
 vlan 500  #创建组播vlanID
  interface gigabit-ethernet-1/1/10
  !
  interface gigabit-ethernet-1/1/11
    untagged
  !
  interface service-port-1
  !
 !

2. 配置 组播igmp snooping

 multicast igmp snooping 1
 bridge-domain id 500
 interface service-port-1
 !
    version 2 或3
	。。。这里可以设置IGMP version支持V1-V3
!

3. 配置 DBA-profile和 gem-traffic-profile和line-profile

profile gpon bandwidth-profile 1G-DBA
 traffic type-3 assured-bw 1000000 max-bw 1024000
!

profile gpon gem-traffic-profile 125-traffic
 cir 102400
 eir 409600
 upstream-gem-priority 0
!

profile gpon line-profile 125-eth
 upstream-fec
 tcont 1 bandwidth-profile 1G-DBA
 gem 1
  tcont 1 gem-traffic-profile 125-traffic
  map 1
   ethernet 1 vlan 500 cos 0  #组播这块不能是veip vlan映射方式,只能是Ethernet 方式,如果是internet业务 就是veip vlan映射
  !
 !
!

4.配置onu-profile 和 service-profile 模版

profile gpon onu-profile 125-ONU
 ethernet adaptive
 veip 1
!
profile gpon service-profile 125-SERVICE
 onu-profile 125-ONU
!

5. 配置VLANID 服务类型

service vlan 500
 type n:1 (组播vlan必须是n:1)
!
service vlan 100
 type tls
!

6. ONU注册 并绑定 相关模版配置

interface gpon 1/1/1
 no shutdown
 onu 1
  serial-number AZGPD700A8B0
  service-profile 125-SERVICE line-profile 125-eth
  ethernet 1
   negotiation
   no shutdown
   native vlan vlan-id 500
  !
  veip 1
  !
 !

7. 配置业务虚端口 service-port

service-port 1 gpon 1/1/1 onu 1 gem 1 match vlan vlan-id 500 action vlan replace vlan-id 500

你可能感兴趣的:(#,DataCom-OLT配置指导)