This commit is contained in:
JOLIMAITRE Matthieu 2024-06-21 04:03:34 +02:00
parent 2dd5eedd00
commit fbe4f314f9
2 changed files with 47 additions and 2 deletions

View file

@ -170,6 +170,8 @@ pcap_analyzer ./trace2.pcap stats
# Last timestamp: 1474309098.10
# Avg packet rate: 0.0014
# Errors: 1717607
# Main Protocols:
# - 6 (TCP - Transmission Control) 28893393 ( 94.39%)
```
La trace contient 28 893 393 paquets IPv4.
@ -185,3 +187,22 @@ Le timestamp du premier paquet de la trace est 1 474 265 898.92 secondes.
#### What is the average packet rate (in packets per second to two decimal places) of the trace (as Avg packet rate:)?
Le taux de paquets de la trace est 0.0014 paquet par seconde.
#### What is the packet protocol distribution? (A table showing the 5 top protocols and their respective contributions is fine.)
94.39% des paquets sont des paquets TCP. Les autres paquets n'ont pas d'entête IPv4.
#### Plot a histogram of the packet size distribution (the Python numpy and matplot packages are installed on the Labtainer).
...
#### How many unique IPv4 source addresses are present in the trace (as Unique sources:)?
#### How many unique IPv4 destination addresses are present in the trace (as Unique destinations:)?
#### Create a cumulative distribution function (CDF) plot. The x-axis is the number of bytes sent and the y-axis is the cumulative fraction of sources.
...
#### Which source sent the most bytes (as Source with most bytes:)?
#### Which source sent the most packets (as Source with most packets:)? Based on your analysis of the trace:
#### List 3 characteristics of the traffic that seem unusual to you.
#### Provide a reasonable explanation for what traffic the trace represents, taking into account the unusual characteristics you have identified.