General information

The MA5160 is a modular OLT in an 11U form factor for a standard 19" rack. Here are the types of modules for this device:

  • FC64 control boards, which coordinate the operation of the modular system and connect the OLT to the provider's upstream network;
  • Line cards with PON interfaces, used to connect ONT subscriber terminals. There are multiple types of line cards:
    • LC16G is a line card that contains only GPON interfaces;
    • LC16XG is a line card that has XGS-PON interfaces capable of operating in either XGS-PON or GPON mode. The PON port operating mode is specified separately for each interface. For example, within a single card, one port can operate in GPON mode, while another port can operate in XGS-PON mode. The operating mode of the PON ports is specified in the slot settings.
    • LC16C (currently under development) is a linear card that contains combo PON interfaces, which makes it possible to simultaneously connect ONTs operating on both GPON and XGS-PON technologies to PON interfaces using specific SFP modules in the OLT that are capable of operating in combo mode. The operating mode of PON ports for boards of this type is non-configurable and has the combo value. 

The installation of two control modules allows for switch redundancy and increased system throughput. The modules operate in stacking mode (module interfaces are combined into trunk groups using LAG and LACP). All modules share a single control interface. All line and control modules are connected to each other inside the chassis using high-speed buses.

The key advantage of this device is its high subscriber capacity combined with the variability of technologies used for subscriber connections. From the point of view of architecture, one line card replaces one pizza-box OLT. For example, the LC16G card is identical in architecture and functionality to the pizza-box LTP-16N OLT, and the LC16XG is identical to the LTX-8 OLT.

Connection diagram

Let's take a look at a connection diagram similar to the one discussed in the Configuring and health checking the equipment (XGS-PON diagram) section. The diagram specifies the use of LC16XG as the line card. The initial data is similar:

  • VLAN 2149 – Internet service;
  • VLAN 30 – IPTV service;
  • VLAN 100 – network hosts management.

According to this diagram, for NTX-1, the subscriber router is supposed to be connected directly to the ONT. In the case of NTX-SFP-100, the ONT in the SFP module form factor is supposed to be connected to an access switch. VLAN processing modes for NTX-1 are access, for NTX-SFP-100 – trunk.

OLT and ONT configuration procedure in CLI

The configuration approach has some syntactic differences from the LTX series OLTs due to the modular architecture of the MA5160 device.

Two segments will be covered: connection of one subscriber with an installed home router via ONT and connection of an access switch with multiple subscribers via NTX-SFP. The configuration of the third segment according to the diagram, which uses an NTX-1F ONT with Ethernet SFP connectivity, will not be considered, as this ONT model can be configured similarly to NTX-1 or NTX-SFP-100.

The initial configuration of the OLT in terms of network connection management settings can be performed via the OOB interface or via the console interface. For more details on configuring management parameters, refer to the OLT user documentation. Here is the xample of configuring OLT management parameters for this scheme:

MA5160
MA5160# configure terminal
MA5160(configure)# management ip 10.10.0.25
MA5160(configure)# management mask 255.255.0.0
MA5160(configure)# management gateway 10.10.0.1
MA5160(configure)# management vid 100
MA5160(configure)# interface front-port 1/1
MA5160(config)(if-front-1/1)# vlan allow 100
MA5160(configure)# do commit
MA5160(configure)# do confirm
Clarification
Switching to OLT configuration mode
Specifying the IP address of the OLT in the management network
Specifying the management subnet mask
Specifying the default gateway
Specifying the VLAN for OLT management
Switching to the front-port 1/1 uplink interface configuration mode
Configuring the management VLAN on the uplink interface 
Applying the configuration
Saving the changes to non-volatile memory

Please note. Front-port uplink interfaces have double indexes, for example, front-port 1/1. The first index is the control board unit number, and the second is the port number on the control board. Unit number 1 corresponds to the left control board, and 2 corresponds to the right control board. Thus, front-port 1/1 is the first port on the left control board.

On MA5160, the confirm command is used to confirm the changes made in the configuration (unlike LTX, where the save command is used).

NTX-1 configuration details:

  • configuration identifier is interface ont 1/1/1;
  • both services (Internet + IPTV) are provided at the egress of LAN port in untagged mode;
  • both LAN interfaces are configured in case the subscriber needs to use several LAN ports of the ONT;
  • given the specifics of the services, only one cross-connect service profile is configured for both services.

NTX-SFP-100 configuration details:

  • configuration identifier is interface ont 1/1/2;
  • both services (Internet + IPTV) are provided on the uplink port of the access switch in tagged mode;
  • the device has a single internal Ethernet interface for communication with the switch port to which the NTX-SFP is connected. For OLT, this interface has the LAN 1 identifier, so only one LAN port will be configured for NTX-SFP;
  • each service is assigned its own cross-connect profile;
  • a separate service with a configured management VLAN of the provider's data transmission network is used to control the switch to which the NTX-SFP (or NTX-1F) is connected.


Please note. Triple indexes are used to designate ONT interfaces, where the first value corresponds to the line card number, the second to the pon-port number on the specified line card, and the third to the ONT identifier on the link. Accordingly, pon-port interfaces in the OLT configuration will have double indexes consisting of the line card number and the port number on the card.

Configuring basic functionality

Configuring cross-connect service profiles

The principle of configuring cross-connect service profiles on the MA5160 is no different from LTX.

MA5160
MA5160# configure terminal
MA5160(configure)# profile cross-connect HSI_NTX1
MA5160(config)(profile-cross-connect-HSI_NTX1)# ont-mode bridge
MA5160(config)(profile-cross-connect-HSI_NTX1)# bridge group 20
MA5160(config)(profile-cross-connect-HSI_NTX1)# outer vid 2149
MA5160(config)(profile-cross-connect-HSI_NTX1)# user vid untagged
MA5160(config)(profile-cross-connect-HSI_NTX1)# multicast enable
MA5160(config)(profile-cross-connect-HSI_NTX1)# exit
MA5160(configure)# profile cross-connect HSI_NTX-SFP
MA5160(config)(profile-cross-connect-HSI_NTX-SFP)# ont-mode bridge
MA5160(config)(profile-cross-connect-HSI_NTX-SFP)# bridge group 30
MA5160(config)(profile-cross-connect-HSI_NTX-SFP)# outer vid 2149
MA5160(config)(profile-cross-connect-HSI_NTX-SFP)# user vid 2149
MA5160(config)(profile-cross-connect-HSI_NTX-SFP)# exit
MA5160(configure)# profile cross-connect IPTV_NTX-SFP      	
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# ont-mode bridge
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# bridge group 30
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# outer vid 30
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# user vid 30
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# multicast enable
MA5160(config)(profile-cross-connect-IPTV_NTX-SFP)# exit
MA5160(configure)# profile cross-connect MGMT_NTX-SFP
MA5160(config)(profile-cross-connect-MGMT_NTX-SFP)# ont-mode bridge
MA5160(config)(profile-cross-connect-MGMT_NTX-SFP)# bridge group 30
MA5160(config)(profile-cross-connect-MGMT_NTX-SFP)# outer vid 100
MA5160(config)(profile-cross-connect-MGMT_NTX-SFP)# user vid 100
MA5160(config)(profile-cross-connect-MGMT_NTX-SFP)# exit
MA5160(config)# do commit
MA5160(config)# do confirm
Clarification
Switch to OLT configuration mode
Switch to Internet service cross-connect profile configuration mode for NTX-1
Specify the ONT operating mode as bridge
Specify bridge group number (the number can have any value, but must match the number in profile ports)
Specify the service VLAN ID for the Internet service
Specify the VLAN ID at the egress of the LAN ONT
Allow multicast traffic to pass through
Exit cross-connect profile configuration mode
Switch to cross-connect profile configuration mode of the NTX-SFP Internet service
Specify the ONT operating mode as bridge
Specify the bridge group number (the number can have any value, but must match the number in profile ports)
Specify the service VLAN ID for the Internet service
Specify the VLAN ID for the Internet service at the ingress of the access switch
Exit the cross-connect profile configuration mode
Switch to the configuration mode of the IPTV service cross-connect profile for NTX-SFP
Specify the ONT operating mode as bridge
Specify the bridge group number (the number can have any value, but must match the number in profile ports)
Specify the service VLAN ID for the IPTV service
Specify the VLAN ID for IPTV service at the ingress of the access switch
Enable multicast traffic passage
Exit cross-connect profile configuration mode
Switch to the configuration mode of the management VLAN cross-connect profile for the switch behind NTX-SFP
Specify the ONT operating mode as bridge
Specify the bridge group number (the number can have any value, but must match the number in profile ports)
Specify the management VLAN ID
Specify the management VLAN ID at the ingress of the access switch
Exit the cross-connect profile configuration mode
Apply the configuration
Save the changes to non-volatile memory

Configuring the ports service profiles

The principle of configuring ports service profiles on the MA5160 is no different from LTX.

MA5160
MA5160(configure)# profile ports NTX1
MA5160(config)(profile-ports-NTX1)# igmp multicast dynamic-entry 1 vid 30 group 224.0.0.1 239.255.255.254
MA5160(config)(profile-ports-NTX1)# port 1 multicast enable
MA5160(config)(profile-ports-NTX1)# port 1 bridge group 20
MA5160(config)(profile-ports-NTX1)# port 1 igmp downstream tag-control remove-tag
MA5160(config)(profile-ports-NTX1)# port 1 igmp downstream vid 30
MA5160(config)(profile-ports-NTX1)# port 1 igmp upstream tag-control add-tag
MA5160(config)(profile-ports-NTX1)# port 1 igmp upstream vid 2149
MA5160(config)(profile-ports-NTX1)# port 2 multicast enable
MA5160(config)(profile-ports-NTX1)# port 2 bridge group 20
MA5160(config)(profile-ports-NTX1)# port 2 igmp downstream tag-control remove-tag
MA5160(config)(profile-ports-NTX1)# port 2 igmp downstream vid 30
MA5160(config)(profile-ports-NTX1)# port 2 igmp upstream tag-control add-tag
MA5160(config)(profile-ports-NTX1)# port 2 igmp upstream vid 2149
MA5160(config)(profile-ports-NTX1)# exit
MA5160(configure)# profile ports NTX-SFP
MA5160(config)(profile-ports-NTX-SFP)# igmp multicast dynamic-entry 1 vid 30 group 224.0.0.1 239.255.255.254
MA5160(config)(profile-ports-NTX-SFP)# port 1 multicast enable
MA5160(config)(profile-ports-NTX-SFP)# port 1 bridge group 20
MA5160(config)(profile-ports-NTX-SFP)# port 1 igmp downstream tag-control pass
MA5160(config)(profile-ports-NTX-SFP)# port 1 igmp downstream vid 30
MA5160(config)(profile-ports-NTX-SFP)# port 1 igmp upstream tag-control pass
MA5160(config)(profile-ports-NTX-SFP)# port 1 igmp upstream vid 30
MA5160(config)(profile-ports-NTX-SFP)# exit
MA5160(config)# do commit
MA5160(config)# do confirm
Clarification
Switching to the NTX-1 ports profile configuration mode
Specifying the allowed multicast group range
Enabling multicast processing on LAN port 1 of the ONT
Specifying the bridge group number (the number must match the number in the cross-connect) for LAN 1
Creating a rule to remove a VLAN tag for the LAN 1 downstream multicast stream
Specifying the VLAN ID with which the downstream multicast stream arrives from the network for LAN 1
Create a rule to add a VLAN tag for the LAN 1 upstream multicast stream
Specify the VLAN ID with which upstream multicast requests arrive from PON (Internet service VLAN ID) for LAN 1
Enable multicast processing on LAN port 2 of the ONT
Specify the bridge group number (the number must match the number in the cross-connect) for LAN 2
Creating a rule to remove a VLAN tag for the LAN 2 downstream multicast stream
Specifying the VLAN ID with which the downstream multicast stream arrives from the network for LAN 2
Create a rule to add a VLAN tag for the LAN 2 upstream multicast stream
Specify the VLAN ID with which upstream multicast requests arrive from PON (Internet service VLAN ID) for LAN 2
Exit the ports profile configuration mode
Switch to the ports profile configuration mode for NTX-SFP
Specify the allowed range of multicast groups
Enable multicast processing on LAN port 1 of the ONT (for NTX SFP, enable MC forwarding to the switch)
Specify the bridge group number (the number must match the number in cross-connect)
Create a rule to pass multicast traffic downstream without changing the VLAN tag
Specify the VLAN ID with which downstream multicast traffic arrives from the network
Create a rule to pass multicast traffic upstream without changing the VLAN tag
Specify the VLAN ID with which upstream multicast requests arrive from the PON
Exit the ports profile configuration mode
Apply the configuration
Save the changes to non-volatile memory

Configuring VLAN, IGMP snooping and IGMP proxy on OLT

The principle of configuring the ports service profiles on MA5160 is generally similar to LTX, with a few exceptions. IGMP snooping must be enabled both globally (on the control boards) and on the slots (line boards). IGMP proxy report is configured only on the slots.

MA5160
MA5160(configure)# vlan 30
MA5160(config)(vlan-30)# name IPTV
MA5160(config)(vlan-30)# exit
MA5160(configure)# vlan 2149
MA5160(config)(vlan-2149)# name Internet
MA5160(config)(vlan-2149)# exit
MA5160(configure)# vlan 100
MA5160(config)(vlan-100)# name Management
MA5160(config)(vlan-100)# exit
MA5160(configure)# interface front-port 1/1
MA5160(config)(if-front-1/1)# vlan allow 30,100,2149,3149
MA5160(config)(if-front-1/1)# exit
MA5160(configure)# ip igmp snooping enable
MA5160(configure)# slot 1-16
MA5160(config)(slot-1-16)# ip igmp snooping enable 
MA5160(config)(slot-1-16)# ip igmp proxy report enable
MA5160(config)(slot-1-16)# ip igmp proxy report range 224.0.0.1 239.255.255.254 from 2149 to 30
MA5160(config)(slot-1-16)# exit
MA5160(configure)# exit
MA5160(configure)# do commit
MA5160(configure)# do confirm
Clarification
Switch to VLAN 30 (IPTV) editing mode of the internal switch of the FC64 OLT control board
Specify the VLAN name
Exit VLAN editing mode
Switch to VLAN 2149 (Internet) editing mode of the internal switch of the FC64 OLT control board
Specify the VLAN name
Exit VLAN editing mode
Switch to VLAN 100 (Management) editing mode of the internal switch of the FC64 OLT control board
Specify the VLAN name
Exit VLAN editing mode
Switch to front-port 1/1 uplink interface editing mode
Add a VLAN to the uplink interface in tagged (general) mode
Exit uplink interface editing mode
Enable IGMP snooping on control boards
Enter configuration mode for slot range 1-16
Enable IGMP snooping on line boards
Enable proxying of client IGMP report requests
Create a rule to forward client IGMP requests received in VLAN 2149 to multicast VLAN 30
Exit slot range configuration mode
Exit OLT configuration mode
Apply the configuration
Saving the changes to non-volatile memory

Registering line cards and activating ONTs

Registering line cards, changing the pon-type on pon-port interfaces

When connecting line cards, the type of line card must be specified manually in the configuration. It is also necessary to specify the pon-type on the pon-port interface to which the ONTs will be connected.

MA5160
MA5160# configure terminal 
MA5160(configure)# slot 1
MA5160(config)(slot-1)# type lc16xg
MA5160(config)(slot-1)# exit
MA5160(configure)# interface pon-port 1/1
MA5160(config)(if-pon-1/1)# pon-type xgs-pon 
MA5160(config)(if-pon-1/1)# exit
MA5160(configure)# exit
MA5160# commit
MA5160# confirm
Clarification
Enter OLT configuration mode
Enter line slot 1 configuration mode
Specify the line card type as LC16XG (XGS-PON)
Exit slot configuration mode
Switch to the pon-port 1/1 interface configuration mode
Specify pon-type
Exit pon-port interface configuration mode
Exit OLT configuration mode
Apply configuration
Save changes to non-volatile memory

By default, all pon-port interfaces on line cards are configured for GPON mode. This applies even to XGS-PON line cards. Therefore, it is necessary to change the pon-port type to connect an XGS-PON ONT.

Registering ONT on OLT and assigning the configuration to the ONT

The procedure for registering and applying the configuration to the ONT is similar to LTX.

MA5160
MA5160# show interface ont 1/1 connected
MA5160# configure terminal
MA5160(configure)# interface ont 1/1
MA5160(config)(if-ont-1/1/1)# serial ELTX6F0000EE
MA5160(config)(if-ont-1/1/1)# service 1 profile cross-connect HSI_NTX1 dba dba1
MA5160(config)(if-ont-1/1/1)# profile ports NTX1
MA5160(config)(if-ont-1/1/1)# exit
MA5160(configure)# interface ont 1/1/2
MA5160(config)(if-ont-1/1/2)# serial ELTXA50000F8
MA5160(config)(if-ont-1/1/2)# service 1 profile cross-connect HSI_NTX-SFP dba dba1
MA5160(config)(if-ont-1/1/2)# service 2 profile cross-connect IPTV_NTX-SFP dba dba1
MA5160(config)(if-ont-1/1/2)# service 3 profile cross-connect MGMT_NTX-SFP dba dba1
MA5160(config)(if-ont-1/1/1)# profile ports NTX-SFP
MA5160(config)(if-ont-1/1/1)# exit
MA5160(configure)# do commit
MA5160(configure)# do confirm
Clarification
Display a list of connected ONTs and their PON serial numbers (ONTs must be connected to the OLT when the command is entered)
Switch to the OLT configuration mode
Switch to ont 1/1/1 editing mode (slot number / channel number / ont id on the channel)
Specify the ONT's PON serial number (can be copied from the list of connected devices)
Assign the Internet+IPTV cross-connect profile to the ONT
Assign the ports profile to the ONT
Exit the ONT editing mode
Switch to the ONT 1/1/2 editing mode
Specify the ONT's PON serial number
Assign cross-connect Internet profile to the ONT
Assign cross-connect IPTV profile to the ONT
Assign the cross-connect profile with management VLAN to ONT
Assign the ports profile to ONT
Exit the ONT editing mode
Apply the configuration
Save changes to non-volatile memory

Checking PON services operation

Performed similarly to LTX. Verification of service operation is described in the Configuring OLT and ONT in CLI (XGS-PON diagram) section.

  • Нет меток