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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
|
#TMSH-VERSION: 12.1.2
cli admin-partitions {
update-partition Common
}
apm report default-report {
report-name sessionReports/sessionSummary
user /Common/admin
}
auth user admin {
description "Admin User"
encrypted-password $6$IIhG.HP4$kmWDt3Czta4rK5Ct4rYgaGSCDtqkMbAIgCUUdIDaQ/W8HTVHy7F1EZmSM.KYO9sdxDTuggaAGHj7QO/8f9rB80
partition-access {
all-partitions {
role admin
}
}
shell bash
}
auth user f5hubblelcdadmin {
description f5hubblelcdadmin
encrypted-password O3bad8WQTUGBBhpJtjUgbt6gluzFM0ha
partition-access {
all-partitions {
role admin
}
}
shell none
}
auth user mglynn {
description mglynn
encrypted-password $6$g5xyMuOe$T0uSN/cbtiENpC3Vbrfa3Xy9OGNJdu8sIFl.w7M6hjZaM4vmmH7dV1X4hAe3CEvsbmVtqknWQy5S.53Z0DYIL.
partition-access {
all-partitions {
role guest
}
}
shell tmsh
}
auth user root {
description root
encrypted-password $6$MgRYNSCd$5hkwlvnUZXvJfK5pUcmxP./VtQIn1CEoEGNil9B5NCtUOV4K8BVCbpKwPz0O0WFv0zm8t7J0XTM33YSVZ.xS61
shell bash
}
cm cert /Common/dtca-bundle.crt {
cache-path /config/filestore/files_d/Common_d/trust_certificate_d/:Common:dtca-bundle.crt_37137_2
certificate-text "-----BEGIN CERTIFICATE-----
MIIDnTCCAoWgAwIBAgIDCSzmMA0GCSqGSIb3DQEBBQUAMC4xLDAqBgNVBAMTIzA2
YzU3YjIzLTQwZDEtNDE1OC1iYjhjMDA1MDU2OGRlM2U0MB4XDTE3MDIxMDE4NTk0
NVoXDTI3MDIwODE4NTk0NVowLjEsMCoGA1UEAxMjMDZjNTdiMjMtNDBkMS00MTU4
LWJiOGMwMDUwNTY4ZGUzZTQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
AQDS+l/bwiYzhCmjyNAKGGwlfcwmjDyphmcP0svbJHWlNa30n1tsj+7jJovBPi6b
qPtHJ0cgDvmQhvDqY5gOe8rW0LCt4rpASmpTn31Hh4DQFhhFZ4DUzKcpB+Q27dGj
U1OFqjW8HxtCr7faCa/TRUCwCg0bn1yMSszJAcBN/s6EplG+ifi7H7TJes/ZvQ3D
E+WnfM3KRFMzrfQbAa59ATHNfG88hD3dPYXCmI3Q5hLN8tQO+H3ZH53hsk7+mzSG
11tK7R21ZAgmPlhRiu40ea2L+X0XAuIh31x+9TApAHDukWu1KN2/KG5GpJL/aCIV
qYsQ6yaVulBBgdpUtorUSF0lAgMBAAGjgcMwgcAwJAYDVR0RBB0wG4IZZjUuaGFh
cy03OC5wZXoucGl2b3RhbC5pbzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE
AwIBtjAdBgNVHQ4EFgQUUgI0VFrDDgzuoXhsc1nMA6mQK8EwWAYDVR0jBFEwT4AU
UgI0VFrDDgzuoXhsc1nMA6mQK8GhMqQwMC4xLDAqBgNVBAMTIzA2YzU3YjIzLTQw
ZDEtNDE1OC1iYjhjMDA1MDU2OGRlM2U0ggMJLOYwDQYJKoZIhvcNAQEFBQADggEB
AL/h4v4N60iHK0otdypxyzx855xtyysm9gGeXnKb4uxj9SrEt+6qTUMn66GtMNrk
esI6603r02aPYl/6ibIp3uxwYmQlgvt4O2zQOSSD0R/r8+Vl56DGgU84/gLorKNF
UOxWAHL5mRdanWP5W78V1bnGjBk/JgeM8oHFGei9A3S0MdK18kxSsACCFGot25A0
d1B60oz5RsC2lrRKQoSDDxV3tk2SqbcU7Bu5Cp2ePup3MAQkydFlK6shWnT9Frq1
qPrug/YfnoA5HGb9ZgVZRicBZei5Hc/Tbsm3/j47KmzgKuV+Rs/kYKPIRSeohx18
GTUVKofqzFOu++0Cm9uGDJ4=
-----END CERTIFICATE-----
"
checksum SHA1:1314:446099e7a8c3e0143d34471d448483941d52a516
revision 2
}
cm cert /Common/dtca.crt {
cache-path /config/filestore/files_d/Common_d/trust_certificate_d/:Common:dtca.crt_37133_2
certificate-text "-----BEGIN CERTIFICATE-----
MIIDnTCCAoWgAwIBAgIDCSzmMA0GCSqGSIb3DQEBBQUAMC4xLDAqBgNVBAMTIzA2
YzU3YjIzLTQwZDEtNDE1OC1iYjhjMDA1MDU2OGRlM2U0MB4XDTE3MDIxMDE4NTk0
NVoXDTI3MDIwODE4NTk0NVowLjEsMCoGA1UEAxMjMDZjNTdiMjMtNDBkMS00MTU4
LWJiOGMwMDUwNTY4ZGUzZTQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
AQDS+l/bwiYzhCmjyNAKGGwlfcwmjDyphmcP0svbJHWlNa30n1tsj+7jJovBPi6b
qPtHJ0cgDvmQhvDqY5gOe8rW0LCt4rpASmpTn31Hh4DQFhhFZ4DUzKcpB+Q27dGj
U1OFqjW8HxtCr7faCa/TRUCwCg0bn1yMSszJAcBN/s6EplG+ifi7H7TJes/ZvQ3D
E+WnfM3KRFMzrfQbAa59ATHNfG88hD3dPYXCmI3Q5hLN8tQO+H3ZH53hsk7+mzSG
11tK7R21ZAgmPlhRiu40ea2L+X0XAuIh31x+9TApAHDukWu1KN2/KG5GpJL/aCIV
qYsQ6yaVulBBgdpUtorUSF0lAgMBAAGjgcMwgcAwJAYDVR0RBB0wG4IZZjUuaGFh
cy03OC5wZXoucGl2b3RhbC5pbzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE
AwIBtjAdBgNVHQ4EFgQUUgI0VFrDDgzuoXhsc1nMA6mQK8EwWAYDVR0jBFEwT4AU
UgI0VFrDDgzuoXhsc1nMA6mQK8GhMqQwMC4xLDAqBgNVBAMTIzA2YzU3YjIzLTQw
ZDEtNDE1OC1iYjhjMDA1MDU2OGRlM2U0ggMJLOYwDQYJKoZIhvcNAQEFBQADggEB
AL/h4v4N60iHK0otdypxyzx855xtyysm9gGeXnKb4uxj9SrEt+6qTUMn66GtMNrk
esI6603r02aPYl/6ibIp3uxwYmQlgvt4O2zQOSSD0R/r8+Vl56DGgU84/gLorKNF
UOxWAHL5mRdanWP5W78V1bnGjBk/JgeM8oHFGei9A3S0MdK18kxSsACCFGot25A0
d1B60oz5RsC2lrRKQoSDDxV3tk2SqbcU7Bu5Cp2ePup3MAQkydFlK6shWnT9Frq1
qPrug/YfnoA5HGb9ZgVZRicBZei5Hc/Tbsm3/j47KmzgKuV+Rs/kYKPIRSeohx18
GTUVKofqzFOu++0Cm9uGDJ4=
-----END CERTIFICATE-----
"
checksum SHA1:1314:446099e7a8c3e0143d34471d448483941d52a516
revision 2
}
cm cert /Common/dtdi.crt {
cache-path /config/filestore/files_d/Common_d/trust_certificate_d/:Common:dtdi.crt_37129_2
certificate-text "-----BEGIN CERTIFICATE-----
MIIDkDCCAnigAwIBAgIDBUtTMA0GCSqGSIb3DQEBBQUAMC4xLDAqBgNVBAMTIzA2
YzU3YjIzLTQwZDEtNDE1OC1iYjhjMDA1MDU2OGRlM2U0MB4XDTE3MDIxMDE4NTk0
NloXDTI3MDIwODE4NTk0NlowJDEiMCAGA1UEAxMZZjUuaGFhcy03OC5wZXoucGl2
b3RhbC5pbzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK4TTQwfIFEM
QBLjjs7R2dhMTtWFhHK7uPGtzQ5k8YLqXdX3jhyaGMrs4TevPwOKu/RIthn5hcks
CVnNXu0NQx9ZGjHNI1AjQm4VrVJRfeNcusGX1FePk3viuKnEKSd4cZzLCQbw8CRj
BVwX95TchkkV5cUhrilOaahm3UCfbiwsZfOfqQ+xQiiFVWH39LNZwaAce+s276cr
WtHK3DWXRnYTednVPHGpL/ET57odqu+tItHJAGfl1XgHUyB7XznCckvCQaPosiy4
kKla3oPGEcfiIpnpRoWrUhl3RohFQy2xeYDhSZiyHHNDHUlNnvci4y/B4UT7SVzb
X5kGAMc5Rp8CAwEAAaOBwDCBvTAkBgNVHREEHTAbghlmNS5oYWFzLTc4LnBlei5w
aXZvdGFsLmlvMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgWgMB0GA1UdDgQW
BBQPPJCP4Z11/kalLrWRtZgV1fRDnDBYBgNVHSMEUTBPgBRSAjRUWsMODO6heGxz
WcwDqZArwaEypDAwLjEsMCoGA1UEAxMjMDZjNTdiMjMtNDBkMS00MTU4LWJiOGMw
MDUwNTY4ZGUzZTSCAwks5jANBgkqhkiG9w0BAQUFAAOCAQEAhovRL64PX3pFsLoJ
nMASyRlvqMffJZxWtxE4jIMQywje6SfFufnPzHXGVnm3euauUJ3uAIp9zCDH+E+E
DSE+4s2qBAM2Df6IWOZzYtz/Zrlr+KvDgpRk5b/O/yDoifShOCGVnICCGlwaQSVJ
xjARuUhF14VLJHO+zTZNaqCqMDjp1txn4CKBqD7q/YV6BwXo+lCdyfB0wsCVMimA
P69jSRhJ9ePjj3hErWS/K10gsdNCJnT2dLozLzIijoOJXoOwJQdWPKr/f2BIa0Gp
AXAM1oSd4RWbNw+EQ05G2gDF+JlZPrqJVfSfftWUFyMKPqMt7fkxMMjpdAmP9Qn7
nboUIA==
-----END CERTIFICATE-----
"
checksum SHA1:1298:10edd86cc9e04c9c30eb6d4a38f066ca8601d232
revision 2
}
cm device /Common/f5.haas-78.pez.pivotal.io {
active-modules { "BIG-IP, VE Trial|XGEUKHJ-ENEGRPV|Rate Shaping|External Interface and Network HSM, VE|SDN Services, VE|SSL, Forward Proxy, VE|ASM, VE|Max Compression, VE|Crytpo Offload, VE, Tier 1 (25M - 200M)|BIG-IP VE, Multicast Routing|SSL, VE|DNS (1K QPS), VE|Routing Bundle, VE|AFM, VE|DNSSEC|Anti-Virus Checks|Base Endpoint Security Checks|Firewall Checks|Network Access|Secure Virtual Keyboard|APM, Web Application|Machine Certificate Checks|Protected Workspace|Remote Desktop|App Tunnel|CGN, BIG-IP VE, AFM ONLY|PSM, VE" }
base-mac 00:50:56:8d:e3:e4
build 0.0.249
cert /Common/dtdi.crt
chassis-id 420d3473-cd7c-9beb-0969a312da5f
edition Final
hostname f5.haas-78.pez.pivotal.io
key /Common/dtdi.key
management-ip 172.10.0.10
marketing-name "BIG-IP Virtual Edition"
platform-id Z100
product BIG-IP
self-device true
time-zone America/Los_Angeles
version 12.1.2
}
cm device-group /Common/device_trust_group {
auto-sync enabled
devices {
/Common/f5.haas-78.pez.pivotal.io { }
}
hidden true
network-failover disabled
}
cm device-group /Common/gtm {
devices {
/Common/f5.haas-78.pez.pivotal.io { }
}
hidden true
network-failover disabled
}
cm key /Common/dtca.key {
cache-path /config/filestore/files_d/Common_d/trust_certificate_key_d/:Common:dtca.key_37135_2
certificate-text "-----BEGIN PRIVATE KEY-----
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDS+l/bwiYzhCmj
yNAKGGwlfcwmjDyphmcP0svbJHWlNa30n1tsj+7jJovBPi6bqPtHJ0cgDvmQhvDq
Y5gOe8rW0LCt4rpASmpTn31Hh4DQFhhFZ4DUzKcpB+Q27dGjU1OFqjW8HxtCr7fa
Ca/TRUCwCg0bn1yMSszJAcBN/s6EplG+ifi7H7TJes/ZvQ3DE+WnfM3KRFMzrfQb
Aa59ATHNfG88hD3dPYXCmI3Q5hLN8tQO+H3ZH53hsk7+mzSG11tK7R21ZAgmPlhR
iu40ea2L+X0XAuIh31x+9TApAHDukWu1KN2/KG5GpJL/aCIVqYsQ6yaVulBBgdpU
torUSF0lAgMBAAECggEAGQPTutA1zFTmxQMp25CSvg1A1+83wBft/1vMjPKxOkH3
mrIMWn5kYi1vU53GU/GAvaqEDeKIp6DATuI5JLp7zeWXlT51O+s22SxnY8RGuyVr
gksn5NNRHJXRcsvW1+ko1YfdcC02A72m7GTKop+q8FR4wmYuSHoT9t9MyFKmdOa2
RkD06nXJHfTh42/iOjMj4RgUTa3gvKK8H/4hllcDkgF/n5S4vpyg+M/59ftrMUU0
86b1nU8gWswhvCKPtd4t10R+TP8ONMqiU8d4BLlGehIljpZp1iFBGlgk/dv1vHBu
BVJAEsXzmpZnAYtEtcmqXwYNDrSOLulJuOd4+CE2zwKBgQD2A9qYNWeJML1u0Lle
WoE4P32/XFQRfsCu/V1aV5mRdHLJXqwWA1n66rE1+0FeNHO16wXUVqRiGFKyaSlY
twT6GUZ33rtWDXHjdKOXM1XnA0fsHBSNdF114RBjNo51avRHS98j3HI6qpDLN5lM
jLZZfCrUA4vbmvQQUIT3zy1m8wKBgQDbinqPeMxc9Pg5YBAZnuuX97y5ibBUVjXn
xlhrp0VmO2KDWpzTx9sF9hEPIESdg+u6/yroOnSW9vhPqiQYx3DfKU4KKB7Yvxxg
nvk8WHN6yCAXzOQjAvbMhV/bITqZPf7PMMMAI+jGwfr8ce1uh7wvw0nufeZoi1vO
luROQpdhhwKBgQDVPYXuROwXiD3KnfTvCffTr4Tpp7fe6kVN6KNQOXoNECimzv7O
nd0Slvc/2SdR5pkdaDfHU8pslLSpnGmQUiNoPRxNrqwm7MR46ZMa7g5ZjQh8aeKO
sfyIvqqbtKBKuog+fE9QIDaLD2kuHGUuaxFsAyqEVwaVNXyz33dB7TxnbQKBgDnZ
WoQ1q3wPHN1Zf8SQiLnpkLQ/INSIRvoE3MW5NONEYKgGF28Cqab/eO1IbmwnF9WV
aUP6K0CgYTv0tEBHRWm4Y5Tvj3lDmoGnQjtxfzRqSXKcDb1gCZJIzsJaFivNFziX
O7rsu2isMquUhaDraV4YkoGicTU5C377abtpdqQ/AoGAd2pmM8fdTXU/CWGkbQ7t
r5gtVG0X/aJNx3Os/V9Dv2HSz1/ChaBTBb2awFwqC/dwwy8/ydAx6YiB/1ded1Ih
jmVWRbHQ7nC9izELlBPsz2ChfPqgUkG5OOh7YSMR7AvJNpZTphNKasFHnrQV/TR8
+NdHUy9AVoCuDAtK4nCtLVA=
-----END PRIVATE KEY-----
"
checksum SHA1:1704:ef95b645dba9cd21dea1d230f447525c8b6a8df3
revision 2
}
cm key /Common/dtdi.key {
cache-path /config/filestore/files_d/Common_d/trust_certificate_key_d/:Common:dtdi.key_37131_2
certificate-text "-----BEGIN PRIVATE KEY-----
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCuE00MHyBRDEAS
447O0dnYTE7VhYRyu7jxrc0OZPGC6l3V944cmhjK7OE3rz8Dirv0SLYZ+YXJLAlZ
zV7tDUMfWRoxzSNQI0JuFa1SUX3jXLrBl9RXj5N74ripxCkneHGcywkG8PAkYwVc
F/eU3IZJFeXFIa4pTmmoZt1An24sLGXzn6kPsUIohVVh9/SzWcGgHHvrNu+nK1rR
ytw1l0Z2E3nZ1TxxqS/xE+e6HarvrSLRyQBn5dV4B1Mge185wnJLwkGj6LIsuJCp
Wt6DxhHH4iKZ6UaFq1IZd0aIRUMtsXmA4UmYshxzQx1JTZ73IuMvweFE+0lc21+Z
BgDHOUafAgMBAAECggEAJbXls5IMqLIsMUtd1R0uAccqLuSBWG+ldanOqechUNif
4moCPdz+MPvXIH6U+pnz9MxJst/U5UtmbS9p+JWubFybqZ1EoKg6zGlixloEGRyu
EqFnLV7btvNbSN/HgJb9mdd8SaYph+BxuU0x4+xQJQYa5DVTKvyjNAmwtb60Gdpa
Hjm/gewZMjSIwvkr3UlT8Zd5O9/2fGqAY4wx9aVCgbg9EGYcILFjeSsaFK6JlRgP
cLD2/7QK+j9plXeUCoBF416/PsMC7kZ7o6Qg3ooq/TUIsZQPJ7Oz3dhTdwPZp60s
anZmWrqFPWwVBMFFgr9M81592QgACKBFz2k9o0LLgQKBgQDx2CaCC58XCsDTNxhh
YEHZfmZGKKLXLyDVmY+HfItiNICrJIZid7CRKXQ8EMqu0a3x9RIQnzb5nPJT4Flm
Mnpj92IJbsv8AjhsP4/3cxMYyv/Aj4f7a11tH/V5K+aqzNeQ2uIWlCKbRzOt0Xnc
DStn4K9LM8dvRW4DKyzt39dsHwKBgQC4Q6+A8bRCUTBYc6rGDCnjjZzhDTKaRQx2
V8j8LHz48o5CKRM6+HlqRX/JYYe9Yj4uyLXlfChCtdlqYHyt5kBbzHZQnNwg/M+J
KUDq5NQDt/7Bz99vuo0n+m6jZ52KIhG0giLHRzmFzqSjCBmJszxpdGzyRSKz8/Q6
RkAMyorVgQKBgDBLKI1pgrBYPl8vLlgrn5qt6gBylun/iD//NTEqBq9qqpMCbS92
lTS3oXVpKQA18NVTSfM1yAWaeK2VLGUDCXuy58nYbTV6wAelvbr9KMAXsXCjeNUV
AIgNDLjQsnRDCXzsqJ83n52AX2qDXSE7JALPVFHhGh83LxvE4Gjz/RGjAoGASx7d
B/aCBJ9Q1F6jeoYu9aQgFufof1gzEnQLbjM858kLEhHo0xvFc/vNcu4eBqlsrGoL
LfmF+FxmvKWFbuf1yPb8LTUl0RUADu0QmDKd9L4oUB9M+iHVtjy0qk1tvojRKwP6
5b81xkVOfWCp+Kdns55RZBunYDHOmYtWRWC1ZQECgYBU+NWA3CRlFTMr3MnPuDze
lOF0J9wrhYxxS4TiweVddhV8bJd/E+hfKCZxze4UlSeY/yS6HE3S93KXx5zZDEC2
KfZ6doj405CdXwzQ0PME3Jg+J0/cCYBFfahDmHM50GQNBHnJgQqj61yaejXdWy/Y
AGLoXJAsi3hRL9yjbogPjA==
-----END PRIVATE KEY-----
"
checksum SHA1:1704:63d4a9e0c363a36018cc34fff4a1ccadee0030eb
revision 2
}
cm traffic-group /Common/traffic-group-1 {
unit-id 1
}
cm traffic-group /Common/traffic-group-local-only { }
cm trust-domain /Common/Root {
ca-cert /Common/dtca.crt
ca-cert-bundle /Common/dtca-bundle.crt
ca-devices { /Common/f5.haas-78.pez.pivotal.io }
ca-key /Common/dtca.key
guid 0c753a5b-34d5-4226-8e100050568de3e4
status standalone
trust-group /Common/device_trust_group
}
gtm global-settings metrics {
metrics-collection-protocols { icmp }
}
gtm global-settings metrics-exclusions {
addresses none
}
ltm default-node-monitor {
rule none
}
ltm pool /DMZ1/pool-dmz1_faleconosco-uat {
description irule-dmz1_wildcard-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fsbrdmzs1012:5556 {
address 101.139.100.138
}
}
monitor /Common/http
}
ltm virtual /DMZ1/vs-dmz1_calms_http {
description IS@FSBR
destination /DMZ1/159.165.167.100%1:80
ip-protocol tcp
mask 255.255.255.255
profiles {
/Common/tcp { }
/DMZ1/http_cookie-encrypted { }
/DMZ1/request-log-dmz1_siem { }
}
rules {
/Common/_sys_https_redirect
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans {
/DMZ1/vlan1401
}
vlans-enabled
}
ltm node /Common/vwfs-01 {
address 10.193.96.47%1
description "Node mit %1 am Ende"
}
ltm node /Common/vwfs-01 {
address 10.193.96.47%1:500
description "Node mit %1 am Ende"
}
ltm virtual /ZM-CS1/V_10.40.2.60_515 {
destination /ZM-CS1/10.40.2.60%1:515
ip-protocol tcp
mask 255.255.255.255
}
ltm node /Common/diego-brain-01 {
address 10.193.96.47
}
ltm node /Common/diego-brain-02 {
address 10.193.96.48
}
ltm node /Common/gorouter-01 {
address 10.193.96.46
}
ltm node /Common/gorouter-02 {
address 10.193.96.45
}
ltm node /Common/mysql-proxy-01 {
address 10.193.96.51
}
ltm node /Common/mysql-proxy-02 {
address 10.193.96.52
}
ltm node /Common/tcp-router-01 {
address 10.193.96.49
}
ltm node /Common/tcp-router-02 {
address 10.193.96.50
}
ltm pool /Common/go_routers {
description "PCF Go Routers"
load-balancing-mode least-connections-member
members {
/Common/gorouter-01:80 {
address 10.193.96.46
}
/Common/gorouter-02:80 {
address 10.193.96.45
}
}
monitor min 1 of { /Common/pcf_gorouter_mon }
}
ltm pool /Common/mysql_proxy_ert {
description "PCF ERT Mysql Proxy"
load-balancing-mode least-connections-member
members {
/Common/mysql-proxy-01:3306 {
address 10.193.96.51
}
/Common/mysql-proxy-02:3306 {
address 10.193.96.52
}
}
monitor /Common/pcf_mysqlproxy_ert_mon
}
ltm pool /Common/pcf_diego_brains {
description "PCF containers SSH proxy"
load-balancing-mode least-connections-node
members {
/Common/diego-brain-01:2222 {
address 10.193.96.47
}
/Common/diego-brain-02:2222 {
address 10.193.96.48
}
}
monitor /Common/pcf_diegobrains_mon
}
ltm pool /Common/pcf_tcp_routers {
description "PCF TCP Routers"
load-balancing-mode least-connections-node
members {
/Common/tcp-router-01:0 {
address 10.193.96.49
}
/Common/tcp-router-02:0 {
address 10.193.96.50
}
}
monitor /Common/pcf_tcprouter_mon
}
ltm rule /Common/cf_xforward_for {
when HTTP_REQUEST {
HTTP::header insert X-Forwarded-For [IP::remote_addr]
}
}
ltm rule /Common/cf_xforward_proto {
when HTTP_REQUEST {
HTTP::header insert X-Forwarded-Proto "https"
}
}
ltm rule /Common/cf_xforward_proto_http {
when HTTP_REQUEST {
HTTP::header insert X-Forwarded-Proto "http"
}
}
ltm virtual /Common/pcf_http {
description "Cloud Foundry App HTTP Access"
destination /Common/10.193.96.4:80
ip-protocol tcp
mask 255.255.255.255
pool /Common/go_routers
profiles {
/Common/http { }
/Common/tcp-lan-optimized { }
}
rules {
/Common/cf_xforward_proto_http
/Common/cf_xforward_for
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans {
/Common/cf_access_vlan
}
vlans-enabled
}
ltm virtual /Common/pcf_https {
description "Cloud Foundry API & App SSL Access"
destination /Common/10.193.96.4:443
ip-protocol tcp
mask 255.255.255.255
pool /Common/go_routers
profiles {
/Common/cf_client_ssl {
context clientside
}
/Common/http { }
/Common/tcp-lan-optimized { }
}
rules {
/Common/cf_xforward_for
/Common/cf_xforward_proto
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans {
/Common/cf_access_vlan
}
vlans-enabled
}
ltm virtual /Common/pcf_mysql_ert {
description "ERT Mysql Proxy"
destination /Common/10.193.96.8:3306
ip-protocol tcp
mask 255.255.255.255
pool /Common/mysql_proxy_ert
profiles {
/Common/tcp-lan-optimized { }
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans {
/Common/cf_access_vlan
}
vlans-enabled
}
ltm virtual /Common/pcf_ssh_proxy {
description "Diego Brains SSH-Proxy"
destination /Common/10.193.96.4:2222
ip-protocol tcp
mask 255.255.255.255
pool /Common/pcf_diego_brains
profiles {
/Common/tcp-lan-optimized { }
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port enabled
vlans {
/Common/cf_access_vlan
}
vlans-enabled
}
ltm virtual /Common/pcf_tcp_routers {
description "CF TCP Routers"
destination /Common/10.193.96.9:0
ip-protocol tcp
mask 255.255.255.255
pool /Common/pcf_tcp_routers
profiles {
/Common/tcp-lan-optimized { }
}
source 0.0.0.0/0
source-address-translation {
type automap
}
translate-address enabled
translate-port disabled
vlans {
/Common/cf_access_vlan
}
vlans-enabled
}
ltm virtual-address /Common/10.193.96.4 {
address 10.193.96.4
arp enabled
icmp-echo enabled
mask 255.255.255.255
traffic-group /Common/traffic-group-1
}
ltm virtual-address /Common/10.193.96.8 {
address 10.193.96.8
arp enabled
icmp-echo enabled
mask 255.255.255.255
traffic-group /Common/traffic-group-1
}
ltm virtual-address /Common/10.193.96.9 {
address 10.193.96.9
arp enabled
icmp-echo enabled
mask 255.255.255.255
traffic-group /Common/traffic-group-1
}
ltm monitor http /Common/pcf_gorouter_mon {
adaptive disabled
defaults-from /Common/http
destination *:8080
interval 5
ip-dscp 0
recv none
recv-disable none
send "GET /health"
time-until-up 0
timeout 16
}
ltm monitor http /Common/pcf_tcprouter_mon {
adaptive disabled
defaults-from /Common/http
destination *:80
interval 5
ip-dscp 0
recv none
recv-disable none
send "GET /health"
time-until-up 0
timeout 16
}
ltm monitor tcp /Common/pcf_diegobrains_mon {
adaptive disabled
defaults-from /Common/tcp
destination *:2222
interval 5
ip-dscp 0
recv none
recv-disable none
send none
time-until-up 0
timeout 16
}
ltm monitor tcp /Common/pcf_mysqlproxy_ert_mon {
adaptive disabled
defaults-from /Common/tcp
destination *:1936
interval 5
ip-dscp 0
recv none
recv-disable none
send none
time-until-up 0
timeout 16
}
ltm profile client-ssl /Common/cf_client_ssl {
alert-timeout indefinite
allow-dynamic-record-sizing disabled
allow-non-ssl disabled
app-service none
cache-size 262144
cache-timeout 3600
cert /Common/cf-haas-78.crt
cert-key-chain {
cf-haas-78-key {
cert /Common/cf-haas-78.crt
key /Common/cf-haas-78-key.key
}
}
chain none
ciphers DEFAULT
defaults-from /Common/clientssl
generic-alert enabled
handshake-timeout 10
inherit-certkeychain false
key /Common/cf-haas-78-key.key
max-active-handshakes indefinite
max-aggregate-renegotiation-per-minute indefinite
max-renegotiations-per-minute 5
maximum-record-size 16384
mod-ssl-methods disabled
mode enabled
options { dont-insert-empty-fragments }
passphrase none
peer-no-renegotiate-timeout 10
proxy-ssl disabled
proxy-ssl-passthrough disabled
renegotiate-max-record-delay indefinite
renegotiate-period indefinite
renegotiate-size indefinite
renegotiation enabled
secure-renegotiation require
server-name none
session-mirroring disabled
session-ticket disabled
session-ticket-timeout 0
sni-default false
sni-require false
ssl-sign-hash any
strict-resume disabled
unclean-shutdown enabled
}
net interface 1.1 {
media-fixed 10000T-FD
}
net interface 1.2 {
media-fixed 10000T-FD
}
net interface 1.3 {
media-fixed 10000T-FD
}
net route /Common/default_route {
gw 10.193.96.1
network default
}
net route-domain /Common/0 {
id 0
vlans {
/Common/http-tunnel
/Common/socks-tunnel
/Common/cf_access_vlan
}
}
net self /Common/cf_self_ip {
address 10.193.96.5/24
traffic-group /Common/traffic-group-local-only
vlan /Common/cf_access_vlan
}
net self-allow {
defaults {
igmp:0
ospf:0
pim:0
tcp:161
tcp:22
tcp:4353
tcp:443
tcp:53
udp:1026
udp:161
udp:4353
udp:520
udp:53
}
}
net stp /Common/cist {
interfaces {
1.2 {
external-path-cost 2000
internal-path-cost 2000
}
}
vlans {
/Common/cf_access_vlan
}
}
net vlan /Common/cf_access_vlan {
interfaces {
1.2 { }
}
tag 4094
}
net fdb tunnel /Common/http-tunnel { }
net fdb tunnel /Common/socks-tunnel { }
net fdb vlan /Common/cf_access_vlan { }
net ipsec ike-daemon /Common/ikedaemon {
log-publisher /Common/default-ipsec-log-publisher
}
net tunnels tunnel /Common/http-tunnel {
description "Tunnel for http-explicit profile"
profile /Common/tcp-forward
}
net tunnels tunnel /Common/socks-tunnel {
description "Tunnel for socks profile"
profile /Common/tcp-forward
}
pem global-settings analytics { }
security dos udp-portlist /Common/dos-udp-portlist {
list-type exclude-listed-ports
}
security firewall config-change-log {
log-publisher /Common/local-db-publisher
}
security firewall port-list /Common/_sys_self_allow_tcp_defaults {
ports {
22 { }
53 { }
161 { }
443 { }
1029-1043 { }
4353 { }
}
}
security firewall port-list /Common/_sys_self_allow_udp_defaults {
ports {
53 { }
161 { }
520 { }
1026 { }
4353 { }
}
}
security firewall rule-list /Common/_sys_self_allow_all {
rules {
_sys_allow_all {
action accept
}
}
}
security firewall rule-list /Common/_sys_self_allow_defaults {
rules {
_sys_allow_tcp_defaults {
action accept
ip-protocol tcp
destination {
port-lists {
/Common/_sys_self_allow_tcp_defaults
}
}
}
_sys_allow_udp_defaults {
action accept
ip-protocol udp
destination {
port-lists {
/Common/_sys_self_allow_udp_defaults
}
}
}
_sys_allow_ospf_defaults {
action accept
ip-protocol ospf
}
_sys_allow_pim_defaults {
action accept
ip-protocol pim
}
_sys_allow_igmp_defaults {
action accept
ip-protocol igmp
}
}
}
security firewall rule-list /Common/_sys_self_allow_management {
rules {
_sys_allow_ssh {
action accept
ip-protocol tcp
destination {
ports {
22 { }
}
}
}
_sys_allow_web {
action accept
ip-protocol tcp
destination {
ports {
443 { }
}
}
}
}
}
security ip-intelligence policy /Common/ip-intelligence { }
sys db adm.block.enable {
value "1"
}
sys db gtm.peerinfototalgtms {
value "0"
}
sys db provision.1nic {
value "disable"
}
sys db provision.1nicautoconfig {
value "enable"
}
sys db provision.extramb {
value "0"
}
sys db rule.validation {
value "strict"
}
sys db systemauth.primaryadminuser {
value "admin"
}
sys db tm.allowmulticastl2destinationtraffic {
value "disable"
}
sys db tm.tcpallowinsecurerst {
value "disable"
}
sys db tmm.classallocatemetadata {
value "enable"
}
sys db tmm.coredump {
value "enable"
}
sys db tmm.dhcp.client.connection.packets.inprogress.max {
value "2000"
}
sys db tmm.dhcp.server.connection.packets.inprogress.max {
value "2000"
}
sys db tmm.gradualfileloadadjust {
value "enable"
}
sys db tmm.lb.wlcoffset {
value "disable"
}
sys db tmm.verbose {
value "disable"
}
sys db tmm.verbosecmp {
value "disable"
}
sys dns {
description configured-by-dhcp
name-servers { 10.193.96.2 }
search { haas-78.pez.pivotal.io }
}
sys feature-module cgnat {
disabled
}
sys folder / {
device-group none
hidden false
inherited-devicegroup false
inherited-traffic-group false
traffic-group /Common/traffic-group-1
}
sys folder /Common {
device-group none
hidden false
inherited-devicegroup true
inherited-traffic-group true
traffic-group /Common/traffic-group-1
}
sys folder /Common/Drafts {
device-group none
hidden false
inherited-devicegroup true
inherited-traffic-group true
traffic-group /Common/traffic-group-1
}
sys global-settings {
gui-setup disabled
hostname f5.haas-78.pez.pivotal.io
mgmt-dhcp disabled
}
sys management-dhcp /Common/sys-mgmt-dhcp-config {
request-options { subnet-mask broadcast-address routers domain-name domain-name-servers host-name ntp-servers }
}
sys management-ip 172.10.0.10/24 {
description configured-statically
}
sys management-ovsdb {
ca-cert-file none
cert-file none
cert-key-file none
disabled
log-level info
}
sys provision ltm {
level nominal
}
sys snmp {
agent-addresses { tcp6:161 udp6:161 }
communities {
/Common/comm-public {
community-name public
source default
}
}
disk-monitors {
/Common/root {
minspace 2000
path /
}
/Common/var {
minspace 10000
path /var
}
}
process-monitors {
/Common/bigd {
process bigd
}
/Common/chmand {
process chmand
}
/Common/httpd {
max-processes infinity
process httpd
}
/Common/mcpd {
process mcpd
}
/Common/sod {
process sod
}
/Common/tmm {
max-processes infinity
process tmm
}
}
}
sys ecm cloud-provider /Common/aws-ec2 {
description "The aws-ec2 parameters"
property-template {
account { }
availability-zone {
valid-values { a b c d }
}
instance-type {
valid-values { t2.micro t2.small t2.medium m3.medium m3.large m3.xlarge m3.2xlarge c3.large c3.xlarge c3.2xlarge c3.4xlarge c3.8xlarge r3.large r3.xlarge r3.2xlarge r3.4xlarge r3.8xlarge }
}
region {
valid-values { us-east-1 us-west-1 us-west-2 sa-east-1 eu-west-1 eu-central-1 ap-southeast-2 ap-southeast-1 ap-northeast-1 }
}
}
}
sys ecm cloud-provider /Common/dnet {
description "The dnet parameters"
}
sys ecm cloud-provider /Common/vsphere {
description "The vsphere parameters"
property-template {
cloud-host-ip { }
dhcp-network-name { }
end-point-url { }
node-name { }
}
}
sys file ssl-cert /Common/cf-haas-78.crt {
cache-path /config/filestore/files_d/Common_d/certificate_d/:Common:cf-haas-78.crt_38799_1
revision 1
}
sys file ssl-key /Common/cf-haas-78-key.key {
cache-path /config/filestore/files_d/Common_d/certificate_key_d/:Common:cf-haas-78-key.key_38802_1
revision 1
}
sys fpga firmware-config {
type standard-balanced-fpga
}
sys sflow global-settings http { }
sys sflow global-settings vlan { }
sys software update {
auto-check enabled
auto-phonehome enabled
frequency weekly
}
wom endpoint-discovery { }
ltm rule /Common/ir_sni_glob_a01_111.11.11.11_443 {
when HTTP_REQUEST {
if {[string tolower [HTTP::host]] contains "audifinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "seatfinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "skodafinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "volkswagenfinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "volkswagenbank.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "volkswagenbank.fr"} {
HTTP::respond 301 "Location" "https://www.vwfs.fr[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "volkswagenfs.gr"} {
HTTP::respond 301 "Location" "https://www.vwfs.gr[HTTP::uri] "
} elseif {[string tolower [HTTP::host]] contains "volkswagenbank.gr"} {
HTTP::respond 301 "Location" "https://www.vwfs.gr[HTTP::uri] "
} else {
HTTP::respond 301 Location "https://www.[HTTP::host][HTTP::uri] "
}
}
}
ltm virtual /Common/vs_111.11.11.40_443 {
description "GDC IT - CM13341553"
destination /Common/111.11.11.40:80
ip-protocol tcp
mask 255.255.255.255
persist {
/Common/vwfsag-sourceaddr-default {
default yes
}
}
policies {
/Common/Drafts/policy_10.10.10.41_443 { }
}
profiles {
/Common/pr_cssl_sni {
context clientside
}
/Common/serverssl-vwfs-ignore-insecure {
context serverside
}
/Common/vwfsag-https-default { }
/Common/vwfsag-tcp-default { }
}
source 0.0.0.0/0
translate-address enabled
translate-port enabled
vlans {
/Common/Internet-Financial-Services
}
vlans-enabled
}
ltm policy /Common/Drafts/policy_10.10.10.41_443 {
controls { forwarding }
description "GDC IT - CM10041553"
last-modified 2019-03-18:13:42:56
published-copy /Common/policy_10.10.10.41_443
requires { http }
rules {
rule_http_redirect_accessoclienti_C_8447 {
actions {
0 {
forward
select
pool /Common/pool_it-accessoclienti_C_8447
}
}
conditions {
0 {
http-host
host
contains
values { accessoclienti-k.vwfs.it/ }
}
}
description "redirect to pool accessoclienti_C_8447"
ordinal 3
}
rule_http_redirect_accessodealer_C_8448 {
actions {
0 {
forward
select
pool /Common/pool_it-accessodealer_C_8448
}
}
conditions {
0 {
http-host
host
contains
values { accessodealer-k.vwfs.it/ }
}
}
description "redirect to pool accessodealer_C_8448"
ordinal 4
}
rule_http_redirect_fleetquotation_C_8445 {
actions {
0 {
forward
select
pool /Common/pool_it-fleetquotation_C_8445
}
}
conditions {
0 {
http-host
host
contains
values { fleetquo-ext-k.vwfs.it/ }
}
}
description "redirect to pool fleetquotation_C_8445"
ordinal 1
}
rule_http_redirect_fleetservice_C_8446 {
actions {
0 {
forward
select
pool /Common/pool_it-fleetservice_C_8446
}
}
conditions {
0 {
http-host
host
contains
values { fleetservice-ext-k.vwfs.it/ }
}
}
description "redirect to pool fleetservice_C_8446"
ordinal 2
}
rule_http_redirect_isam_C_8449 {
actions {
0 {
forward
select
pool /Common/pool_it-isam_C_8449
}
}
conditions {
0 {
http-host
host
contains
values { bdmrpr.vwfs.it/ bdrpr.vwfs.it/ crmwsrpr.vwfs.it/ easyrpr.vwfs.it/ firstrpr.vwfs.it/ freeasyrpr.vwfs.it/ rpr.vwfs.it/ }
}
}
description "redirect to pool isam_C_8449"
ordinal 5
}
rule_http_redirect_volkswagenfinancialservices-k_C_8444 {
actions {
0 {
forward
select
pool /Common/pool_it-volkswagenfinancialservices-k_C_8444
}
}
conditions {
0 {
http-host
host
contains
values { www-k.volkswagenfinancialservices.it/ }
}
}
description "redirect to pool volkswagenfinancialservices-k_C_8444"
}
}
strategy /Common/first-match
}
ltm virtual /Common/vs_20.20.20.22_80 {
description "SR777777, CM00000000"
destination /Common/20.20.20.22:80
ip-protocol tcp
mask 255.255.255.255
profiles {
/Common/tcp { }
/Common/vwfsag-http-default { }
}
rules {
/Common/ir_sni_glob_a01_20.20.20.22_443
/Common/_sys_https_redirect
}
source 0.0.0.0/0
translate-address enabled
translate-port enabled
}
ltm virtual /Common/vs_20.20.20.22_443 {
description "SR777777, CM00000000"
destination /Common/20.20.20.22:44355
ip-protocol tcp
mask 255.255.255.255
profiles {
/Common/pr_cssl_sni_glob_a01_default {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.es {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.fr {
context clientside
}
/Common/tcp { }
/Common/vwfsag-https-default { }
}
rules {
/Common/ir_sni_glob_a01_20.20.20.22_443
}
source 0.0.0.0/0
translate-address enabled
translate-port enabled
vlans {
/Common/Internet-Financial-Services
}
vlans-enabled
}
ltm virtual /Common/vs_sni_glob_a01_20.20.20.22_443 {
description RM10042579
destination /Common/20.20.20.22:443
ip-protocol tcp
mask 255.255.255.255
profiles {
/Common/pr_cssl_sni_fr_a01_volkswagenbank.fr {
context clientside
}
/Common/pr_cssl_sni_glob_a01_bilfinans.no {
context clientside
}
/Common/pr_cssl_sni_glob_a01_default {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.es {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.fr {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.gr {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.ie {
context clientside
}
/Common/pr_cssl_sni_glob_a01_vwfs.pt {
context clientside
}
/Common/pr_cssl_sni_gr_a01_volkswagenbank.gr {
context clientside
}
/Common/pr_cssl_sni_gr_a01_volkswagenfs.gr {
context clientside
}
/Common/pr_cssl_sni_mx_gr_a01_vwfs_mx {
context clientside
}
/Common/pr_cssl_sni_pt_a01_audifinancialservices.pt {
context clientside
}
/Common/pr_cssl_sni_pt_a01_seatfinancialservices.pt {
context clientside
}
/Common/pr_cssl_sni_pt_a01_skodafinancialservices.pt {
context clientside
}
/Common/pr_cssl_sni_pt_a01_volkswagenbank.pt {
context clientside
}
/Common/pr_cssl_sni_pt_a01_volkswagenfinancialservices.pt {
context clientside
}
/Common/tcp { }
/Common/vwfsag-https-default { }
}
rules {
/Common/ir_sni_glob_a01_20.20.20.22_443
}
source 0.0.0.0/0
translate-address enabled
translate-port enabled
vlans {
/Common/Internet-Financial-Services
}
vlans-enabled
}
ltm rule /Common/ir_sni_glob_a01_20.20.20.22_443 {
when HTTP_REQUEST {
if {[string tolower [HTTP::host]] contains "audifinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "seatfinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "skodafinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "volkswagenfinancialservices.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "volkswagenbank.pt"} {
HTTP::respond 301 "Location" "https://www.vwfs.pt[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "volkswagenbank.fr"} {
HTTP::respond 301 "Location" "https://www.vwfs.fr[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "volkswagenfs.gr"} {
HTTP::respond 301 "Location" "https://www.vwfs.gr[HTTP::uri]"
}
elseif {[string tolower [HTTP::host]] contains "volkswagenbank.gr"} {
HTTP::respond 301 "Location" "https://www.vwfs.gr[HTTP::uri]"
}
else {
HTTP::respond 301 Location "https://www.[HTTP::host][HTTP::uri]"
}
}
}
ltm policy /Common/Drafts/policy_10.10.10.41_443 {
controls { forwarding }
description "GDC IT - CM10041553"
last-modified 2019-03-18:13:42:56
published-copy /Common/policy_10.10.10.41_443
requires { http }
rules {
rule_http_redirect_accessoclienti_C_8447 {
actions {
0 {
forward
select
pool /Common/pool_it-accessoclienti_C_8447
}
}
conditions {
0 {
http-host
host
contains
values { accessoclienti-k.vwfs.it/ }
}
}
description "redirect to pool accessoclienti_C_8447"
ordinal 3
}
rule_http_redirect_accessodealer_C_8448 {
actions {
0 {
forward
select
pool /Common/pool_it-accessodealer_C_8448
}
}
conditions {
0 {
http-host
host
contains
values { accessodealer-k.vwfs.it/ }
}
}
description "redirect to pool accessodealer_C_8448"
ordinal 4
}
rule_http_redirect_fleetquotation_C_8445 {
actions {
0 {
forward
select
pool /Common/pool_it-fleetquotation_C_8445
}
}
conditions {
0 {
http-host
host
contains
values { fleetquo-ext-k.vwfs.it/ }
}
}
description "redirect to pool fleetquotation_C_8445"
ordinal 1
}
rule_http_redirect_fleetservice_C_8446 {
actions {
0 {
forward
select
pool /Common/pool_it-fleetservice_C_8446
}
}
conditions {
0 {
http-host
host
contains
values { fleetservice-ext-k.vwfs.it/ }
}
}
description "redirect to pool fleetservice_C_8446"
ordinal 2
}
rule_http_redirect_isam_C_8449 {
actions {
0 {
forward
select
pool /Common/pool_it-isam_C_8449
}
}
conditions {
0 {
http-host
host
contains
values { bdmrpr.vwfs.it/ bdrpr.vwfs.it/ crmwsrpr.vwfs.it/ easyrpr.vwfs.it/ firstrpr.vwfs.it/ freeasyrpr.vwfs.it/ rpr.vwfs.it/ }
}
}
description "redirect to pool isam_C_8449"
ordinal 5
}
rule_http_redirect_volkswagenfinancialservices-k_C_8444 {
actions {
0 {
forward
select
pool /Common/pool_it-volkswagenfinancialservices-k_C_8444
}
}
conditions {
0 {
http-host
host
contains
values { www-k.volkswagenfinancialservices.it/ }
}
}
description "redirect to pool volkswagenfinancialservices-k_C_8444"
}
}
strategy /Common/first-match
}
ltm pool /Common/pool_it-accessoclienti_C_8447 {
description irule-dmz1_wildcard-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fsbrdmzs1012:5556 {
address 101.139.100.138
}
}
monitor /Common/http
}
ltm pool /Common/pool_it-accessodealer_C_8448 {
description irule-fnord-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fsbrdmzs1012:5556 {
address 121.129.120.128
}
}
monitor /Common/http
}
ltm pool /Common/pool_it-fleetservice_C_8446 {
description irule-fnurd-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fsbrdmzs1012:5556 {
address 131.139.130.138
}
}
monitor /Common/http
}
ltm pool /Common/pool_it-volkswagenfinancialservices-k_C_8444 {
description irule-fnard-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fubar:5556 {
address 1.4.3.18
}
/DMZ1/node-dmz1_fubar:5556 {
address 2.4.3.18
}
}
monitor /Common/http
}
ltm pool /Common/pool_it-isam_C_8449 {
description irule-fnard-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_foobar:5556 {
address 13.4.33.138
}
}
monitor /Common/http
}
ltm pool /Common/pool_it-fleetquotation_C_8445 {
description irule-blub-uat_<YYYY>-<MM>-<DD>
members {
/DMZ1/node-dmz1_fsbrdmzs1012:5556 {
address 21.29.20.28
}
/DMZ1/node-dmz1_fsbrdmzs1013:5556 {
address 21.29.20.29
}
}
monitor /Common/http
}
ltm policy-strategy /Common/first-match { }
|