-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopology.json
More file actions
55 lines (55 loc) · 1.16 KB
/
topology.json
File metadata and controls
55 lines (55 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"switches": [
"s1",
"s2",
"s3",
"s4"
],
"links": [
{
"src": "s1",
"dst": "s2",
"type": "SF",
"bandwidth": 0,
"latency": 10,
"jitter": 5,
"packet_loss": null
},
{
"src": "s2",
"dst": "s3",
"type": "SF",
"bandwidth": null,
"latency": null,
"jitter": null,
"packet_loss": null
},
{
"src": "s3",
"dst": "s4",
"type": "SF",
"bandwidth": null,
"latency": null,
"jitter": null,
"packet_loss": null
},
{
"src": "s1",
"dst": "p0",
"type": "physical",
"bandwidth": null,
"latency": null,
"jitter": null,
"packet_loss": null
},
{
"src": "s4",
"dst": "p1",
"type": "physical",
"bandwidth": null,
"latency": null,
"jitter": null,
"packet_loss": null
}
]
}