[Contents] [Prev] [Next] [Index] [Report an Error]

Differences Between Gigabit Ethernet IQ and Gigabit Ethernet IQ2 PICs

The following CoS differences arise because Gigabit Ethernet IQ PICs and Gigabit Ethernet IQ2 PICs use different hardware:

This configuration defines a drop profile with a linear drop probability curve when the fill level is between 20 and 100 percent, and a maximum drop probability of 80 percent.

You can configure more than two fill levels in the drop profile, but the software only uses the points (min_fill_level, 0) and (max_fill_level, max_probability) and ignores other fill levels. The drop probability at the minimum fill level is set to 0 percent even if you configure a non-zero drop probability value at the minimum fill level. The following example shows a sample configuration and the software implementation:

Configuration

class-of-service {
drop-profiles {
drop-iq2-example2 {
fill-level 30 drop-probability 10;
fill-level 40 drop-probability 20;
fill-level 100 drop-probability 80;
}
}
}

Implementation

class-of-service {
drop-profiles {
drop-iq2-example2-implementation {
fill-level 30 drop-probability 0;
fill-level 100 drop-probability 80;
}
}
}

If you configure more than two fill levels, a system log message warns you that the software supports only two fill levels and displays the drop profile that is implemented.

Though the interpolate statement is supported in the definition of a RED drop profile, we do not recommend using it. The following example shows a sample configuration and the software implementation:

Configuration

class-of-service {
drop-profiles {
drop-iq2-example3 {
interpolate {
fill-level [ 30 50 80 ];
drop-probability [ 10 20 40 ];
}
}
}
}

When you use the interpolate statement and the maximum fill level is not 100 percent, the software adds the point (100, 100). Therefore, the drop-iq2-example3 drop profile is implemented as:

Implementation

class-of-service {
drop-profiles {
drop-iq2-example3-implementation {
fill-level 2 drop-probability 0;
fill-level 100 drop-probability 100;
}
}
}

The implemented minimum fill level is not 30 percent as configured, but 2 percent because of the 64-point interpolation.


[Contents] [Prev] [Next] [Index] [Report an Error]