Displaying 1 result from an estimated 1 matches for "is_veryhigh".
2004 Dec 27
0
Ingress question with sub classes
...}
// incoming traffic
ingress {
// speeds
$veryhigh_cir = $maxDownstream / 4;
$veryhigh_pir = $maxDownstream / 4 * 3;
$low_cir = $maxDownstream / 4;
$low_pir = $maxDownstream / 4;
// variables to make categories
$is_veryhigh = (tcp_sport == PORT_SSH && ip_tos_delay == 1)
|| (ip_proto == 50) || (ip_proto == 47);
$is_low = 1;
// Double Leaky Buckets
$is_veryhigh_pol = DLB(cir $veryhigh_cir bps,cbs 20kB,pir
$veryhigh_pir bps,pbs 5kB) {
==========>>...