Displaying 2 results from an estimated 2 matches for "low_cir".
Did you mean:
low_ci
2005 Apr 27
0
Ingress and polishing
...B but not a maximum rate in kbps.
Kind regards,
Pieter
Able
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...
2004 Dec 27
0
Ingress question with sub classes
...$rest = class ( rate ($maxUpstream / 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 Buck...