aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorial/tutorial01.json
blob: dbef980f8ed141200f75b4d6d502a9c30b7fa429 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
    "resources": [
        {
            "type": "Group",
            "name": "topology"
        },
        {
            "type": "Physical",
            "name": "server",
            "hostname": "localhost"
        },
        {
            "type": "NetDevice",
            "device_name": "eth0",
            "node": "server",
            "managed": false
        },
        {
            "type": "LxcImage",
            "name": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "image": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "name": "prod1",
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "image": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "name": "prod2",
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "image": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "name": "core2",
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "image": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "name": "core1",
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "image": "ubuntu1604-cicnsuite-rc2",
            "groups": ["topology"],
            "name": "cons1",
            "node": "server"
        },
        {
            "type": "LxcContainer",
            "name": "cons2",
            "groups": ["topology"],
            "node": "server",
            "image": "ubuntu1604-cicnsuite-rc2"
        },
        {
            "type": "MetisForwarder",
            "node": "prod1"
        },
        {
            "type": "WebServer",
            "node": "prod1",
            "prefixes": [
                "/webserver1"
            ]
        },
        {
            "type": "MetisForwarder",
            "node": "prod2"
        },
        {
            "type": "WebServer",
            "node": "prod2",
            "prefixes": [
                "/webserver2"
            ]
        },
        {
            "type": "MetisForwarder",
            "node": "core2"
        },
        {
            "type": "MetisForwarder",
            "node": "core1"
        },
        {
            "type": "MetisForwarder",
            "node": "cons1"
        },
        {
            "type": "MetisForwarder",
            "node": "cons2"
        },
        {
            "type": "Link",
            "groups": ["topology"],
            "src_node": "cons1",
            "dst_node": "core1"
        },
        {
            "type": "Link",
            "groups": ["topology"],
            "src_node": "cons2",
            "dst_node": "core1"
        },
        {
            "type": "Link",
            "groups": ["topology"],
            "src_node": "core1",
            "dst_node": "core2"
        },
        {
            "type": "Link",
            "groups": ["topology"],
            "src_node": "core2",
            "dst_node": "prod1"
        },
        {
            "type": "Link",
            "groups": ["topology"],
            "src_node": "core2",
            "dst_node": "prod2"
        },
        {
            "type": "CentralIP",
            "ip_routing_strategy": "spt",
	    "ip6_data_prefix": "2001::/50",
	    "ip4_data_prefix": "192.168.128.0/24",
	    "groups": ["topology"]
        },
        {
            "type": "CentralICN",
            "face_protocol": "udp4",
	    "groups": ["topology"]
        }
    ]
}