Got it

OLT Cascade

Created: Mar 23, 2020 20:55:47Latest reply: Mar 24, 2020 02:57:07 901 4 1 0 0
  Rewarded HiCoins: 0 (problem resolved)

Hi, there.

Can I connect two MA5680Ts? How do I connect?

Thank you!

Featured Answers
liqiang185
Admin Created Mar 24, 2020 02:57:07

Dear friend!

You can refer to the following configuration steps:

Configure the master NE

1. Set the network role of the upstream board or port of the master NE.

Enter the specific board mode according to the upstream board types. Run the network-role [ port-id ] uplink command to set the network role of the board or port to upstream.

2. Set the network role of the cascade board or port of the master NE.

Enter the specific board mode according to the cascade board types. Run the network-role [ port-id ] cascade command to set the network role of the board or port to cascading.

3. Configure the VLAN of the master NE.

The VLAN type is smart, and the VLAN attribute is common.

4. Add an upstream port to the VLAN of the master NE.

According to the upstream board types, run the port vlan or service-port command in global config mode to add an upstream port to the VLAN.

5. Add a cascade port to the VLAN of the master NE.

According to the cascade board types, run the port vlan or service-port command in global config mode to add the cascade port to the VLAN.


Configure the slave NE

1. Set the network role of the upstream board or port of the slave NE.

Enter the specific board mode according to the upstream board types. Run the network-role [ port-id ] uplink command to set the network role of the board or port to upstream.

2. Configure the VLAN of the slave NE. The VLAN of the slave NE is the same as the VLAN of the master VLAN.

The VLAN type is smart, and the VLAN attribute is common.

Add an upstream port to the VLAN of the slave NE.

According to the upstream board types, run the port vlan or service-port command in global config mode to add an upstream port to the VLAN.

Example

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the GIU board. To add upstream port 0/19/0 and cascade port 0/19/1 of huawei_A to VLAN 100, and add upstream port 0/19/0 of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface giu 0/19

huawei_A(config-if-giu-0/19)#network-role 1 cascade

huawei_A(config-if-giu-0/19)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

huawei_A(config)#port vlan 100 0/19 1

 

huawei_B(config)#vlan 100 smart

huawei_B(config)#port vlan 100 0/19 0

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the ETHB board. To add upstream port 0/19/0 and cascade port 0/2/0 of huawei_A to VLAN 100, and add upstream port 0/19/0 of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface eth 0/2

huawei_A(config-if-eth-0/2)#network-role cascade

huawei_A(config-if-eth-0/2)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

huawei_A(config)#port vlan 100 0/2 0

 

huawei_B(config)#vlan 100 smart

huawei_B(config)#port vlan 100 0/19 0

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the SPUA board. To add upstream port 0/19/0 and cascade port 0/2/0 of huawei_A to VLAN 100, and add upstream port 0/2/1 on the SPUA board of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface eth 0/2

huawei_A(config-if-eth-0/2)#network-role cascade

huawei_A(config-if-eth-0/2)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

//Configure cascading on the SPUA board.

huawei_A(config)#service-port vlan 100 eth 0/2/0 multi-service user-vlan 100

 

huawei_B(config)#vlan 100 smart

//Configure upstream transmission on the SPUA board.

huawei_B(config)#service-port vlan 100 eth 0/2/1 multi-service user-vlan 100


Thanks!

View more
  • x
  • convention:

Wassim
Wassim Created Mar 24, 2020 08:55:09 (0) (0)
Thank you!  

Recommended answer

wissal
MVE Created Mar 23, 2020 21:23:14

Hello,


Yes, there are two OLTA and OLTB configurations.

The specific configuration is as follows. (Assuming that the OLT_B is cascaded through the OPGD board)

Steps


1. Configure management VLAN and management IP.

The management VLAN is 8, the management IP address is 192.168.50.30, and the subnet mask is 255.255.255.0.

huawei(config)#vlan 8 smart
huawei(config)#interface vlanif 8
huawei(config-if-vlanif8)#ip address 192.168.50.30 24


2. Configure cascading with OLT_B.

OLT_A is cascaded to OLT_B through GE port 0/2/1 of the OPGD board. Set the port attribute to "cascade" and add the cascade port to VLAN 300.

huawei(config)#interface opg 0/2
huawei(config-if-opg-0/2)#network-role cascade
huawei(config-if-opg-0/2)#quit
huawei(config)#vlan 300 smart
huawei(config)#port vlan 300 0/2 1


Thanks


View more
  • x
  • convention:

Wassim
Wassim Created Mar 24, 2020 08:55:40 (0) (0)
Thank you!  
All Answers

Hello,


Yes, there are two OLTA and OLTB configurations.

The specific configuration is as follows. (Assuming that the OLT_B is cascaded through the OPGD board)

Steps


1. Configure management VLAN and management IP.

The management VLAN is 8, the management IP address is 192.168.50.30, and the subnet mask is 255.255.255.0.

huawei(config)#vlan 8 smart
huawei(config)#interface vlanif 8
huawei(config-if-vlanif8)#ip address 192.168.50.30 24


2. Configure cascading with OLT_B.

OLT_A is cascaded to OLT_B through GE port 0/2/1 of the OPGD board. Set the port attribute to "cascade" and add the cascade port to VLAN 300.

huawei(config)#interface opg 0/2
huawei(config-if-opg-0/2)#network-role cascade
huawei(config-if-opg-0/2)#quit
huawei(config)#vlan 300 smart
huawei(config)#port vlan 300 0/2 1


Thanks


View more
  • x
  • convention:

Wassim
Wassim Created Mar 24, 2020 08:55:40 (0) (0)
Thank you!  

Dear friend!

You can refer to the following configuration steps:

Configure the master NE

1. Set the network role of the upstream board or port of the master NE.

Enter the specific board mode according to the upstream board types. Run the network-role [ port-id ] uplink command to set the network role of the board or port to upstream.

2. Set the network role of the cascade board or port of the master NE.

Enter the specific board mode according to the cascade board types. Run the network-role [ port-id ] cascade command to set the network role of the board or port to cascading.

3. Configure the VLAN of the master NE.

The VLAN type is smart, and the VLAN attribute is common.

4. Add an upstream port to the VLAN of the master NE.

According to the upstream board types, run the port vlan or service-port command in global config mode to add an upstream port to the VLAN.

5. Add a cascade port to the VLAN of the master NE.

According to the cascade board types, run the port vlan or service-port command in global config mode to add the cascade port to the VLAN.


Configure the slave NE

1. Set the network role of the upstream board or port of the slave NE.

Enter the specific board mode according to the upstream board types. Run the network-role [ port-id ] uplink command to set the network role of the board or port to upstream.

2. Configure the VLAN of the slave NE. The VLAN of the slave NE is the same as the VLAN of the master VLAN.

The VLAN type is smart, and the VLAN attribute is common.

Add an upstream port to the VLAN of the slave NE.

According to the upstream board types, run the port vlan or service-port command in global config mode to add an upstream port to the VLAN.

Example

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the GIU board. To add upstream port 0/19/0 and cascade port 0/19/1 of huawei_A to VLAN 100, and add upstream port 0/19/0 of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface giu 0/19

huawei_A(config-if-giu-0/19)#network-role 1 cascade

huawei_A(config-if-giu-0/19)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

huawei_A(config)#port vlan 100 0/19 1

 

huawei_B(config)#vlan 100 smart

huawei_B(config)#port vlan 100 0/19 0

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the ETHB board. To add upstream port 0/19/0 and cascade port 0/2/0 of huawei_A to VLAN 100, and add upstream port 0/19/0 of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface eth 0/2

huawei_A(config-if-eth-0/2)#network-role cascade

huawei_A(config-if-eth-0/2)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

huawei_A(config)#port vlan 100 0/2 0

 

huawei_B(config)#vlan 100 smart

huawei_B(config)#port vlan 100 0/19 0

Assume that master NE huawei_A and slave NE huawei_B are cascaded through the SPUA board. To add upstream port 0/19/0 and cascade port 0/2/0 of huawei_A to VLAN 100, and add upstream port 0/2/1 on the SPUA board of huawei_B to VLAN 100, do as follows:

huawei_A(config)#interface eth 0/2

huawei_A(config-if-eth-0/2)#network-role cascade

huawei_A(config-if-eth-0/2)#quit

huawei_A(config)#vlan 100 smart

huawei_A(config)#port vlan 100 0/19 0

//Configure cascading on the SPUA board.

huawei_A(config)#service-port vlan 100 eth 0/2/0 multi-service user-vlan 100

 

huawei_B(config)#vlan 100 smart

//Configure upstream transmission on the SPUA board.

huawei_B(config)#service-port vlan 100 eth 0/2/1 multi-service user-vlan 100


Thanks!

View more
  • x
  • convention:

Wassim
Wassim Created Mar 24, 2020 08:55:09 (0) (0)
Thank you!  

Comment

You need to log in to comment to the post Login | Register
Comment

Notice: To protect the legitimate rights and interests of you, the community, and third parties, do not release content that may bring legal risks to all parties, including but are not limited to the following:
  • Politically sensitive content
  • Content concerning pornography, gambling, and drug abuse
  • Content that may disclose or infringe upon others ' commercial secrets, intellectual properties, including trade marks, copyrights, and patents, and personal privacy
Do not share your account and password with others. All operations performed using your account will be regarded as your own actions and all consequences arising therefrom will be borne by you. For details, see " User Agreement."

My Followers

Login and enjoy all the member benefits

Login

Block
Are you sure to block this user?
Users on your blacklist cannot comment on your post,cannot mention you, cannot send you private messages.
Reminder
Please bind your phone number to obtain invitation bonus.