Parte 3: Autorizacion de ONU con Triple Play
Para este paso usaremos las configuraciones que hemos en los anteriores comentarios
Paso 1: Autorizar ONU
Para autorizar nuestra ONU usaremos la siguiente informacion, Mi ONU se encuentra en el slot 2 en el puerto 1 y en mi caso usare el ont index 1 dado que no hay mas onus autorizadas en ese puerto.
Nombre |
Slot |
Port |
Index |
SN |
Line Profile |
Service Profile |
ONU_INTERNET_IPTV_VOIP |
2 |
0 |
0 |
48575443ED3EFE7B |
LP_INTERNET_VOIP |
SRV_PROFILE_TRIPLE_PLAY |
Sintaxis para autorizar ONU
MA5800-X15(config)#interface gpon frameid/slotid<S><Length 3-15>
MA5800-X15(config-if-gpon-0/2)#ont add portid<U><0,15> ontid<U><0,127> sn-auth sn-value<S><Length 12-16> omci ont-lineprofile-name profile-name<S><Length 1-32> ont-srvprofile-name profile-name<S><Length 1-32> desc describe-value<S><Length 1-128>
MA5800-X15(config-if-gpon-0/2)#quit
Comando para autorizar nuestra ONU de ejemplo
MA5800-X15(config)#interface gpon 0/2
MA5800-X15(config-if-gpon-0/2)#ont add 0 0 sn-auth 48575443ED3EFE7B omci ont-lineprofile-name LP_INTERNET_VOIP ont-srvprofile-name SRV_PROFILE_TRIPLE_PLAY desc "ONU_INTERNET_IPTV_VOIP"
MA5800-X15(config-if-gpon-0/2)#quit
Paso 2: Crear service ports para ONU
Para este ejemplo le crearemos 2 services port a nuestra ONU para que pueda tener los 2 servicios por diferentes vlans, NO ES NECESARIO UN SERVICES PORT PARA EL CATV.
Servicio |
Service Port Index |
Vlan |
Interfaz |
Index |
Gemport |
User Vlan |
Traffic Table Subida |
Traffic Table Bajada |
INTERNET |
100 |
1502 |
0/2/0 |
0 |
1 |
1502 |
100M_UP |
100M_DOWN |
VOIP |
200 |
1503 |
0/2/0 |
0 |
2 |
1503 |
5M_UP |
5M_DOWN |
Sintaxis para crear service port
MA5800-X15(config)#service-port index<U><0,139263> vlan vlanid<U><1,4093> gpon frameid/slotid/portid<S><Length 5-18> ont ontid<U><0,127> gemport gemindex<U><0,1023> multi-service user-vlan user-vlanid<U><1,4095> tag-transform translate inbound traffic-table name name<S><Length 1-32> outbound traffic-table name name<S><Length 1-32>
Comandos para crear los services ports de ejemplo
MA5800-X15(config)#service-port 100 vlan 1502 gpon 0/2/0 ont 0 gemport 1 multi-service user-vlan 1502 tag-transform translate inbound traffic-table name 100M_UP outbound traffic-table name 100M_DOWN
MA5800-X15(config)#service-port 200 vlan 1503 gpon 0/2/0 ont 0 gemport 2 multi-service user-vlan 1503 tag-transform translate inbound traffic-table name 5M_UP outbound traffic-table name 5M_DOWN