Login
Remember
Register
Ask a Question
Difference between Leaky bucket and Token bucket algorithm?
0
votes
asked
Jan 25, 2024
in
Other
by
sharadyadav1986
Difference between Leaky bucket and Token bucket algorithm?
leakybucket
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 25, 2024
by
sharadyadav1986
Leaky Bucket
Token Bucket
When the host has to send a packet, the packet is thrown in a bucket.
This leaky bucket holds tokens generated at regular intervals of time.
Bucket leaks at a constant rate
The bucket has a maximum capacity.
Bursty traffic is converted into uniform traffic by leaky buckets.
Bucket there is a ready packet, a token is removed from the bucket and the packet is sent.
In practice, a bucket is a finite queue output at a finite rate.
If there is no token in the bucket, the packet can not be sent.
...