configure PPPoE service between OLT and ONT.

Harihar_Shrestha
Harihar_Shrestha  Senior  (1)
6 years 5 months ago  View: 12907  Reply: 3
1F

Is this configuration going to work for PPPoE  service between OLT and ONT

OLT configure:

MA5608T(config)#service-port vlan 599 gpon 0/0/15 ont 1 gemport 2 multi-service user-vlan 20 tag-transform translate inbound traffic-table index 6 outbound traffic-table index 6

BRAS configure:

interface Eth-Trunk1.2
 pppoe-server bind Virtual-Template 1
 description To_kupandol_Home_User
 trust upstream default
 user-vlan 2

ONT configure:

change connection type to PPPoE in ONT-HG8245A and input the username and password.

 

Thank you in advance. your input will be highly appreciated.

 

Kyle_5800
Kyle_5800  Junior 
6 years 5 months ago
2F

OLT configuration only have the service-port,it ‘s not enough, the BRAS demand the  2 as the SVLAN and CVLAN, you can refer the OLT configuration as follow:

MA5608T(config)#vlan 2 smart

MA5608T(config)#vlan attrib  2 stacking  

MA5608T(config)#port vlan 2 0/2 0

MA5608T(config)#dba-profile add profile-name DBA_100M type3 assure 102400 max 102400

MA5608T(config)#ont-lineprofile gpon profile-id 5

MA5608T(config-gpon-lineprofile-5)#tcont 1 dba-profile-id 12

MA5608T(config-gpon-lineprofile-5)#gem add 1 eth tcont 1 

MA5608T(config-gpon-lineprofile-5)#gem mapping 1 0 vlan 2

MA5608T(config-gpon-lineprofile-5)#commit

MA5608T(config-gpon-lineprofile-5)#quit

MA5608T(config)#ont-srvprofile gpon profile-id 5

MA5608T(config-gpon-srvprofile-5)#ont-port eth adaptive

MA5608T(config-gpon-srvprofile-5)#port vlan eth 1-4 2

MA5608T(config-gpon-srvprofile-5)#commit

MA5608T(config-gpon-srvprofile-5)#quit

MA5608T(config)#interface gpon 0/0

MA5608T(config-if-gpon-0/0)#ont add 15 1 sn xxxx omci ont-lineprofile-id 5 ont-srvprofile-id 5

MA5608T(config)#service-port vlan 2 gpon 0/0/15 ont 1 gemport 1 multi-service user-vlan 2 tag-transform translate-and-add inner-vlan 2 inbound traffic-table index 6 outbound traffic-table index 6

 


 

 

Harihar_Shrestha
Harihar_Shrestha  Senior 
6 years 5 months ago
3F

Reply 2 #

Hello liqingfeng, Thank you very much for you reply.

would please help me to correct if the following answer is correct or not?

ONU virtual service port config:

MA5612(config)# service-port vlan 2 eth 0/4/2 multi-service user-vlan untagged inbound  traffic-table index 6 outbound traffic-table index 6

whats the difference between stacking and qinq vlan attribute? according to the above configuration,

Ans: As metro Ethernet grows and a greater variety of services are deployed, there are more scenarios in which QinQ  double       tags can be applied.

  • QinQ VLAN: Packets with two VLAN tags(stacking vlan=2, inner vlan=2) traverse carrier networks. The inner VLAN tag=2 is transparently transmitted to the public network. QinQ VLAN(2 inside 2)  is also a simple and practical VPN technology.
  • Stacking VLAN: The inner tag=2 indicates the user; the outer tag=2 indicates the carrier.

The following uses subscriber x as an example to describe the processing of packets with the stacking VLAN= 2 from a user x to an BRAS:

  1. User x sends untagged packets to the CPE(ONU). then OLT maps/translate the user-vlan=2 to the inner vlan=2.

  2. The access node(OLT) adds two VLAN tags (inner VLAN 2 and outer VLAN 2) to the untagged packets.

  3. The OLT forwards the packets to BRAS according to outer VLAN 2.

  4. BRAS removes outer VLAN 2 after receiving the packets and then provisions services to the user according to inner VLAN 2.

Kyle_5800
Kyle_5800  Junior 
6 years 4 months ago
4F

Hi, you are right