-
Notifications
You must be signed in to change notification settings - Fork 3
/
simple.yml
68 lines (68 loc) · 1.04 KB
/
simple.yml
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
layers:
- Web:
nodes:
- WebLB:
ports:
- 80/tcp
- 443/tcp
type: LB
url: https://github.com/otahi/network_drawer/
- Web001:
ports:
- 80/tcp
- Web002:
ports:
- 80/tcp
- App:
nodes:
- AppLB:
ports:
- 80/tcp
- 25/tcp
type: LB
- App001:
ports:
- 80/tcp
- 25/tcp
- App002:
ports:
- 80/tcp
- 25/tcp
nodes:
- Browser:
type: Client
- Mail Server:
type: Client
connections:
- from: Browser
to: WebLB:80/tcp
type: HTTP
- from: Browser
to: WebLB:443/tcp
- from: Mail Server
to: AppLB:25/tcp
type: SMTP
- from: WebLB
to: Web001:80/tcp
type: HTTP
- from: WebLB
to: Web002:80/tcp
type: HTTP
- from: Web001
to: AppLB:80/tcp
type: HTTP
- from: Web002
to: AppLB:80/tcp
type: HTTP
- from: AppLB
to: App001:25/tcp
type: SMTP
- from: AppLB
to: App001:80/tcp
type: HTTP
- from: AppLB
to: App002:25/tcp
type: SMTP
- from: AppLB
to: App002:80/tcp
type: HTTP