-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: calculate forward and backward loss (#860) - WIP
- Loading branch information
1 parent
05e674a
commit d9f3686
Showing
6 changed files
with
135 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
crates/trippy-core/tests/resources/simulation/ipv4_icmp_loss.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: IPv4/ICMP with 9 hops, 2 of which do not respond | ||
target: 10.0.0.109 | ||
protocol: Icmp | ||
icmp_identifier: 3 | ||
hops: | ||
- ttl: 1 | ||
resp: !SingleHost | ||
addr: 10.0.0.101 | ||
rtt_ms: 10 | ||
- ttl: 2 | ||
resp: NoResponse | ||
- ttl: 3 | ||
resp: !SingleHost | ||
addr: 10.0.0.103 | ||
rtt_ms: 20 | ||
- ttl: 4 | ||
resp: !SingleHost | ||
addr: 10.0.0.104 | ||
rtt_ms: 20 | ||
- ttl: 5 | ||
resp: !SingleHost | ||
addr: 10.0.0.105 | ||
rtt_ms: 20 | ||
- ttl: 6 | ||
resp: !SingleHost | ||
addr: 10.0.0.106 | ||
rtt_ms: 20 | ||
- ttl: 7 | ||
resp: !SingleHost | ||
addr: 10.0.0.107 | ||
rtt_ms: 20 | ||
- ttl: 8 | ||
resp: NoResponse | ||
- ttl: 9 | ||
resp: !SingleHost | ||
addr: 10.0.0.109 | ||
rtt_ms: 20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters