Al een tijd probeer ik een SRX210 te configureren met dual wan waarbij WAN1 een adsl lijn is en WAN 2 aan een upc business lijn zit.
De omgeving bestaat uit de SRX210 een MAG2600 (voor token authenticatie) en wat clients/servers.
Wat ik wil bereiken is dat al het internet verkeer van de servers en clients over WAN1 gaat tenzij deze down is dan moet deze naar WAN2 gestuurd worden totdat WAN1 weer up komt.
Daarnaast moet de MAG2600 alleen maar bereikbaar zijn via WAN2.
Als de token authenticatie gelukt is op MAG2600 maakt deze automatisch verbinding met de terminal server. En moet al dit verkeer vervolgens over WAN2 gaan.
Nu moet ik zeggen dat ik geen Juniper expert ben maar ik heb via een paar KB artikelen [url="[url]http://kb.juniper.net/InfoCenter/index?page=content&id=KB23300&cat=OBSOLETE&actp=LIST&smlogin=true[/url]"]KB23300[/url] en KB17223 een config gemaakt die het helaas nog niet helemaal doet.
De WAN1 (adsl) verbinding lijkt te doen wat ik wil. Echter zodra ik de WAN2 kabel erin plug komt de interface wel up maar stopt bijvoorbeeld de inkomende mail. Internet blijft overigens nog wel functioneren. Ook kan ik nog gewoon connecten met telnet of browsen naar de webinterface.
Iemand enig idee wat ik niet goed doe en me een zetje in de goede richting kan geven
De omgeving bestaat uit de SRX210 een MAG2600 (voor token authenticatie) en wat clients/servers.
Wat ik wil bereiken is dat al het internet verkeer van de servers en clients over WAN1 gaat tenzij deze down is dan moet deze naar WAN2 gestuurd worden totdat WAN1 weer up komt.
Daarnaast moet de MAG2600 alleen maar bereikbaar zijn via WAN2.
Als de token authenticatie gelukt is op MAG2600 maakt deze automatisch verbinding met de terminal server. En moet al dit verkeer vervolgens over WAN2 gaan.
Nu moet ik zeggen dat ik geen Juniper expert ben maar ik heb via een paar KB artikelen [url="[url]http://kb.juniper.net/InfoCenter/index?page=content&id=KB23300&cat=OBSOLETE&actp=LIST&smlogin=true[/url]"]KB23300[/url] en KB17223 een config gemaakt die het helaas nog niet helemaal doet.
De WAN1 (adsl) verbinding lijkt te doen wat ik wil. Echter zodra ik de WAN2 kabel erin plug komt de interface wel up maar stopt bijvoorbeeld de inkomende mail. Internet blijft overigens nog wel functioneren. Ook kan ik nog gewoon connecten met telnet of browsen naar de webinterface.
Iemand enig idee wat ik niet goed doe en me een zetje in de goede richting kan geven
code:
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
| ## Last changed: 2013-05-30 10:21:19 CEST
version 11.2R4.3;
system {
host-name SRX;
domain-name SRX;
time-zone Europe/Amsterdam;
root-authentication {
encrypted-password "SECURE";
}
name-server {
8.8.8.8;
8.8.4.4;
}
services {
ssh;
telnet;
xnm-clear-text;
web-management {
http {
interface [ ge-0/0/1.0 fe-0/0/7.0 ];
}
https {
system-generated-certificate;
interface [ ge-0/0/1.0 fe-0/0/7.0 ];
}
}
}
syslog {
archive size 100k files 3;
user * {
any emergency;
}
file messages {
any critical;
authorization info;
}
file interactive-commands {
interactive-commands error;
}
}
max-configurations-on-flash 5;
max-configuration-rollbacks 5;
license {
autoupdate {
url https://ae1.juniper.net/junos/key_retrieval;
}
}
}
interfaces {
ge-0/0/0 {
disable;
unit 0;
}
ge-0/0/1 {
description Internal_LAN;
unit 0 {
family inet {
filter {
input FILTER1;
}
address 192.168.20.10/24;
}
}
}
fe-0/0/2 {
disable;
unit 0;
}
fe-0/0/3 {
unit 0 {
description ISP2-UPC;
family inet {
address 96.99.29.218/29;
}
}
}
fe-0/0/4 {
disable;
unit 0;
}
fe-0/0/5 {
disable;
unit 0;
}
fe-0/0/6 {
disable;
unit 0;
}
fe-0/0/7 {
unit 0 {
description "Config port";
family inet {
address 192.168.20.7/24;
}
}
}
at-1/0/0 {
description ISP1-XS4ALL;
encapsulation atm-pvc;
atm-options {
vpi 8;
}
dsl-options {
operating-mode auto;
}
unit 0 {
encapsulation atm-ppp-vc-mux;
vci 8.48;
ppp-options {
pap {
default-password "SECURE";
local-name "SECURE";
local-password "SECURE";
passive;
}
}
keepalives;
family inet {
negotiate-address;
}
}
}
}
routing-options {
interface-routes {
rib-group inet IMPORT-PHY;
}
static {
route 0.0.0.0/0 next-hop [ at-1/0/0.0 96.99.29.217 ];
}
rib-groups {
IMPORT-PHY {
import-rib [ inet.0 routing-table-ISP1-XS4ALL.inet.0 routing-table-ISP2-UPC.inet.0 ];
}
}
}
protocols {
stp;
}
security {
screen {
ids-option untrust-screen {
icmp {
ping-death;
}
ip {
source-route-option;
tear-drop;
}
tcp {
syn-flood {
alarm-threshold 1024;
attack-threshold 200;
source-threshold 1024;
destination-threshold 2048;
timeout 20;
}
land;
}
}
}
nat {
source {
rule-set OUTGOING {
from zone trust;
to zone untrust;
rule rule1 {
match {
source-address 0.0.0.0/0;
}
then {
source-nat {
interface;
}
}
}
}
}
destination {
pool RDP-Pool {
address 192.168.20.59/32 port 3389;
}
pool MAG2600-POOL {
address 192.168.20.9/32 port 80;
}
pool Mailserver-POOL {
address 192.168.20.2/32 port 25;
}
pool MAG2600-POOL-SSL {
address 192.168.20.9/32 port 443;
}
rule-set UNTRUST-RULE-SET {
from zone untrust;
rule RDP {
match {
source-address 0.0.0.0/0;
destination-address 81.128.140.47/32;
destination-port 3389;
}
then {
destination-nat pool RDP-Pool;
}
}
rule MAG2600 {
match {
source-address 0.0.0.0/0;
destination-address 96.99.29.218/32;
destination-port 80;
}
then {
destination-nat pool MAG2600-POOL;
}
}
rule EMAIL {
match {
source-address 0.0.0.0/0;
destination-address 81.128.140.47/32;
destination-port 25;
}
then {
destination-nat pool Mailserver-POOL;
}
}
rule MAG2600-SSL {
match {
source-address 0.0.0.0/0;
destination-address 96.99.29.218/32;
destination-port 443;
}
then {
destination-nat pool MAG2600-POOL-SSL;
}
}
}
}
}
policies {
from-zone trust to-zone untrust {
policy MAIL-OUT {
match {
source-address MailServer;
destination-address any;
application junos-smtp;
}
then {
permit;
}
}
policy BLOCK_SMTP {
match {
source-address any;
destination-address any;
application junos-smtp;
}
then {
deny;
}
}
policy trust-to-untrust {
match {
source-address any;
destination-address any;
application any;
}
then {
permit;
}
}
}
from-zone untrust to-zone trust {
policy MAIL-IN {
match {
source-address any;
destination-address MailServer;
application junos-smtp;
}
then {
permit;
log {
session-close;
}
count;
}
}
policy RDP-IN {
match {
source-address any;
destination-address testserver3;
application RDP;
}
then {
permit;
log {
session-close;
}
count;
}
}
policy WEB-IN {
match {
source-address any;
destination-address MAG2600;
application [ junos-http junos-https ];
}
then {
permit;
log {
session-close;
}
count;
}
}
policy Untrust-to-Trust {
match {
source-address any;
destination-address any;
application any;
}
then {
deny;
log {
session-init;
}
}
}
}
}
zones {
security-zone trust {
tcp-rst;
address-book {
address MailServer 192.168.20.2/32;
address FileServer 192.168.20.1/32;
address TSServer 192.168.20.3/32;
address testserver3 192.168.20.59/32;
address MAG2600 192.168.20.9/32;
}
host-inbound-traffic {
system-services {
all;
}
protocols {
all;
}
}
interfaces {
ge-0/0/1.0;
fe-0/0/7.0;
}
}
security-zone untrust {
screen untrust-screen;
interfaces {
at-1/0/0.0 {
host-inbound-traffic {
system-services {
ping;
}
}
}
fe-0/0/3.0;
}
}
}
}
firewall {
filter FILTER1 {
term TERM1 {
from {
source-address {
192.168.20.9/32;
}
}
then {
routing-instance routing-table-ISP2-UPC;
}
}
term default {
then {
routing-instance routing-table-ISP1-XS4ALL;
}
}
}
}
routing-instances {
routing-table-ISP1-XS4ALL {
instance-type forwarding;
routing-options {
static {
route 0.0.0.0/0 {
next-hop at-1/0/0.0;
qualified-next-hop 96.99.29.217 {
preference 100;
}
}
}
}
}
routing-table-ISP2-UPC {
instance-type forwarding;
routing-options {
static {
route 0.0.0.0/0 {
next-hop 96.99.29.217;
qualified-next-hop at-1/0/0.0 {
preference 100;
}
}
}
}
}
}
applications {
application RDP {
protocol tcp;
destination-port 3389;
}
} |