-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory1.yaml
2532 lines (2532 loc) · 81.5 KB
/
inventory1.yaml
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
all:
children:
default_group:
hosts:
CISCO-BRAS1:
ansible_host: 10.0.1.233
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Allameh-Karaj-1:
ansible_host: 10.0.19.170
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Allameh-Karaj-G:
ansible_host: 10.0.19.169
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Valiasr-Karaj-1:
ansible_host: 10.0.19.153
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Valiasr-Karaj-G:
ansible_host: 10.0.19.152
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Arses-1:
ansible_host: 10.0.19.149
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Arses-G:
ansible_host: 10.0.19.148
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Binalood1:
ansible_host: 10.0.19.168
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Binalood2:
ansible_host: 10.0.19.171
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
BinaloodG:
ansible_host: 10.0.19.167
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Tarazob-G:
ansible_host: 10.0.19.7
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Derakhti-1:
ansible_host: 10.0.19.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Derakhti-2:
ansible_host: 10.0.19.161
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Derakhti-G:
ansible_host: 10.0.19.5
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-EmadAra-2:
ansible_host: 10.0.19.166
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
EmadAra-1:
ansible_host: 10.0.19.147
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
EmadAra-G:
ansible_host: 10.0.19.146
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Iran-Kaveh-1:
ansible_host: 10.0.19.174
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Iran-Kaveh-G:
ansible_host: 10.0.19.173
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
1:
ansible_host: 10.0.1.182
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Latif-2:
ansible_host: 10.0.19.162
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Latif-G:
ansible_host: 10.0.19.9
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
G:
ansible_host: 10.0.6.28
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Karaj-1:
ansible_host: 10.0.12.44
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Karaj-2:
ansible_host: 10.0.12.45
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Karaj-3:
ansible_host: 10.0.12.46
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Karaj-4:
ansible_host: 10.0.12.47
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
NavardKaraj-5:
ansible_host: 10.0.12.48
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-PakTeliseh-1:
ansible_host: 10.0.19.15
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-PakTeliseh-2:
ansible_host: 172.23.51.26
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-PakTeliseh-3:
ansible_host: 10.0.19.150
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-PakTeliseh-G:
ansible_host: 10.0.19.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Karaj-PC-1:
ansible_host: 10.0.19.1
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Karaj-PC-2:
ansible_host: 10.0.19.172
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
TEH-RadSystem-1:
ansible_host: 10.0.6.183
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
TEH-RadSystem-2:
ansible_host: 10.0.6.254
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
TEH-RadSystem-G:
ansible_host: 10.0.6.234
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Safadasht-1:
ansible_host: 10.0.19.145
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Safadasht-2:
ansible_host: 10.0.19.164
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ALZ-Safadasht-G:
ansible_host: 10.0.19.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yademan-1:
ansible_host: 10.0.19.4
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yademan-2:
ansible_host: 10.0.19.8
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yademan-3:
ansible_host: 10.0.19.14
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yademan-Lan:
ansible_host: 10.0.19.34
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ARD-Ardebil-PC:
ansible_host: 10.0.50.43
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-BNG-ASR1:
ansible_host: 10.0.1.248
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-BNG-ASR2:
ansible_host: 172.24.43.58
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
AGH-Orumieh-PC:
ansible_host: 10.0.50.14
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
AGH-Orumieh-PC-1:
ansible_host: 10.0.50.75
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Khoy-PC:
ansible_host: 10.0.50.69
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ParkJangali-G:
ansible_host: 10.0.50.67
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Ailinkam-G:
ansible_host: 10.0.20.21
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Mianeh-PC:
ansible_host: 192.168.7.218
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
2:
ansible_host: 10.0.1.187
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Ahar-PC:
ansible_host: 10.0.50.15
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Alipour-G:
ansible_host: 10.0.20.24
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Arpadarasi:
ansible_host: 192.168.23.102
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Hamgaman-G:
ansible_host: 10.0.20.12
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-EmaratSaba-1:
ansible_host: 10.0.20.10
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-EmaratSaba-2:
ansible_host: 172.23.57.54
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-EmaratSaba-G:
ansible_host: 10.0.21.38
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Farhangian-1:
ansible_host: 10.0.20.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Farhangian-2:
ansible_host: 10.0.20.18
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Farhangian-G:
ansible_host: 10.0.20.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Layegh-1:
ansible_host: 10.0.20.25
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Layegh-G:
ansible_host: 10.0.20.23
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Safa-1:
ansible_host: 10.0.20.20
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-Safa-G:
ansible_host: 10.0.20.19
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Tabriz-SC2:
ansible_host: 10.0.20.1
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-VarzPazhooh-1:
ansible_host: 10.0.20.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-VarzPazhooh-2:
ansible_host: 172.23.72.22
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ASH-VarzPazhooh-G:
ansible_host: 10.0.20.15
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
PC:
ansible_host: 10.0.50.44
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
BSHR-Asalouyeh-PC:
ansible_host: 10.0.50.7
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
CHB_ShahreKord_PC:
ansible_host: 10.0.50.33
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
SW:
ansible_host: 10.0.6.81
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Router:
ansible_host: 10.0.1.104
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-AAA-SW:
ansible_host: 10.0.1.191
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-Core-SW:
ansible_host: 192.168.119.116
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IXP-SW:
ansible_host: 10.0.12.69
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-New-Core-SW:
ansible_host: 10.0.12.75
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-CRT:
ansible_host: 10.0.1.103
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-EDGE:
ansible_host: 10.0.1.215
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-EDGE-2:
ansible_host: 10.0.1.183
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-EDGE-TEMP:
ansible_host: 10.0.6.14
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-Iran-Edge:
ansible_host: 10.0.1.198
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-VPLS:
ansible_host: 10.0.1.169
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
New-Core-Switch:
ansible_host: 10.0.6.18
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-Iran-Edge:
ansible_host: 192.168.80.21
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-VPLS-Nexus:
ansible_host: 192.168.0.126
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ahvaz:
ansible_host: 192.168.168.226
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
sc1:
ansible_host: 10.0.1.254
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Mashhad-SC2-G1:
ansible_host: 10.0.22.1
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-CSW1:
ansible_host: 10.0.1.64
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-CSW2:
ansible_host: 10.0.1.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-CSW3:
ansible_host: 10.0.6.206
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-CSW4:
ansible_host: 10.0.6.134
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
209:
ansible_host: 10.0.1.209
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Almas-3-Dslam:
ansible_host: 172.23.184.98
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
baran-mahmodiye:
ansible_host: 192.168.180.114
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Erfan-D1:
ansible_host: 192.168.56.26
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Erfan-D2:
ansible_host: 192.168.56.30
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-EADGE:
ansible_host: 10.0.1.215
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
New:
ansible_host: 192.168.9.170
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ELM-Eilam-PC:
ansible_host: 10.0.50.20
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
IDC-Juniper-Firewall:
ansible_host: 10.0.1.44
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MT:
ansible_host: 192.168.152.186
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MT2:
ansible_host: 10.0.1.219
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
IDCG1:
ansible_host: 10.0.1.43
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
IDCG2:
ansible_host: 10.0.1.68
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Servers:
ansible_host: 10.0.1.137
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-11:
ansible_host: 10.0.6.82
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-12:
ansible_host: 10.0.12.78
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-3:
ansible_host: 10.0.1.196
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-4:
ansible_host: 192.168.155.46
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-5:
ansible_host: 10.0.1.231
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-6:
ansible_host: 10.0.1.80
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Emam-IDCG-7:
ansible_host: 10.0.6.47
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
IDC-Juniper:
ansible_host: 10.0.1.143
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Dehkadeh-G:
ansible_host: 10.0.50.41
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Eram-1:
ansible_host: 10.0.16.9
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Eram-G:
ansible_host: 10.0.16.21
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-JahanSabz-G:
ansible_host: 10.0.17.168
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Jahrom-PC:
ansible_host: 10.0.16.17
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Kazeroon-DanaG:
ansible_host: 10.0.1.232
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Kazeroon-PC:
ansible_host: 192.168.117.195
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Lar-PC:
ansible_host: 10.0.50.12
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MarvdashtPC:
ansible_host: 10.0.50.4
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Mirdamad-1:
ansible_host: 10.0.17.165
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Mirdamad-2:
ansible_host: 10.0.17.175
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Mirdamad-G:
ansible_host: 10.0.16.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Pajooheshkadeh-Mechanic-1:
ansible_host: 10.0.17.173
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Pajooheshkadeh-Mechanic-G:
ansible_host: 10.0.17.172
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Persian-Pad-1:
ansible_host: 10.0.16.20
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Persian-Pad-G:
ansible_host: 10.0.16.10
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-IDC-CustomerSW:
ansible_host: 10.0.16.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-SC2-IDC-SW1:
ansible_host: 192.168.9.170
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shiraz-SC2-G1-Old:
ansible_host: 10.0.16.1
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shiraz-SC2-G2-New:
ansible_host: 10.0.17.176
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shiraz-SC2-G2-Old:
ansible_host: 10.0.16.25
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shiraz-SC2-POP-SW-1:
ansible_host: 10.0.17.177
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shahr-1:
ansible_host: 10.0.17.167
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shahr-2:
ansible_host: 10.0.17.171
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Shahr-G:
ansible_host: 10.0.16.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Yeganeh-1:
ansible_host: 10.0.16.4
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Yeganeh-2:
ansible_host: 10.0.16.7
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Yeganeh-3:
ansible_host: 10.0.16.8
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
FRS-Yeganeh-G:
ansible_host: 10.0.16.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yeganeh-Lan:
ansible_host: 10.0.17.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Yeganeh-LAN1:
ansible_host: 10.0.17.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Gil-Anzali-PC-G:
ansible_host: 10.0.50.47
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
GIL-Rasht-PC-G2-1:
ansible_host: 10.0.50.26
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
GIL-Rasht-PC-G2-2:
ansible_host: 10.0.50.139
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
GIL-Rasht-PC-IDC-SW:
ansible_host: 10.0.50.32
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
GLS-GonbadKavoos-PC:
ansible_host: 10.0.50.71
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
GLS-Gorgan-PC:
ansible_host: 10.0.50.148
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Hamedan-SC2:
ansible_host: 10.0.50.11
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Malayer-PC:
ansible_host: 10.0.50.53
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Bandar-Emam-Ali:
ansible_host: 10.0.50.21
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Bandar-Emam-Khomeini:
ansible_host: 10.0.50.56
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-BandarLengeh-G:
ansible_host: 10.0.50.1
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Kish-PC:
ansible_host: 10.0.50.59
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Minab-PC:
ansible_host: 10.0.50.22
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Qeshm-Negin:
ansible_host: 10.0.50.45
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Toreh-PC:
ansible_host: 10.0.50.147
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Media-1:
ansible_host: 10.0.50.153
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
HMG-Media-G:
ansible_host: 10.0.50.152
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Murchehkhort-G:
ansible_host: 10.0.25.37
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
AlamAra-LAN:
ansible_host: 10.0.25.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-AlamAra-1:
ansible_host: 10.0.24.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-AlamAra-2:
ansible_host: 10.0.24.4
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-AlamAra-3:
ansible_host: 10.0.24.35
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-AlamAra-G:
ansible_host: 10.0.24.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-GitiPasand-G:
ansible_host: 10.0.24.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Jey-1:
ansible_host: 10.0.24.15
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Jey-G:
ansible_host: 10.0.24.5
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Kashan-PC:
ansible_host: 10.0.50.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Kaveh-1:
ansible_host: 10.0.24.17
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Kaveh-2:
ansible_host: 10.0.24.18
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Kaveh-G:
ansible_host: 10.0.24.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Naen-PC:
ansible_host: 10.0.24.12
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Isfahan-SC1-G1:
ansible_host: 10.0.1.127
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Isfahan-SC1-G2:
ansible_host: 10.0.50.74
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-Isfahan-SC2:
ansible_host: 10.0.24.10
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
ISF-TakNegin-G:
ansible_host: 10.0.24.9
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MC:
ansible_host: 10.0.50.146
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRM-Bam-PC:
ansible_host: 10.0.50.77
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRM-Kerman-1:
ansible_host: 10.0.50.66
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRM-Kerman-PC:
ansible_host: 10.0.50.28
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRM-Rafsanjan-pc:
ansible_host: 10.0.50.35
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRM-Sirjan-PC:
ansible_host: 10.0.50.134
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRS-Kermanshah-PC-G1:
ansible_host: 10.0.50.2
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRS-Kermanshah-PC-G2:
ansible_host: 10.0.50.78
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Aran-1:
ansible_host: 10.0.22.5
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-AranG:
ansible_host: 10.0.22.11
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHJ-Birjand-PC:
ansible_host: 10.0.50.54
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHSH-Bojnoord-PC:
ansible_host: 10.0.50.34
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Etminan:
ansible_host: 10.0.22.10
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Etminan-1:
ansible_host: 10.0.22.17
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Gonabad-PC:
ansible_host: 10.0.50.137
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Khorshid1:
ansible_host: 10.0.22.9
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KhorshidG:
ansible_host: 10.0.22.7
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Mashhad-SC2-G2:
ansible_host: 10.0.22.13
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Neishaboor-PC:
ansible_host: 10.0.50.42
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Sabzevar-PC:
ansible_host: 10.0.23.36
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Shargh-Raya-1:
ansible_host: 10.0.22.8
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Shargh-Raya-2:
ansible_host: 10.0.22.15
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Shargh-Raya-G:
ansible_host: 10.0.22.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Sepehr-1:
ansible_host: 10.0.22.14
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-SepehrG:
ansible_host: 10.0.22.12
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Sinoor-1:
ansible_host: 10.0.22.16
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Sinoor-G:
ansible_host: 10.0.22.4
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHRZ-Torbat-PC:
ansible_host: 10.0.50.58
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
SarbandarG:
ansible_host: 10.0.50.40
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Dezfoul-PC:
ansible_host: 10.0.50.136
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
Abadan-PCG:
ansible_host: 10.0.50.23
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Ahvaz-SC1-G1-1:
ansible_host: 10.0.1.254
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Ahvaz-SC1-G1-2:
ansible_host: 10.0.50.128
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Ahvaz-SC1-G2:
ansible_host: 10.0.1.243
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Ahvaz-SC2-G:
ansible_host: 10.0.1.17
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Eghbal-1:
ansible_host: 10.0.1.78
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KHUZ-Eghbal-G:
ansible_host: 10.0.1.77
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KB-Dogonbadan-PC:
ansible_host: 10.0.50.3
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KB-Yasuj-PC:
ansible_host: 10.0.50.52
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
KRD-Sanandaj-PC:
ansible_host: 10.0.50.51
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-Emam-IDCG-7:
ansible_host: 10.0.6.47
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-CORE-SW:
ansible_host: 10.0.1.209
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-HCC1-SW:
ansible_host: 10.0.1.150
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-HCC2-SW:
ansible_host: 172.24.43.56
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-LCT-HCC-FCP-SW:
ansible_host: 172.24.43.57
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-Server1:
ansible_host: 10.0.2.153
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-Server2:
ansible_host: 10.0.2.154
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
RSPN-Sheikhfazlollah-2:
ansible_host: 192.168.198.210
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-IDC-SW1:
ansible_host: 10.0.1.216
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-IDC-SW2:
ansible_host: 10.0.1.217
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LCT-IDC-SW3:
ansible_host: 192.168.153.76
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
LRS-KhoramAbad-PC:
ansible_host: 10.0.50.19
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MKZ-Khomein-PC:
ansible_host: 10.0.50.62
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MRK-Arak-PC:
ansible_host: 10.0.50.18
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MRK-Saveh-PC:
ansible_host: 10.0.50.49
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MAZ-Amol-PC:
ansible_host: 10.0.50.61
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MZN-Chalous:
ansible_host: 10.0.50.38
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MZN-Babol-SC2:
ansible_host: 10.0.50.8
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
MZN-Sari-PC:
ansible_host: 10.0.50.6
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
QAZ-Qazvin-PC:
ansible_host: 10.0.50.37
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
QAZ-BalinTech-1:
ansible_host: 10.0.50.132
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
QAZ-BalinTech-2:
ansible_host: 172.23.30.54
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
QAZ-BalinTech-3:
ansible_host: 10.0.50.68
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami
QAZ-BalinTech-G:
ansible_host: 10.0.50.50
ansible_password: 3pehr.emAAAAA
ansible_user: se.emami