-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfortigate-geoIP-create-aliases
1006 lines (1006 loc) · 13.5 KB
/
fortigate-geoIP-create-aliases
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
config firewall address
edit Andorra
set type geography
set country AD
next
edit United_Arab_Emirates
set type geography
set country AE
next
edit Afghanistan
set type geography
set country AF
next
edit Antigua_Barbuda
set type geography
set country AG
next
edit Anguilla
set type geography
set country AI
next
edit Albania
set type geography
set country AL
next
edit Armenia
set type geography
set country AM
next
edit Netherlands_Antilles
set type geography
set country AN
next
edit Angola
set type geography
set country AO
next
edit Antarctica
set type geography
set country AQ
next
edit Argentia
set type geography
set country AR
next
edit American_Samoa
set type geography
set country AS
next
edit Austria
set type geography
set country AT
next
edit Australia
set type geography
set country AU
next
edit Aruba
set type geography
set country AW
next
edit Aland_Islands
set type geography
set country AX
next
edit Azerbaijan
set type geography
set country AZ
next
edit Bosnia_Herzegovina
set type geography
set country BA
next
edit Barbados
set type geography
set country BB
next
edit Bangladesh
set type geography
set country BD
next
edit Belgium
set type geography
set country BE
next
edit Burkina_Faso
set type geography
set country BF
next
edit Bulgaria
set type geography
set country BG
next
edit Bahrain
set type geography
set country BH
next
edit Burundi
set type geography
set country BI
next
edit Benin
set type geography
set country BJ
next
edit Saint_Bartelemey
set type geography
set country BL
next
edit Bermuda
set type geography
set country BM
next
edit Brunei_Darussalam
set type geography
set country BN
next
edit Bolivia
set type geography
set country BO
next
edit Bonaire_St_Eustatius_and_Saba
set type geography
set country BQ
next
edit Brazil
set type geography
set country BR
next
edit Bahamas
set type geography
set country BS
next
edit Bhutan
set type geography
set country BT
next
edit Bouvet_Island
set type geography
set country BV
next
edit Botswana
set type geography
set country BW
next
edit Belarus
set type geography
set country BY
next
edit Belize
set type geography
set country BZ
next
edit Canada
set type geography
set country CA
next
edit Cocos_Keeling_Islands
set type geography
set country CC
next
edit Congo_Democratic_Repub
set type geography
set country CD
next
edit Central_African_Republic
set type geography
set country CF
next
edit Congo
set type geography
set country CG
next
edit Switzerland
set type geography
set country CH
next
edit Cote_d_Ivoire
set type geography
set country CI
next
edit Cook_Islands
set type geography
set country CK
next
edit Chile
set type geography
set country CL
next
edit Cameroon
set type geography
set country CM
next
edit China
set type geography
set country CN
next
edit Colombia
set type geography
set country CO
next
edit Costa_Rica
set type geography
set country CR
next
edit Cuba
set type geography
set country CU
next
edit Cape_Verde
set type geography
set country CV
next
edit Curacao
set type geography
set country CW
next
edit Christmas_Island
set type geography
set country CX
next
edit Cyprus
set type geography
set country CY
next
edit Czech_Republic
set type geography
set country CZ
next
edit Germany
set type geography
set country DE
next
edit Djibouti
set type geography
set country DJ
next
edit Denmark
set type geography
set country DK
next
edit Dominican
set type geography
set country DM
next
edit Dominican_Republic
set type geography
set country DO
next
edit Algeria
set type geography
set country DZ
next
edit Ecuador
set type geography
set country EC
next
edit Estonia
set type geography
set country EE
next
edit Egypt
set type geography
set country EG
next
edit Western_Sahara
set type geography
set country EH
next
edit Eritrea
set type geography
set country ER
next
edit Spain
set type geography
set country ES
next
edit Ethiopia
set type geography
set country ET
next
edit Finland
set type geography
set country FI
next
edit Fiji
set type geography
set country FJ
next
edit Falkland_Islands_Malvinas
set type geography
set country FK
next
edit Micronesia_Federated_States
set type geography
set country FM
next
edit Faroe_Islands
set type geography
set country FO
next
edit France
set type geography
set country FR
next
edit Gabon
set type geography
set country GA
next
edit United_Kingdom
set type geography
set country GB
next
edit Grenada
set type geography
set country GD
next
edit Georgia
set type geography
set country GE
next
edit French_Guiana
set type geography
set country GF
next
edit Guernsey
set type geography
set country GG
next
edit Ghana
set type geography
set country GH
next
edit Gibraltar
set type geography
set country GI
next
edit Greenland
set type geography
set country GL
next
edit Gambia
set type geography
set country GM
next
edit Guinea
set type geography
set country GN
next
edit Guadeloupe
set type geography
set country GP
next
edit Equatorial_Guinea
set type geography
set country GQ
next
edit Greece
set type geography
set country GR
next
edit South_Georgia_and_South_Sandwich_Islands
set type geography
set country GS
next
edit Guatemala
set type geography
set country GT
next
edit Guam
set type geography
set country GU
next
edit Guinea-Bissau
set type geography
set country GW
next
edit Guyana
set type geography
set country GY
next
edit Hong_Kong
set type geography
set country HK
next
edit Heard_and_Mcdonald_Islands
set type geography
set country HM
next
edit Honduras
set type geography
set country HN
next
edit Croatia
set type geography
set country HR
next
edit Haiti
set type geography
set country HT
next
edit Hungary
set type geography
set country HU
next
edit Indonesia
set type geography
set country ID
next
edit Ireland
set type geography
set country IE
next
edit Israel
set type geography
set country IL
next
edit Isle_of_Man
set type geography
set country IM
next
edit India
set type geography
set country IN
next
edit British_Indian_Ocean_Territory
set type geography
set country IO
next
edit Iraq
set type geography
set country IQ
next
edit Iran
set type geography
set country IR
next
edit Iceland
set type geography
set country IS
next
edit Italy
set type geography
set country IT
next
edit Jersey
set type geography
set country JE
next
edit Jamaica
set type geography
set country JM
next
edit Jordan
set type geography
set country JO
next
edit Japan
set type geography
set countr JP
next
edit Kenya
set type geography
set country KE
next
edit Kyrgyzstan
set type geography
set country KG
next
edit Cambodia
set type geography
set country KH
next
edit Kiribati
set type geography
set country KI
next
edit Comoros
set type geography
set country KM
next
edit Saint_Kitts_and_Nevis
set type geography
set country KN
next
edit North_Korea
set type geography
set country KP
next
edit South_Korea
set type geography
set country KR
next
edit Kuwait
set type geography
set country KW
next
edit Cayman_Islands
set type geography
set country KY
next
edit Kazakhstan
set type geography
set country KZ
next
edit Lao_Peoples_Democratic_Rep
set type geography
set country LA
next
edit Lebanon
set type geography
set country LB
next
edit Saint_Lucia
set type geography
set country LC
next
edit Liechtenstein
set type geography
set country LI
next
edit Sri_Lanka
set type geography
set country LK
next
edit Liberia
set type geography
set country LR
next
edit Lesotho
set type geography
set country LS
next
edit Lithuania
set type geography
set country LT
next
edit Luxembourg
set type geography
set country LU
next
edit Latvia
set type geography
set country LV
next
edit Lbyan_Arab_Jamahiriya
set type geography
set country LY
next
edit Morocco
set type geography
set country MA
next
edit Monaco
set type geography
set country MC
next
edit Moldova
set type geography
set country MD
next
edit Montenegro
set type geography
set country ME
next
edit Saint_Martin
set type geography
set country MF
next
edit Madagascar
set type geography
set country MG
next
edit Marshall_Islands
set type geography
set country MH
next
edit Macedonia
set type geography
set country MK
next
edit Mali
set type geography
set country ML
next
edit Myanmar
set type geography
set country MM
next
edit Mongolia
set type geography
set country MN
next
edit Macao
set type geography
set country MO
next
edit Northern_Mariana_Islands
set type geography
set country MP
next
edit Martinique
set type geography
set country MQ
next
edit Mauritania
set type geography
set country MR
next
edit Montserrat
set type geography
set country MS
next
edit Malta
set type geography
set country MT
next
edit Mauritius
set type geography
set country MU
next
edit Maldives
set type geography
set country MV
next
edit Malawi
set type geography
set country MW
next
edit Mexico
set type geography
set country MX
next
edit Malaysia
set type geography
set country MY
next
edit Mozambique
set type geography
set country MZ
next
edit Namibia
set type geography
set country NA
next
edit New_Caledonia
set type geography
set country NC
next
edit Niger
set type geography
set country NE
next
edit Norfolk_Island
set type geography
set country NF
next
edit Nigeria
set type geography
set country NG
next
edit Nicaragua
set type geography
set country NI
next
edit Netherlands
set type geography
set country NL
next
edit Norway
set type geography
set country NO
next
edit Nepal
set type geography
set country NP
next
edit Nauru
set type geography
set country NR
next
edit Niue
set type geography
set country NU
next
edit New_Zealand
set type geography
set country NZ
next
edit Oman
set type geography
set country OM
next
edit Panama
set type geography
set country PA
next
edit Peru
set type geography
set country PE
next
edit French_Polynesia
set type geography
set country PF
next
edit Papua_New_Guinea
set type geography
set country PG
next
edit Phillipines
set type geography
set country PH
next
edit Pakistan
set type geography
set country PK
next
edit Poland
set type geography
set country PL
next
edit St_Pierre_and_Miquelon
set type geography
set country PM
next
edit Pitcairn
set type geography
set country PN
next
edit Puerto_Rico
set type geography
set country PR
next
edit Palestinian_Territory
set type geography
set country PS
next
edit Portugal
set type geography
set country PT
next
edit Palau
set type geography
set country PW
next
edit Paraguay
set type geography
set country PY
next
edit Qatar
set type geography
set country QA
next
edit Reunion
set type geography
set country RE
next
edit Romania
set type geography
set country RO
next
edit Serbia
set type geography
set country RS
next
edit Russia
set type geography
set country RU
next
edit Rwanda
set type geography
set country RW
next
edit Saudi_Arabia
set type geography
set country SA
next
edit Solomon_Islands
set type geography
set country SB
next
edit Seychelles
set type geography
set country SC
next
edit Sudan
set type geography
set country SD
next
edit Sweden
set type geography
set country SE
next
edit Singapore
set type geography
set country SG
next
edit Saint_Helena
set type geography
set country SH
next
edit Slovenia
set type geography
set country SI
next
edit Svalbard_and_Jan_Mayen
set type geography
set country SJ
next
edit Slovakia
set type geography
set country SK
next
edit Sierra_Leone
set type geography
set country SL
next
edit San_Marino
set type geography
set country SM
next
edit Senegal
set type geography
set country SN
next
edit Somalia
set type geography
set country SO
next
edit Suriname
set type geography
set country SR
next
edit South_Sudan
set type geography
set country SS
next
edit Sao_Tome_and_Principe
set type geography
set country ST
next
edit El_Salvador
set type geography
set country SV
next
edit Sint_Maarten
set type geography
set country SX
next
edit Syrian_Arab_Republic
set type geography
set country SY
next
edit Swaziland
set type geography
set country SZ
next
edit Turks_and_Caicos_Islands
set type geography
set country TC
next
edit Chad
set type geography
set country TD
next
edit French_Southern_Territories
set type geography
set country TF
next
edit Togo
set type geography
set country TG
next
edit Thailand
set type geography
set country TH
next
edit Tajikistan
set type geography
set country TJ
next
edit Tokelau
set type geography
set country TK
next
edit TimorLeste
set type geography
set country TL
next
edit Turkmenistan
set type geography
set country TM
next
edit Tunisia
set type geography
set country TN
next
edit Tonga
set type geography
set country TO
next
edit Turkey
set type geography
set country TR
next
edit Trinidad_and_Tobago
set type geography
set country TT
next
edit Tuvalu
set type geography
set country TV
next
edit Taiwan
set type geography
set country TW
next
edit Tanzania
set type geography
set country TZ
next
edit Ukraine
set type geography
set country UA
next
edit Uganda
set type geography
set country UG
next
edit US_Minor_Outlying_Islands
set type geography
set country UM
next
edit United_States
set type geography
set country US
next
edit Uruguay
set type geography
set country UY
next
edit Uzbekistan
set type geography
set country UZ
next
edit Holy_See_Vatican_State
set type geography
set country VA
next
edit St_Vincent_and_Grenadines
set type geography
set country VC
next
edit Venezuela
set type geography
set country VE
next
edit British_Virgin_Islands
set type geography
set country VG
next
edit US_Virgin_Islands
set type geography
set country VI
next
edit Vietnam
set type geography
set country VN
next
edit Vanuatu
set type geography
set country VU
next
edit Wallis_and_Futuna
set type geography
set country WF
next
edit Samoa
set type geography
set country WS
next
edit Kosovo
set type geography
set country XK
next
edit Yemen
set type geography
set country YE
next
edit Mayotte
set type geography
set country YT
next
edit South_Africa
set type geography
set country ZA
next
edit Zambia
set type geography
set country ZM