Computers & Internet Logo

Related Topics:

R
Rose li Posted on Jun 07, 2016
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

What are the limitations for configuring link aggregation and protection on the ETHA, ETHB, and GIU boards?

1 Answer

hone zhang

Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Habit-Forming:

Visited the website for 3 consecutive days.

New Friend:

An expert that has 1 follower.

  • Expert 57 Answers
  • Posted on Jun 07, 2016
hone zhang
Expert
Level 2:

An expert who has achieved level 2 by getting 100 points

MVP:

An expert that got 5 achievements.

Habit-Forming:

Visited the website for 3 consecutive days.

New Friend:

An expert that has 1 follower.

Joined: Jul 27, 2015
Answers
57
Questions
62
Helped
13256
Points
249

The ETHA board supports only intra-board aggregation groups and protect groups, but does not support inter-board aggregation groups or protect groups. In addition, the ETHA board can be used for cascading but not for upstream transmission.
The ETHB and GIU boards support both intra-board aggregation groups and protect groups, and inter-board aggregation groups and protect groups. Inter-board aggregation groups and protect groups can be set up only between the ports on the boards of the same type. For example, a port on the ETHB board and a port on the GIU board cannot form an inter-board aggregation group.
When setting up an aggregation group or protect group, pay attention to the following points:
· A port can be directly added to a protect group. Or, it can be added to an aggregation group and then to a protect group. A port that has been added to a protect group, however, cannot be added to an aggregation group.
· Switching is of low efficiency between the ports that are in a protect group only, but switching is highly efficient between the ports that are both in an aggregation group and in a protect group. In this case, it is recommended that you add ports to an aggregation group and then to a protect group. This shortens service interruption.

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

Why doesn't has uplink board for MA5608T?

There is no uplink board in MA5608T,can change the OLT work mode to configure link-aggregation or protect-group in 2 main boards ,to meet the requirement of network redundancy and security or extend uplink bandwidth. ... We have a very important problem: our OLT doesn't synchronize.
tip

How to divide bandwidth in squid

What is Bandwidth throttling :

Consider we are having 512Kbps Internet connection line. And the system administrator wants to divide the whole bandwidth into two sections. Read More One for the normal users and the other for special users who need high speed internet connection. So that all the normal users can use 256 Kbps and the special users can use the remaining 256 Kbps. So in this case you have to make a bandwidth throttling to differentiate the whole single pipe line into two sections. This can be achieved using squid proxy server.

Squid main configuration file ----- /etc/squid/squid.conf
Squid log file ----- /var/log/squid/access.log
Cache log file ----- /var/log/squid/cache.log

Bandwidth throttling in squid is done using Delay Pools. Delay pools uses bucketing system.

Throttle Calculations
512Kbps(Kilo bits per second) -----> 64Kbytes -----> 64000bytes
256Kbps -----> 32Kbytes -----> 32000bytes
128Kbps -----> 16Kbytes -----> 16000bytes
64Kbps -----> 8Kbytes -----> 8000bytes

Points to remember in Delay Pools:
There are basically three things to note, they are - delay pools, delay class, delay parameters.

Delay pool --- Defines how many pools we want to use
Delay Class ---- Defines type of the pool you are going to use.
Delay Parameter � allots the restrictions and fill rate/maximum bucket size.

As I have said previously in this documentation delay pools uses bucketing system.
Now there are three types of buckets

Class 1 pool: A single aggregate bucket, shared by all users
Class 2 pool: One aggregate bucket, 256 individual buckets
Class 3 pool: One aggregate bucket, 256 network buckets, 65,536 individual buckets

If you still have any problem in the above syntax (ie) aggregate, network and individual buckets to understand, then here is a simple syntax/example for all these

For Class 1 delay pool
delay_parameters 1 32000/32000

For Class 2 delay pool
delay_parameters 1 48000/48000 48000/48000

For Class 3 delay pool
delay_parameters 2 32000/32000 8000/8000 16384/16384

Example Setup:
One 512Kbps pipe line. We want to distribute the whole pipe line into 2. One for normal users and other for special users as follows
Normal users --- 128 Kbps
Special Users --- 384 Kbps

Configuration Setup File /etc/squid/squid.conf:
Before getting into the delay pools setup first create the acl(Access Control List). Through acl you can define rules according to your requirements. Find the Access Control section in the squid.conf file.
Here is an example:

acl superusers src 192.168.1.1 192.168.1.2 192.168.1.3
acl mynetwork src 192.168.1.0/255.255.255.0

Here in the above example only three users are special users who need 256Kbps bandwidth which are listed in the specialusers label and the whole network including he special users are labeled as mynetwork.

After creating the users you have to allow them to access the internet. Below line specifies for allowing the mentioned labeled users.

http_access allow superusers
http_access allow mynetwork

Now comes the funny part Delay Pools. Here We will deal with a basic example for delay pools.

The example is as follows: We are having 512Kbps pipe line connection. We want to divide it into segments one for the special users, web servers and the other for the normal users in the organization. The special users and the web servers are given 384Kbps speed and the remaining 128Kbps for the normal users.

Delay Pools for super users:
Check for the delay pools section in the squid.conf file.
Start the configuration for delay pools as follows
==================================
########## Delay Pools############
==================================

delay_pools 2

As described above we have to create 2 delay pools, one for each delay class.
====================================================
######### Defining Delay pool 1 in class 2 #########
====================================================

delay_class 1 2
delay_parameters 1 48000/48000 48000/48000
delay_access 1 allow superusers

The first line specifies Delay Class which defines delay pool 1 for the delay class 2.

Why we are using delay class 2 here?

The first part on the second line ie �1� defines the pool One(1)

The second part on second line defines the aggregate 48000/48000(restore/max). where restore is the number of bytes (not bits - modem and network speeds are usually quoted in bits) per second placed into the bucket, and maximum is the maximum number of bytes which can be in the bucket at any time.

The third part on second line is individual buckets again 48000/48000(restore/max). All the special users and the web servers should obtain the same speed of 384 Kbps.

The third line allows the super users to fall in that bucket.

=====================================================
######### Defining Delay pool 2 in class 3 #########
=====================================================

Delay Pools for normal users:

delay_class 2 3
delay_parameters 2 32000/32000 8000/8000 16384/16384
delay_access 2 allow !superusers

The first line specifies Delay Class which defines delay pool 2 for the delay class 3.

The first part on the second line ie �2� defines the pool Two(2) of class three(3)

The second part on second line defines the aggregate 32000/32000(restore/max) as aggregate (ie for whole).
Note : - If you use -1/-1. �-1� indicates �unlimited�.

The third part on second line is network bucket. We have defined here 8000/8000 .

The fourth part on second line is for individual.

The third line specifies to throttle all the users except the super users.

How to check:
First set proxy settings in your browser as follows:
Go to any client machine and open an IE(Internet Explorer). Select "Tools" menu then select "Internet Options" then select "Connections" tab. After that select the "LAN Settings" button, you will get a new pop-up window there you select "Use proxy server for your LAN" check box and finally give your squid proxy servers ip address and the port on which the squid proxy server is configured. Now press "OK" and again press "OK". Cloase the window and now open a new window.
Second Check by downloading any large file

Start to download any lage file not less than 10MB size. Because when ever you download any small file it used to download it quickly. When you start downloading large file at first if you note some starting bytes of the file gets downloaded quickly and later it gets slowed down.

Keep a note on the download pop-up box which shows the speed limits in "kbps". When we start downloading note on the pop-up box the speed limits in kbps shows high value and then slowly gets decreased. This means when you start downloading the bucket gets filled and slowly it decreases and becomes stable to the specified limit in Kbps according to the configuration. Remember again as i told restore value is used to set the download speed, and the max value lets you set the size at which the files are to be slowed down from.
0helpful
1answer

How does a GE optical port on the control board of the MA562x series support link aggregation

MA562x V800R307C00 supports the daughter board with two GE optical ports but only one port can be displayed. In addition, MA562x V800R307C00 does not support an aggregation group of upstream ports on the control board.
MA562x V800R307C01 and later versions support the daughter board with two GE optical ports and aggregation group of upstream ports on the control board.
MA562x V800R308C00 supports the daughter board with two GE optical ports and aggregation group of upstream ports on the control board.
The MA562x does not support link aggregation of ETH service ports.
Related Huawei MA5626 24FE Model
0helpful
1answer

How to Configure DBA When GPBD/GPFD and the OT928G Are Used Together

Answer When GPBD/GPFD and the OT928G are used together, DBA configurations need to meet the following requirements:
· The DBA bandwidth mode is minimum delay.
· The DBA bandwidth type is fixed, that is, type 1.
· The DBA minimum bandwidth is 37376 kbit/s.
· The bandwidth compensation is enabled.
In the maximum bandwidth mode, the OT928G has the following limitations:
· The E1 services are unavailable when there are more than six channels.
· The TDM service is unavailable.
Huawei GPFD boards Thunder link com Huawei GPFD boards Thunder link com
Oct 26, 2016 • Cell Phones
0helpful
1answer

Can I link audio out from one to another?

  1. From the Finder, choose Utilities from the Go menu. Open the AudioMIDI Setup application.
  2. Click the Add (+) button on the bottom-left corner in the Audio Devices window and chose Create Aggregate Device:
  3. A new aggregate device appears in the list on the left side of the window. To rename the device, double-click it:
  4. With the new aggregate device selected, enable the checkbox labeled "Use" on the left side of the Audio Devices window. Do this for each device you want to include in the aggregate device. The order in which you check the boxes determines the order of the inputs and outputs in applications like Logic and MainStage. For example, the first box you checked will be inputs one and two, the second box checked will be three and four, and so on.
  5. To use the clock of a device as the master clock for all the combined devices, choose the device from the aggregate device's Clock Source pop-up menu. Choose the device with the most reliable clock:
  6. If your audio devices all work with word clock, connect them together using a word clock cable. Connect the cable from the device you designated as Clock Source in step 5 to the input of each other device. Refer to your audio device product documentation for specific details.
  7. If any of your devices do not work with word clock, enable the Drift Correction checkbox for the devices that are not designated clock master.
0helpful
1answer

Getting limited access on my laptop

Try to re-configure your router for the wireless connection and disable WI-FI protected setup located at advanced.
0helpful
1answer

Asus A626 WiFi

I fixed my problem with my D-Link DIR-625 router by going and changing a couple of things. I'm not sure which one did it, but this is what I changed:

1. Under the advanced tab turn off 'Wi-Fi Protected Setup'

2. Under the advanced tab - Advanced Wireless option:
Advanced Wireless Settings Transmit Power : High Medium Low
Beacon Period : (20..1000)
RTS Threshold : (0..2347)
Fragmentation Threshold : (256..2346)
DTIM Interval : (1..255)
802.11d Enable :
WLAN Partition :
WMM Enable :
Aggregation Limit : 8 Kbytes 16 Kbytes 32 Kbytes 64 Kbytes
TPC Max Gain : (0..50)
Aggregation Max Size : (2000..65535)
Aggregation Num Packets : (1..64)
Force Short Slot for 11N Clients :
Short GI :



Not finding what you are looking for?

435 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...