-
Notifications
You must be signed in to change notification settings - Fork 60
/
sdn-example-physical.json
74 lines (72 loc) · 1.6 KB
/
sdn-example-physical.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"nodes" : [
{
"name": "core",
"type" : "core",
"iops" : 1000000000,
"upports" : 0,
"downports" : 2,
"bw" : 12500000,
},
{
"name": "edge1",
"type" : "edge",
"iops" : 1000000000,
"upports" : 1,
"downports" : 4,
"bw" : 12500000,
},
{
"name": "edge2",
"type" : "edge",
"iops" : 1000000000,
"upports" : 1,
"downports" : 4,
"bw" : 12500000,
},
{
"name": "host01",
"type" : "host",
"pes" : 1,
"mips" : 30000000,
"ram" : 10240,
"storage" : 10000000,
"bw" : 12500000,
},
{
"name": "host02",
"type" : "host",
"pes" : 1,
"mips" : 30000000,
"ram" : 10240,
"storage" : 10000000,
"bw" : 12500000,
},
{
"name": "host03",
"type" : "host",
"pes" : 1,
"mips" : 30000000,
"ram" : 10240,
"storage" : 10000000,
"bw" : 12500000,
},
{
"name": "host04",
"type" : "host",
"pes" : 1,
"mips" : 30000000,
"ram" : 10240,
"storage" : 10000000,
"bw" : 12500000,
}
],
"links" : [
{ "source" : "core" , "destination" : "edge1" , "latency" : 1.0 },
{ "source" : "core" , "destination" : "edge2" , "latency" : 1.0 },
{ "source" : "edge1" , "destination" : "host01" , "latency" : 1.0 },
{ "source" : "edge1" , "destination" : "host02" , "latency" : 1.0 },
{ "source" : "edge2" , "destination" : "host03" , "latency" : 1.0 },
{ "source" : "edge2" , "destination" : "host04" , "latency" : 1.0 },
]
}