Displaying 2 results from an estimated 2 matches for "low_pir".
Did you mean:
low_cir
2005 Apr 27
0
Ingress and polishing
...Code 1 :
-----------------
// incoming traffic
ingress {
// speeds
$medium_cir = $maxDownstream / 4;
$medium_pir = $maxDownstream / 4 * 2;
$low_cir = $maxDownstream / 4;
$low_pir = $maxDownstream / 4;
// variables to make categories
$is_medium = (tcp_sport == PORT_SMTP);
$is_low = 1;
// Double Leaky Buckets
$is_medium_pol = DLB(cir $medium_cir...
2004 Dec 27
0
Ingress question with sub classes
...am / 8)
bps, ceil ($maxUpstream / 4) bps ) ;
}
}
}
// 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 $ver...