On Sep 15, 10:08 pm, hayet <
msilini_ha...@yahoo.fr> wrote:
> I know that i can visualise metrics with wireshark but my problem is
> haw to write a script that calculate delay, jitter and packet loss for
> wireless network
You might want to take a look at tracing subsystem.
Then, you should add timestamps as tags to all your packets and then
trace the delay (Now() - Packet's sendtime) to some file (see the
previous few threads about using tracing). Calculating jitter is just
applying some statistics to observed delays and loss of course you can
do with an incrementing packet counter tag and seeing what's dropping.
I'm not sure if such functionality is already builtin to Netdevices
for automatically adding such tags..