-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathblacklist4.txt
1235 lines (1067 loc) · 37 KB
/
blacklist4.txt
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
###############################################################################
## Бо́льшая часть сетей, перечисленных ниже получена от самих "чиновничьих" ##
## организаций через стандартные средства построения маршрутизации, поэтому ##
## некоторые могут иметь не столь очевидные признаки "причастности" ##
###############################################################################
# name: РосКомНадзор
# netname: Roskomnadzor-net
# descr: Client of JSC Rostelecom
# origin: AS12389
87.226.213.0/24
# name: НТЦ Информрегистр
# netname: COMCOR-FGUPNTCInformregistr
# descr: Network for FGUP NTC "Informregistr"
# origin: AS8732
62.117.66.160/29
# name: ФСКН, fskn.gov.ru
# netname: SPEZSVYAZ
# descr: SPEZSVYAZ Internal network
# origin: AS31430
# Старая подсеть: 78.108.192.0/20
82.112.188.0/24
# name: rkn.gov.ru rsoc.ru
# netname: RU-RTCOMM-20001220
# descr: OJSC RTComm.RU
# origin: AS8342
# (?) 217.106.0.0/16
217.106.225.128/27
# name: 398-fz.rkn.gov.ru 97-fz.rkn.gov.ru eais.rkn.gov.ru nap.rkn.gov.ru
# netname: MMT
# descr: MMT NPROD CMS 11-27194
# origin: AS12389
# (?) 46.61.128.0/17
46.61.232.10/32
# name: Федеральная Налоговая Служба (ФНС) nalog.ru
# netname: RTCOMM-GNIVC
# descr: Chief Scientific - Research Computing Center of the Federal
# Tax Service of Russia
# descr: FGUP GNIVC FNS Russia
# origin: AS8342
# (?) 81.176.0.0/16
81.176.70.0/26
81.176.235.0/27
217.107.209.0/24
# name: Предположительно освобождённая сеть (FIXME!)
# netname: WELL-COM-NET
# descr: WelL-COM ltd.
# descr: 194017 Drezdenskaya 8/2, Saint-Petersburg, Russia
# origin: AS3267
85.142.52.0/24
# name: Предположительно освобождённая сеть (FIXME!)
# netname: NTKLtd-NET
# descr: Nezavisimaya telekommunikacionnaya kompaniya Ltd.
# origin: AS56477
91.224.182.0/23
# name: Гознак
# netname: GOZNAK-AS
# descr: FGUP Goznak
# descr: Goznak Network for Public Service
# descr: Maintains all Goznak objects.
# origin: AS56725
91.227.32.0/24
# name: Следственый комитет (СК РФ)
# netname: RU-WEST-CALL-20080227
# descr: The Investigative Committee
# descr: at the Prosecutor's Office of
# descr: the Russian Federation
# descr: Tekhnicheskiy per., 2
# descr: Moscow, Russia
# descr: WestCall Ltd
# origin: AS8595
92.39.133.160/28
# name: sledcom.ru
# netname: RSNET
# descr: RUSSIAN STATE INTERNET NETWORK
# descr: Federal Guard Service of the Russian Federation
# origin: AS43797
95.173.144.0/20
# name: Железногорский ГХК, старая подсеть СК РФ
# netname: RU-ATOMLINK-20081107
# descr: OOO "Telecom GKhK"
# descr: ATOMLINK-AS
# origin: AS48302
94.199.64.0/21
# name: Федеральная Служба Охраны (ФСО)
# netname: RU-FGS-20090305
# descr: The Federal Guard Service of the Russian Federation
# origin: AS8291
95.173.128.0/19
# name: Электронное правительство (+ "Спутник")
# netname: Electronic-government
# descr: OJSC Rostelecom
# descr: Electronic government of the Russian Federation
109.207.0.0/20
5.143.224.0/21
95.167.189.0/25
# name: Московская Городская Радио-частотная сеть (РСВО)
# netname: RU-MSRN-20100701
# descr: Federal State Unitary Enterprise of the Order of the Red Banner of Labour "Russian Broad-casting and Notification Network"
# descr: Moscow City Radio Broadcasting Network
# origin: AS197150
178.237.240.0/20
# name: Гос. радио-частотный Центр (ГРЧЦ)
# netname: GRFC-NET
# descr: Federal Unitary State Enterprise General Radio Freqency Centre
# origin: AS196641
194.165.22.0/23
# name: RSNet (Основная сеть для Гос.органов)
# netname: RSNET
# descr: RUSSIAN STATE INTERNET NETWORK
# descr: Main Division of Informations Resources
# descr: for States organs of the Russian Federation
# origin: AS8291
194.226.80.0/20
194.226.116.0/22
# origin: AS42121
194.226.127.0/24
# name: НТЦ "Атлас" (НИЦИ при МИД)
# netname: SRCI-MID-RF-NET
# descr: Research Centre for Computer Science at the Russian Foreign Ministry
# origin: AS57580
77.41.159.0/24
194.85.30.0/24
# name: НТЦ "Атлас" (ЦентрИнформ)
# netname: ATLAS-NW-NET
# descr: Federal State Unitary Enterprise CenterInform
# descr: ATLAS-NW-NET
# origin: AS29450
195.149.110.0/24
# name: НТЦ "Атлас"
# netname: ATLAS-NET
# descr: FGUP NTC ATLAS
# origin: AS51665
178.237.206.0/24
# name: НТЦ "Атлас" (Новосибирский филиал)
# netname: ATLASNSK
# descr: Novosibirsk department of Atlas ISP
# origin: AS43208
91.190.236.0/22
# name: Московская прокуратура (mosproc.ru)
# netname: RU-ROPNET-990301
# descr: RopNet
# descr: RopNet-Block1
# origin: AS12314
212.42.43.189/32
# ex: 212.42.32.0/19 (слишком широкий диапазон)
# (?) Раз есть RopNet-Block1, должны быть и ropnet-blockN
# name: Федеральная Служба Безопасности (ФСБ)
# netname: RT-CLNT-FSB-RF
# descr: Federal Security Service of Russian Federation
# descr: 3/6 Lubyansky Proezd Moscow 103045
# origin: AS8342
213.24.76.0/23
# name: Министерство образования (МинОбрНауки)
# netname: SRISI
# descr: Network Federal agency on education
# descr: 51, st. Lusinovskaya, Moscow, 115998, Russia
# descr: Network Federal agency on education
# origin: AS3267
193.27.214.0/23
################### Научные центры/институты ######################
# name: ГосНИИАС
# netname: GOSNIIAS-NET
# descr: Federal state unitary enterprise 'State Research Institute of Aviation Systems'
# origin: AS197553
193.47.146.0/24
# name: НИИГА
# netname: NCPLG-NET
# descr: Federal State Unitary Enterprise "State
# descr: Scientific Network
# descr: Federal State Unitary Enterprise
# descr: "State Scientific-research Institute
# descr: of the Civil Aviation (Scientific Center
# descr: for maintenance of the flying fitness of airships)"
# descr: SC MFFA (NCPLG VS)
# descr: Scientific Network
# origin: AS33888
194.150.202.0/23
# name: ВЭИ
# netname: vei
# descr: Federal State Unity Enterprise
# descr: All-Russian Electrotechnical Institute of V.I. Lenin
# origin: AS51039
194.190.89.0/24
# name: ВНИИгеосистем
# netname: VNIIGEOSYSTEM-NET
# descr: State Science Centre VNIIGeosystem
# origin: AS58279
91.236.22.0/23
194.226.22.0/23
###############################################################################
################################## !!!!!! ###################################
###############################################################################
## Все подсети, перечисленные ниже этой заметки не являются "принадлежащими" ##
## гос. структурам в строгом смысле. И, вдобавок, получены "контибьюторами" ##
## Поэтому при любых сомнениях - заводите issue и/или добавляйте их себе в ##
## whitelist4_local.txt ##
###############################################################################
################################## !!!!!! ###################################
# name: Свердловская областная дума
# descr: Oblastnaya Duma Zakonodatel"nogo Sobraniya Sverdlovskoj oblasti
# descr: Ekaterinburg, Russia
212.23.85.128/25
212.23.73.4/30
# name: Объединенная редакция МВД
# descr: Network for Objedinennaya redakciya MVD Rossii
213.171.40.80/29
# name: Екатеринбургская дума
# descr: Gorodskaya Duma
# descr: Ekaterinburg, Russia
195.58.0.212/30
195.58.30.64/26
# name: Вологодский ФСКН
# netname: FSKN-Vologda
# descr: Ticket 10-09407-2, SZF
95.167.76.160/27
# name: Министерство связи
# descr: Executive office of Ministry of press,
# descr: broadcasting and mass communication
213.243.88.0/24
212.69.117.192/27
195.230.86.64/26
# name: Кемеровское казначейство
# netname: UFK-KMR-NET
# descr: Territorial branch of Federal Treasury in Kemerovo region
91.198.38.0/24
# name: Алтайская ФНС
# descr: Ministry of Taxation of Altai territory
# descr: Upravlenie Ministerstva RF po nalogam i sboram po altaiskomu kraiu
217.107.45.0/29
# name: Волгоградская ФНС
# descr: Ministry of Taxation, subsidiary of Volgagrad region
# descr: Lenina st., 90
# descr: Volgagrad, Russia
217.106.203.72/29
# name: Башкирская ФНС
# descr: Ministry of Taxation, subsidiary of Bashkortostan region
# descr: 1b, Vladivostokskaya st.,
# descr: Ufa, Republic Bashkortostan
217.107.5.64/29
217.107.5.0/29
# name: Южно-Сахалинский ФСКН
# descr: 693000 Russia Yujno-Sahalynsk, ZC-7536978
# descr: Sahalinskaya, 4A, KL-3495808
# descr: FSKN, http://www.fskn.gov.ru
195.239.251.48/29
# name: Чувашская ФНС
# netname: RU-CHUVASHIA-NALOG
# descr: The Ministry of Taxation of the Russian Federation in Chuvashia.
# descr: Russia, Cheboksary
# descr: Bazarnaya, 40
217.106.150.80/29
# name: Московская областная дума
# netname: MosOblDuma-NET
# descr: MosOblDuma
# descr: GLOBUS-ROUTE-19
82.198.176.144/29
82.198.176.16/29
# name: Черкесская ФНС
# netname: UMNS-CHERKESSK
# descr: Ministry of Taxation, subsidiary of Cherkessk region
# descr: Cherkessk, Krasnoarmeiskaya st., 70
217.106.203.240/29
# name: Московская городская дума
# descr: Moscow City Government and Moscow City Duma network
212.11.130.0/23
212.11.128.0/23
87.245.157.240/29
94.79.48.0/25
77.108.103.144/29
# name: Тамбовская дума
# netname: TAMBOVOBLDUMA-NET
# descr: (VR000128) tambov-duma,
# descr: Tambov, Russia
# descr: RU-TRANS-TELECOM
# descr: Rostov/Don
62.33.63.144/28
# name: Саратовская ФНС
# netname: UMNS-SARATOV
# descr: Ministry of Taxation, subsidiary of Saratov region
# descr: 24, Rabochaya st.,
# descr: Saratov, 410028
# descr: RTCOMM-RU
217.107.5.24/29
# name: МЧС по Саратовской области
# netname: MCHS-Saratov
# descr: MCHS Rossii po Saratovskoj oblasti
# descr: Sobornaya sq.,7. Saratov, Russia
# descr: RU-VTT-0 (Saratov Part-I)
217.23.88.248/29
# name: Министерство юстиции
# netname: SCLI-NET-MinJust
# descr: JSC Rostelecom Client (MinJust R&D center)
# descr: ROSTELECOM NETS
87.226.239.180/30
87.226.156.64/26
# name: Калининградская областная дума
# netname: KALININGRADSKAYA-OBLASTNAYA-DUMA-LAN
# descr: Kirova ul. d.17
# descr: Kaliningrad
# descr: JSC PeterStar
# descr: PeterStar at Kaliningrad
93.153.144.60/30
# name: Рублево-Успенский ЛОК
# netname: RULOK-net
# descr: FGUP "Rublevo-Uspenskiy LOK"
# descr: Route for FGUP "Rublevo-Uspenskiy LOK"
91.239.228.0/23
# name: Медцентр МЧС
# netname: MCHS
# descr: Medical Center MCHS
# descr: SPB-TELEPORT
217.148.216.156/30
# name: Псковская ФНС
# netname: UMNS-PSKOV
# descr: Ministry of Taxation, subsidiary of Pskov region
# descr: RTCOMM-RU
213.59.91.128/27
213.59.91.176/28
# name: Вологодская ФНС
# netname: UMNS-VOLOGDA
# descr: Ministry of Taxation, subsidiary of Vologda region
# descr: UMNS35
# descr: Vologda, Russia
# descr: RTCOMM-RU
213.24.160.0/28
# name: ФСКН по Амурской области
# netname: FSKN_po_Amurskoj_oblasti
# descr: Ticket 10-21141-1
# descr: ROSTELECOM NETS
95.167.157.156/30
# name: Пермская дума
# netname: PERMGORDUMA-NET
# descr: Perm Duma network, Russia
# descr: 31, Zakamskaya str., Perm
# descr: for Perm department
90.150.176.52/30
# name: Владивостокский МЧС
# netname: POL-MCHS-NET
# descr: MChS
# descr: 31 Dalzavodskaya st., Vladivostok, Russia
# descr: 7 4232 222089
# descr: PRIMORYE NET
77.35.98.240/28
82.162.103.144/28
# name: Спецсвязь ФСО РФ
# netname: SPEZSVYAZ
# descr: SPEZSVYAZ Internal network
78.108.192.0/21
# name: Зеленоградское УИ МЧС
# netname: COMCOR-UIMChSpoMoskveZelenograd
# descr: Network for UI MChS po Moskve Zelenograd
# descr: comcor.ru
94.79.34.128/29
94.79.34.192/29
# name: Приморский ФСКН
# netname: Upravlenie_FSKN_Rossii_po_PK
# descr: Ticket 10-03557
# descr: ROSTELECOM NETS
95.167.68.216/29
95.167.72.48/30
# name: Нижегородская ФНС
# netname: NALOG-NET
# descr: The Ministry of Taxation of the Russian Federation
# descr: in Nizhny Novgorod Region
# descr: About abuse activity please
# descr: e-mail to abuse@mts-nn.ru
# descr: OJSC VolgaTelecom Autonomous System
213.177.111.0/24
82.208.81.0/24
# name: Московское УИ МЧС (Ибрагимова)
# netname: COMCOR-UpravlInformMChSpoMSKIbragimova
# descr: Network for Upravlenie informatizacii MChS po Moskve Ibragimova
# descr: comcor.ru
94.79.34.208/29
# name: Московское УИ МЧС (Реутовская)
# netname: COMCOR-UIMChSpoMoskveReutovskaya
# descr: Network for UI MChS po Moskve Reutovskaya
# descr: comcor.ru
94.79.34.200/29
# name: Московское УИ МЧС (Нелидовская)
# netname: COMCOR-UpravlenieinformatizaciiMChSpoMoskveNelidovskaya
# descr: Network for Upravlenie informatizacii MChS po Moskve Nelidovskaya
# descr: comcor.ru
94.79.34.184/29
# name: Московское УИ МЧС (Твардовского, 16)
# netname: COMCOR-UIMChSpogMoskvetvardovskogo16
# descr: Network for UI MChS po g Moskve tvardovskogo 16
# descr: comcor.ru
94.79.34.240/29
# name: Московское УИ МЧС (Факельный)
# netname: COMCOR-UpravlenieinformatizaciidlyaMChSpoMoskveFakeljnyy
# descr: Network for Upravlenie informatizacii dlya MChS po Moskve Fakeljnyy
# descr: comcor.ru
94.79.35.248/29
# name: ЦИК
# netname: RSNET
# descr: RUSSIAN STATE INTERNET NETWORK
# descr: Main Division of Informations Resources
# descr: for States organs of the Russian Federation
# descr: for Central Election Committee (CEC)
194.226.97.0/24
# name: ФСКН
# netname: RU_FSKN
# descr: Ticket 10-05505-3
# descr: ROSTELECOM NETS
95.167.59.244/30
95.167.59.248/30
92.50.198.72/30
193.164.232.128/27
# name: МИД
# netname: MFA-RU2
# descr: Ministry of Foreign Affairs of Russia(MOFA)
# descr: Moscow, Russia
# descr: COMBELNET
# descr: Combellga
# descr: Mitnaya ul 3, Entrance 2, 14th floor
# descr: 117049 Moscow
# descr: Russia
194.85.152.24/30
# name: Новгородская ФНС
# netname: UMNS-NOVGOROD
# descr: Ministry of Taxation, subsidiary of Novgorod region
# descr: RTCOMM-RU
213.59.91.48/29
# name: Ростовская ФНС
# netname: UMNS-ROSTOV
# descr: Ministry of Taxation of Rostov region
# descr: Rostov-na-Donu, Socialisticheskaya 96/98.
# descr: RTCOMM-RU
213.59.122.88/29
# name: ФОМС
# netname: FOMS
# descr: Federal Compulsory Health Insurance Fund
# descr: FOMS
91.226.250.0/24
# name: Татарстанская ФНС
# netname: UMNS-KAZAN
# descr: Ministry of Taxation of Tatarstan Republic
# descr: 420094, Kazan, 3, Bondarenko's str
# descr: RTCOMM-RU
213.59.59.128/29
# name: Пермская ФНС
# netname: UMNS-PERM
# descr: Ministry of Taxation, subsidiary of Perm region
# descr: 614600, Perm, 46, Okulova str
# descr: RTCOMM-RU
213.59.59.16/29
# name: Смоленская дума
# netname: Smolensk-Duma
# descr: JSC Rostelecom Client (city Smolensk)
# descr: ROSTELECOM NETS
# netname: SMOLTELECOM-DUMA-NET
# descr: Smoltelecom customer: Smolensk regional DUMA
# descr: RU-SMOLTELECOM-NET
94.25.90.240/29
92.241.99.224/28
# name: Росатом
# netname: ROSATOM-INET-INTERNAL-USERS-1
# descr: Rosatom outside-zone (internet users, internal, building #1)
# descr: SCC ROSATOM
88.151.200.0/21
# name: ЦТСПИ при МИД
# netname: RU-CTSPI-20050201
# descr: CTSPI Company
# descr: CTSPI Company Moscow Region Network
# descr: Moscow, Russia
80.73.16.0/20
# name: Томская ФНС
# netname: UMNS-TSK
# descr: Ministry of Taxation of Tomsk region
# descr: 55, Frunze pr., Tomsk, Russia
# descr: RTCOMM-RU
217.106.147.0/29
# name: Центр специальной связи и информации ФСБ в Перми
# netname: RT-CLNT-CPS2
# descr: Centre of Special Communication and Information of the Federal Security Service of the Russian Federation in the Perm region
# descr: 614000,12 25 Oktyabrya str, Perm
# descr: CPS Perm
195.85.234.0/23
195.85.236.0/24
195.225.232.0/22
# name: МЧС
# netname: COMCOR-FGUPMChSRossii
# descr: Network for FGUP MChS Rossii
# descr: comcor.ru
77.72.137.96/27
212.45.5.160/29
92.39.106.168/30
213.234.15.248/30
# name: ГлавНИВЦ управления делами Президента
# netname: GLAVNIVZ
# descr: FSUE "GlavNIVZ"
# descr: FSUE "GlavNIVZ"
46.29.152.0/21
# name: МВД
# netname: MOIA-NET
# descr: Ministry of Interior Affairs of Russian Federation
# descr: Network of Ministry of Interior Affairs RF
# descr: Ministry of Interior Affairs RF
194.8.70.0/23
# name: Мордовская ФНС
# netname: UMNS-MORDOVIA
# descr: Ministry of Taxation, subsidiary of Morodovia region
# descr: 3/1, Moskovskaya st.,
# descr: Saransk, 430000
# descr: RTCOMM-RU
217.107.5.8/29
# name: Центральная поликлиника ФСКН
# netname: MTU-CUST-D8D9FB95
# descr: GU "Centralnaja poliklinika" FSKN Rossii
# descr: ZAO MTU-Intel's Moscow Region Network
# descr: ZAO MTU-Intel
# descr: Moscow, Russia
62.117.121.248/29
81.195.118.48/30
212.100.159.120/29
# name: ФАПРИД
# netname: ZEN-CUST-FAPRID
# descr: Federal agency for legal protection
# descr: of molitary, special and dual use
# descr: intellectual activity results under
# descr: Ministry of justice of the Russian
# descr: federation country
# descr: ZENON N.S.P.
# descr: 1-ja Jamskogo polia 19
# descr: Moscow, Russia
213.189.199.128/28
# name: Кировская ФНС
# netname: RU-KIROV-NALOG
# descr: The Ministry of Taxation of the Russian Federation in Kirov
# descr: Russia, Kirov
# descr: Vorovsckogo 37
# descr: RTCOMM-RU
217.106.150.88/29
# name: Приволжская ФНС
# netname: RU-PRIVOL-NALOG
# descr: The Ministry of Taxation of the Russian Federation in Privoljskii Federal region
# descr: Russia, N.Novgorod
# descr: Alekseevskaya, 26
# descr: RTCOMM-RU
217.106.150.72/29
# name: Казначейство Северной Осетии-Алании
# netname: TREASURY-VLADIKAVKAZ
# descr: Department of Federal Treasury of Russian Ministry of Finance,
# descr: Republic North Ossetia-Alania, 362008, Vladikavkaz, yl. Kotzoeva, 24
# descr: RTCOMM-RU
217.106.203.32/29
217.106.93.192/26
# name: Ростовский минфин
# netname: MINFIN-RND-NET
# descr: The Financial ministry of Rostov region
# descr: RTCOMM-RU
217.106.95.112/28
# name: Липецкая дума
# netname: LIP-OBLSOVET-1-NET
# descr: Lipetsk Regional Duma
# descr: Lipetsk Regional Public Network Route N4
195.34.233.32/29
# name: Пермский МЧС
# netname: Ten_OTRYAD-MCHS
# descr: 10 Otryad MCHS Perm region network, Perm, Russia
# descr: RU-PERMONLINE block
# descr: Uralcom Ltd, Perm
83.219.23.48/29
83.219.5.248/29
83.219.25.0/29
90.150.176.188/30
90.150.176.64/30
# name: ФСК ЕЭС
# netname: FSK-ESS-OJSC-NET
# descr: FSK EES OJSC
# descr: 512 PI
195.66.72.0/24
194.8.246.0/23
# name: Алтайский ФСКН
# netname: FSKN_Rossii_RU_po_Altajskomu_kraju
# descr: Ticket 10-23105-2
# descr: ROSTELECOM NETS
95.167.162.236/30
# name: Воронежская дума
# netname: VRNOBLDUMA-NET
# descr: Oblastnaya duma
# descr: Voronezh
# descr: "Informsvyaz-Chernozemye"
# descr: 35, Revolutsii prosp.
# descr: Voronezh,394000
# descr: Russia
195.98.73.56/29
# name: Карельская ФНС
# netname: UMNS-KARELIA
# descr: Ministry of Taxation, subsidiary of Republic of Karelia
# descr: Petrozavodsk, Russia
# descr: RTCOMM-RU
217.106.115.168/29
# name: Хабаровский ФСКН
# netname: FSKN_RF__Khabarovsk
# descr: Ticket 10-21819-1
# descr: ROSTELECOM NETS
95.167.116.188/30
188.128.98.204/30
# name: Читинский ФСКН
# netname: FSKN
# descr: JSC Rostelecom Client (city Chita)
# descr: ROSTELECOM NETS
94.25.70.64/30
# name: Ханты-Мансийский ФНС
# netname: MNSHMAO
# descr: Management of the Russian Federation
# descr: Tax and Duty Ministry in Khanty- Mansiysk autonomous region
# descr: Hanty-Mansiysk, Russia
# descr: KHMOD Autonomous System
217.20.86.232/29
217.20.86.240/28
# name: Тюменская ФНС
# netname: UMNS-TUMEN
# descr: Ministry of Taxation, subsidiary of Tyumen region
# descr: 625000, Tyumen, Tovarnoe Chosse str., 15
# descr: RTCOMM-RU
213.59.59.144/29
# name: Самарская ФНС
# netname: UMNS-SAMARA
# descr: Ministry of Taxation, subsidiary of Samara region
# descr: 9, Tsiolkovskogo st.,
# descr: Samara, 443002
# descr: RTCOMM-RU
217.107.5.40/29
# name: Министерство культуры
# netname: GIVC
# descr: FSUE the Main information computer center
# descr: of the Ministry of culture of the Russian Federation
# descr: FSUE the Main information computer center of the
# descr: Ministry of culture of the Russian Federation
194.190.9.0/24
# name: Спецстрой ФСБ
# netname: MTU-CUST-D10EF4E3
# descr: FGUP Upravlenie specialnogo stroitelstva FSB RF
# descr: ZAO MTU-Intel's Moscow Region Network
# descr: ZAO MTU-Intel
# descr: Moscow, Russia
195.42.75.8/29
# name: Самарская дума
# netname: SAMARA-TTK-NET-12S0348
# descr: net GorDuma /28
# descr: P2P /28 NETS, STTK
46.20.70.160/28
# name: Магаданская дума
# netname: RU-ARBUZ-MAGGORDUMA-NET
# descr: The Magadan municipal duma
# descr: Russia, 685000, Magadan, 1 Gorkogo str.
# descr: ARBUZ LIR route
# descr: ARBUZ Co. Ltd.
# descr: 16 Pushkina str., #116-A
# descr: 685000
# descr: Magadan
# descr: Russian Federation
# descr: 74132622138
# descr: 74132628663
89.28.253.168/29
# name: Майкопская ФНС
# netname: UMNS-MAYKOP
# descr: Ministry of Taxation of Maykop region
# descr: Privokzalnaya, 331
# descr: RTCOMM-RU
213.59.122.72/29
# name: Оренбугрская ФНС
# netname: UMNS-ORENBURG
# descr: Ministry of Taxation, subsidiary of Orenburg region
# descr: 11a, 60 let Oktyabrya st.,
# descr: Orenburg, 460021
# descr: RTCOMM-RU
217.107.5.16/29
# name: Министерство образования
# netname: MON-RUNNET
# descr: The Ministry of Education and Sciences of the Russian Federation
# descr: Moscow, Russia
# descr: RUNNet
# descr: Russian Federal University Network
82.179.86.32/27
# name: Министерство финансов
# netname: MINFINPI-NET
# descr: Ministry of Finance of the Russian Federation
# descr: MINFIN
195.80.224.0/24
# name: Барнаульский ФСИН
# netname: barnaul-fsin-su
# descr: penal system
81.1.236.192/27
81.1.237.176/29
# name: ФКУ УАТ ФСИН
# netname: COMCOR-FKU-UAT-FSIN-Rossii
# descr: Network for FKU UAT FSIN Rossii
82.138.54.72/29
# name: Следственный изолятор №3, Череповец
# netname: SLED-IZOLYATOR-FSIN-LAN
# descr: CHER,Severnoe,67B
# descr: North-West Region
# descr: North-West Branch of OJSC MegaFon Network, Fixed broadband
37.28.161.48/30
# name: Роспатент
# netname: ROSPAT
# descr: Russian Patent include All Russian scientific
# descr: and research institute of state patent
# descr: examination and nd All Russian patent library
# descr: and Publish Firm "Patent"
195.208.85.192/26
# name: Пермский Роспотребнадзор
# netname: ROS-POTREB-NADZOR
# descr: Control Rospotrebnadzor on Perm region, Russia
# descr: 78, October str., Vereshchagino
212.120.184.56/29
212.120.190.240/29
212.120.191.248/29
212.120.191.120/29
83.219.6.72/29
83.219.25.112/29
90.150.189.216/29
212.120.189.224/29
90.150.189.168/29
90.150.189.224/29
90.150.189.208/29
90.150.189.160/29
90.150.189.184/29
90.150.189.248/29
90.150.189.200/29
90.150.189.144/29
90.150.189.192/29
90.150.189.128/29
90.150.189.152/29
90.150.189.136/29
90.150.189.176/29
90.150.189.232/29
# name: Каменск-Шахтинский Роспотребнадзор
# netname: ROSPOTREBNADZOR-KSHAXTINSK-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Kamensk-Shaxtinsk, Pushkina str., 79
# descr: Kamensk-Shaxtinsk, Rostovskaia oblast, 347810
87.117.21.32/29
# name: Азовский Роспотребнадзор
# netname: ROSPOTREBNADZOR-AZOV-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Azov, Izmailova str., 60
# descr: Azov, Rostovskaia oblast, 346780
87.117.21.8/29
# name: Роспотребнадзор Белая Калитва
# netname: ROSPOTREBNADZOR-BKALITVA-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Belaja Kalitva, Kommunisticheskaja str., 23a
# descr: Belaja Kalitva, Rostovskaia oblast, 347042
87.117.21.16/29
# name: Новочеркасский Роспотребнадзор
# netname: ROSPOTREBNADZOR-NOVOCHERKASSK-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Novocerkassk, Yannatova str., 3
# descr: Novocerkassk, Rostovskaia oblast, 347810
87.117.21.80/29
# name: Волгодонский Роспотребнадзор
# netname: ROSPOTREBNADZOR-VOLGODONSK-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Volgodonsk, Lenina str., 74
# descr: Volgodonsk, Rostovskaia oblast, 347360
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.0/29
# name: Роспотребнадзор Орловка
# netname: ROSPOTREBNADZOR-ORLOVKA-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Orlovka, Pionerskaya str., 63a
# descr: Orlovka, Rostovskaia oblast, 346500
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.48/29
# name: Сальский Роспотребнадзор
# netname: ROSPOTREBNADZOR-SALSK-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Salsk, Ostrovskogo str., 3
# descr: Salsk, Rostovskaia oblast, 347636
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.56/29
# name: Вешкинский Роспотребнадзор
# netname: ROSPOTREBNADZOR-VESHKI-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Veshenskaja, Budenovskia str., 13
# descr: Veshenskaja, Rostovskaia oblast, 346270
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.72/29
# name: Миллеровский Роспотребнадзор
# netname: ROSPOTREBNADZOR-MILLEROVO-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Millerovo, Telmana str., 30
# descr: Millerovo, Rostovskaia oblast, 346130
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.40/29
# name: Цимлянский Роспотребнадзор
# netname: ROSPOTREBNADZOR-CIMLYANSK-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Cimlyansk, Naberzhnaja str., 14
# descr: Cimlyansk, Rostovskaia oblast, 347042
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.24/29
# name: Шахтинский Роспотребнадзор
# netname: ROSPOTREBNADZOR-SHAXTU-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Shaxtu, Shevchenko str., 153
# descr: Shaxtu, Rostovskaia oblast, 346500
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.21.64/29
# name: Ростовский Роспотребнадзор
# netname: ROSPOTREBNADZOR-ROSTOV-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Rostov, Serjantova str., 3a
# descr: Rostov, Rostovskaia oblast, 344029
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.23.128/28
87.117.20.128/28
87.117.20.64/27
87.117.20.96/27
87.117.46.232/29
# name: Таганрогский Роспотребнадзор
# netname: ROSPOTREBNADZOR-TAGANROG-NET
# descr: Territorial Administration of Federal
# descr: Service of Control in Sphere of Defence
# descr: Protection of Consumer's Right and Welfare of Person RO
# descr: Taganrog, Bolshoi prospect str., 16a
# descr: Taganrog, Rostovskaia oblast, 347930
# descr: Routing object of
# descr: Division of JSC "UTK" "Rostovelectrosviaz" and its deport
87.117.18.144/29
93.178.104.68/30
# name: Рязанский Роспотребнадзор
# netname: Rospotrebnadzor_Ryazan
# descr: Ticket 09-20598-1, RISS 11533, CF
# descr: ROSTELECOM NETS
95.167.4.168/29
# name: Роспотребнадзор по ЖД
# netname: Rospotrebnadzor-ru-net
# descr: pravlenie Rospotrebnadzora po zheleznodorozhnomu transport
# descr: Moscow, Russia
# descr: NewCom Port route block
85.236.29.160/27