Skip to main content

Posts

Showing posts with the label Traffic

Pareto On/Off Traffic Generator

 The Pareto On/Off Traffic Generator (POO_Traffic) is a traffic generator (an application) embodied in the OTcl class Application/Traffic/Pareto. POO_Traffic generates traffic according to a Pareto On/Off distribution. Packets are sent at a fixed rate during on periods, and no packets are sent during off periods. Both on and off periods are taken from a Pareto distribution with constant size packets. These sources can be used to generate aggregate traffic that exhibits long range dependency. For other traffic generators, refer to the  NS manual . Usage Example A new Pareto On/Off traffic generator can be created as follows: set p [new Application/Traffic/Pareto] $p set burst_time_ 500ms $p set idle_time_ 500ms $p set rate_ 200k $p set packetSize_ 210 $p set shape_ 1.5 Detailed Explanation Input parameters: burst_time_ : Mean On (burst) time idle_time_ : Mean Off (idle) time rate_ : Send rate during burst packetSize...