-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
212 lines (211 loc) · 5.37 KB
/
Copy pathdocker-compose.yml
File metadata and controls
212 lines (211 loc) · 5.37 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
services:
brstack_app:
image: brstack_app:latest
build:
context: .
dockerfile: Dockerfile
tags:
- brstack_app:latest
profiles:
- build_only
client1:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: client
ROUTING: 10.0.0.0/24 0.0.0.0 0.0.0.0/0 10.0.0.13
DST: 10.0.2.13
networks:
net_client_r1:
ipv4_address: 10.0.0.10
stun_client1:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: stun_client
ROUTING: 10.0.0.0/24 0.0.0.0 0.0.0.0/0 10.0.0.13
DST: 74.125.250.129
networks:
net_client_r1:
ipv4_address: 10.0.0.11
ntp_client1:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: ntp_client
ROUTING: 10.0.0.0/24 0.0.0.0 0.0.0.0/0 10.0.0.13
DST: 162.159.200.123
networks:
net_client_r1:
ipv4_address: 10.0.0.12
client2:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: client
ROUTING: 10.0.1.0/24 0.0.0.0 0.0.0.0/0 10.0.1.11
DST: 10.0.2.13
networks:
net_r1_r2:
ipv4_address: 10.0.1.10
client3:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: client
ROUTING: 10.0.2.0/24 0.0.0.0 0.0.0.0/0 10.0.2.11
DST: 10.0.1.10
networks:
net_r2_server:
ipv4_address: 10.0.2.10
client4:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: client
ROUTING: 10.0.3.0/24 0.0.0.0 0.0.0.0/0 10.0.3.11
DST: 10.0.2.13
networks:
net_r3_client:
ipv4_address: 10.0.3.10
router1:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: router
ROUTING: 10.0.0.0/24 0.0.0.0 10.0.1.0/24 0.0.0.0 0.0.0.0/0 10.0.1.12
networks:
net_client_r1:
ipv4_address: 10.0.0.13
net_r1_r2:
ipv4_address: 10.0.1.11
router2:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: router
ROUTING: 10.0.1.0/24 0.0.0.0 10.0.2.0/24 0.0.0.0 0.0.0.0/0 10.0.2.12 10.0.0.0/24
10.0.1.11
networks:
net_r1_r2:
ipv4_address: 10.0.1.12
net_r2_server:
ipv4_address: 10.0.2.11
router3:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: router
ROUTING: 10.0.2.0/24 0.0.0.0 10.0.3.0/24 0.0.0.0 0.0.0.0/0 10.0.3.12 10.0.0.0/24
10.0.2.11 10.0.1.0/24 10.0.2.11
networks:
net_r2_server:
ipv4_address: 10.0.2.12
net_r3_client:
ipv4_address: 10.0.3.11
server1:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: server
ROUTING: 10.0.2.0/24 0.0.0.0 0.0.0.0/0 10.0.2.11
networks:
net_r2_server:
ipv4_address: 10.0.2.13
nat_router:
image: brstack_app:latest
cap_add:
- NET_ADMIN
- NET_RAW
sysctls:
net.bridge.bridge-nf-call-iptables: '0'
environment:
ROLE: nat_router
ROUTING: 10.0.3.0/24 0.0.0.0 10.0.4.0/24 0.0.0.0 0.0.0.0/0 10.0.4.1 10.0.2.0/24
10.0.3.11 10.0.1.0/24 10.0.3.11 10.0.0.0/24 10.0.3.11
networks:
net_r3_client:
ipv4_address: 10.0.3.12
external_net:
ipv4_address: 10.0.4.10
networks:
net_client_r1:
ipam:
config:
- subnet: 10.0.0.0/24
driver_opts:
#com.docker.network.bridge.enable_ip_masquerade: 0
com.docker.network.bridge.name: brstk1
com.docker.network.bridge.trusted_host_interfaces: brstk1:brstk2:brstk3:brstk4:brstk5
net_r1_r2:
ipam:
config:
- subnet: 10.0.1.0/24
driver_opts:
#com.docker.network.bridge.enable_ip_masquerade: 0
com.docker.network.bridge.name: brstk2
com.docker.network.bridge.trusted_host_interfaces: brstk1:brstk2:brstk3:brstk4:brstk5
net_r2_server:
ipam:
config:
- subnet: 10.0.2.0/24
driver_opts:
#com.docker.network.bridge.enable_ip_masquerade: 0
com.docker.network.bridge.name: brstk3
com.docker.network.bridge.trusted_host_interfaces: brstk1:brstk2:brstk3:brstk4:brstk5
net_r3_client:
ipam:
config:
- subnet: 10.0.3.0/24
driver_opts:
#com.docker.network.bridge.enable_ip_masquerade: 0
com.docker.network.bridge.name: brstk4
com.docker.network.bridge.trusted_host_interfaces: brstk1:brstk2:brstk3:brstk4:brstk5
external_net:
ipam:
config:
- subnet: 10.0.4.0/24
driver_opts:
#com.docker.network.bridge.enable_ip_masquerade: 0
com.docker.network.bridge.name: brstk5
com.docker.network.bridge.trusted_host_interfaces: brstk1:brstk2:brstk3:brstk4:brstk5