-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFW-01.txt
More file actions
310 lines (309 loc) · 7.9 KB
/
Copy pathFW-01.txt
File metadata and controls
310 lines (309 loc) · 7.9 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
firewall {
ipv4 {
forward {
filter {
rule 10 {
action drop
description "Block VLAN40 to VLAN10"
destination {
address 192.168.10.0/24
}
inbound-interface {
name eth0.40
}
}
rule 20 {
action drop
description "Block VLAN40 to VLAN20"
destination {
address 192.168.20.0/24
}
inbound-interface {
name eth0.40
}
}
rule 30 {
action drop
description "Block VLAN40 to VLAN30"
destination {
address 192.168.30.0/24
}
inbound-interface {
name eth0.40
}
}
rule 40 {
action drop
description "Block VLAN10 to VLAN30"
destination {
address 192.168.30.0/24
}
inbound-interface {
name eth0.10
}
}
rule 50 {
action drop
description "Block VLAN10 to NAS"
destination {
address 192.168.20.11
}
inbound-interface {
name eth0.10
}
}
rule 60 {
action drop
description "Block VLAN30 to NAS"
destination {
address 192.168.20.11
}
inbound-interface {
name eth0.30
}
}
rule 70 {
action drop
description "Block VLAN40 to NAS"
destination {
address 192.168.20.11
}
inbound-interface {
name eth0.40
}
}
rule 1000 {
action accept
description "Default allow all other traffic"
}
}
}
}
}
interfaces {
ethernet eth0 {
description TRUNK
hw-id 0c:e7:8c:0e:00:00
vif 1 {
address 192.168.1.1/24
description MGMT
}
vif 10 {
address 192.168.10.1/24
description PRODUCTION
}
vif 20 {
address 192.168.20.1/24
description POST-PRODUCTION
}
vif 30 {
address 192.168.30.1/24
description BUSINESS-ADMIN
}
vif 40 {
address 192.168.40.1/24
description GUEST-CONTRACTOR
}
}
ethernet eth1 {
address dhcp
description WAN
hw-id 0c:e7:8c:0e:00:01
}
loopback lo {
}
vti vti0 {
address 169.254.235.54/30
description "AWS VPN Tunnel 1"
mtu 1436
}
}
nat {
source {
rule 10 {
outbound-interface {
name eth1
}
source {
address 192.168.0.0/16
}
translation {
address masquerade
}
}
}
}
protocols {
static {
route 0.0.0.0/0 {
next-hop 192.168.122.1 {
}
}
route 10.0.0.0/16 {
next-hop 169.254.235.53 {
}
}
}
}
service {
dhcp-server {
shared-network-name VLAN10-PRODUCTION {
subnet 192.168.10.0/24 {
option {
default-router 192.168.10.1
domain-name openframestudios.local
name-server 192.168.1.10
}
range 0 {
start 192.168.10.100
stop 192.168.10.200
}
subnet-id 10
}
}
shared-network-name VLAN20-POSTPROD {
subnet 192.168.20.0/24 {
option {
default-router 192.168.20.1
domain-name openframestudios.local
name-server 192.168.1.10
}
range 0 {
start 192.168.20.100
stop 192.168.20.200
}
subnet-id 20
}
}
shared-network-name VLAN30-ADMIN {
subnet 192.168.30.0/24 {
option {
default-router 192.168.30.1
domain-name openframestudios.local
name-server 192.168.1.10
}
range 0 {
start 192.168.30.100
stop 192.168.30.200
}
subnet-id 30
}
}
shared-network-name VLAN40-GUEST {
subnet 192.168.40.0/24 {
option {
default-router 192.168.40.1
domain-name openframestudios.local
name-server 192.168.1.10
}
range 0 {
start 192.168.40.100
stop 192.168.40.200
}
subnet-id 40
}
}
}
ntp {
allow-client {
address 127.0.0.0/8
address 169.254.0.0/16
address 10.0.0.0/8
address 172.16.0.0/12
address 192.168.0.0/16
address ::1/128
address fe80::/10
address fc00::/7
}
server time1.vyos.net {
}
server time2.vyos.net {
}
server time3.vyos.net {
}
}
}
system {
config-management {
commit-revisions 100
}
console {
device ttyS0 {
speed 115200
}
}
host-name vyos
login {
user vyos {
authentication {
encrypted-password ****************
plaintext-password ****************
}
}
}
option {
reboot-on-upgrade-failure 5
}
syslog {
local {
facility all {
level info
}
facility local7 {
level debug
}
}
}
}
vpn {
ipsec {
authentication {
psk AWS-PSK {
id 192.168.122.7
secret HtsxyDyv7PXrvKJ7dnu6wtLZ8EFyIKo8
}
}
esp-group AWS-ESP-GROUP {
lifetime 3600
mode tunnel
pfs dh-group2
proposal 1 {
encryption aes128
hash sha1
}
}
ike-group AWS-IKE-GROUP {
dead-peer-detection {
action restart
interval 10
timeout 30
}
key-exchange ikev1
lifetime 28800
proposal 1 {
dh-group 2
encryption aes128
hash sha1
}
}
options {
disable-route-autoinstall
interface eth1
}
site-to-site {
peer AWS-TUNNEL-1 {
authentication {
mode pre-shared-secret
}
connection-type initiate
ike-group AWS-IKE-GROUP
local-address 192.168.122.7
remote-address 34.215.151.237
vti {
bind vti0
esp-group AWS-ESP-GROUP
}
}
}
}
}