-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathssserver.log
2089 lines (2089 loc) · 209 KB
/
ssserver.log
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
2018-04-04 16:52:47 INFO util.py:85 loading libcrypto from libcrypto.so.10
2018-04-04 16:52:47 INFO shell.py:72 ShadowsocksR 3.4.0 2017-07-27
2018-04-04 16:52:47 INFO server.py:46 current process RLIMIT_NOFILE resource: soft 512000 hard 512000
2018-04-04 16:52:47 INFO asyncdns.py:324 dns server: [('108.61.10.10', 53)]
2018-04-04 16:52:47 INFO server.py:106 server start with protocol[auth_sha1_v4_compatible] password [mimass] method [aes-256-cfb] obfs [plain] obfs_param []
2018-04-04 16:52:47 INFO server.py:122 starting server at [::]:10086
2018-04-04 16:52:47 INFO server.py:142 starting server at 0.0.0.0:10086
2018-04-04 16:57:30 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 16:57:57 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:223.93.185.118:63323
2018-04-04 17:00:16 ERROR tcprelay.py:1097 unable to parse hostname udaafocw when handling connection from ::ffff:115.236.39.210:63843
2018-04-04 17:00:16 ERROR tcprelay.py:1097 unable to parse hostname kfkfofvki when handling connection from ::ffff:115.236.39.210:63842
2018-04-04 17:00:17 ERROR tcprelay.py:1097 unable to parse hostname bmafgqziq when handling connection from ::ffff:115.236.39.210:63841
2018-04-04 17:00:34 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-04 17:00:34 INFO tcprelay.py:1379 Total connections up to 50
2018-04-04 17:01:49 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-04 17:01:52 ERROR tcprelay.py:1097 unable to parse hostname ip when handling connection from ::ffff:115.236.39.210:64394
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64438
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64439
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64437
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64475
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64481
2018-04-04 17:02:04 ERROR tcprelay.py:1097 unable to parse hostname xvzcw1522832.ek.whrq.net when handling connection from ::ffff:115.236.39.210:64480
2018-04-04 17:02:05 ERROR tcprelay.py:1097 unable to parse hostname rnsgz1522832.bw.whrq.net when handling connection from ::ffff:115.236.39.210:64454
2018-04-04 17:02:05 ERROR tcprelay.py:1097 unable to parse hostname rnsgz1522832.bw.whrq.net when handling connection from ::ffff:115.236.39.210:64487
2018-04-04 17:11:11 ERROR tcprelay.py:1097 unable to parse hostname eswmw1522833.dq.whrq.net when handling connection from ::ffff:115.236.39.210:50292
2018-04-04 17:16:40 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-04-04 17:16:40 ERROR tcprelay.py:1032 local error, exception from ::ffff:223.93.185.118:63637
2018-04-04 17:17:25 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-04-04 17:17:25 ERROR tcprelay.py:1032 local error, exception from ::ffff:223.93.185.118:63660
2018-04-04 17:17:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-04 17:17:25 INFO tcprelay.py:1382 Total connections down to 0
2018-04-04 17:45:30 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 17:46:00 ERROR tcprelay.py:1097 unable to parse hostname gghokjkvn when handling connection from ::ffff:223.93.185.118:55977
2018-04-04 17:46:00 ERROR tcprelay.py:1097 unable to parse hostname tljynxjqxq when handling connection from ::ffff:223.93.185.118:55976
2018-04-04 17:46:00 ERROR tcprelay.py:1097 unable to parse hostname nqfdwudob when handling connection from ::ffff:223.93.185.118:55978
2018-04-04 17:51:13 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-04 17:51:15 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 17:51:18 ERROR tcprelay.py:1097 unable to parse hostname ins when handling connection from ::ffff:223.93.185.118:57178
2018-04-04 18:01:44 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-04 18:01:49 ERROR tcprelay.py:1097 unable to parse hostname apache when handling connection from ::ffff:223.93.185.118:59253
2018-04-04 18:03:49 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 18:03:51 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-04 20:21:00 ERROR tcprelay.py:1097 unable to parse hostname aeffjcbsfja when handling connection from ::ffff:58.100.45.42:23600
2018-04-04 20:21:00 ERROR tcprelay.py:1097 unable to parse hostname ahwhfhnbnr when handling connection from ::ffff:58.100.45.42:23601
2018-04-04 20:21:01 ERROR tcprelay.py:1097 unable to parse hostname vovvprdbtvz when handling connection from ::ffff:58.100.45.42:23599
2018-04-04 20:21:34 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 20:25:43 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-04 20:29:08 ERROR tcprelay.py:1097 unable to parse hostname bluebook when handling connection from ::ffff:58.100.45.42:23402
2018-04-04 20:30:40 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-04 20:30:40 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:23350
2018-04-04 20:30:41 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:23352
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:23358
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:23357
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:23359
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24065
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24067
2018-04-04 20:30:42 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24068
2018-04-04 20:30:44 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24074
2018-04-04 20:30:44 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24072
2018-04-04 20:30:44 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24078
2018-04-04 20:30:44 ERROR tcprelay.py:1097 unable to parse hostname geo-um.btrll.com when handling connection from ::ffff:58.100.45.42:24079
2018-04-04 21:04:24 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-05 00:03:52 ERROR tcprelay.py:1097 unable to parse hostname ylolylwkon when handling connection from ::ffff:58.100.45.42:24479
2018-04-05 00:03:52 ERROR tcprelay.py:1097 unable to parse hostname cumyvid when handling connection from ::ffff:58.100.45.42:24480
2018-04-05 00:03:52 ERROR tcprelay.py:1097 unable to parse hostname bjkcyuhvqmmkhie when handling connection from ::ffff:58.100.45.42:24481
2018-04-05 00:04:14 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-05 00:08:38 ERROR tcprelay.py:1097 unable to parse hostname av when handling connection from ::ffff:58.100.45.42:22952
2018-04-05 00:16:26 ERROR shell.py:50 [Errno 104] Connection reset by peer
2018-04-05 00:16:26 ERROR tcprelay.py:396 exception from ::ffff:58.100.45.42:24816
2018-04-05 00:20:53 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-05 08:20:06 ERROR tcprelay.py:1097 unable to parse hostname uvxsbmnzderwvx when handling connection from ::ffff:58.100.45.42:22948
2018-04-05 08:20:06 ERROR tcprelay.py:1097 unable to parse hostname snfhius when handling connection from ::ffff:58.100.45.42:22949
2018-04-05 08:20:06 ERROR tcprelay.py:1097 unable to parse hostname snqddjycckdl when handling connection from ::ffff:58.100.45.42:22950
2018-04-05 21:30:19 ERROR tcprelay.py:1097 unable to parse hostname ndonfgf when handling connection from ::ffff:58.100.45.42:23072
2018-04-05 21:30:19 ERROR tcprelay.py:1097 unable to parse hostname aikykwbmzo when handling connection from ::ffff:58.100.45.42:23070
2018-04-05 21:30:19 ERROR tcprelay.py:1097 unable to parse hostname pohxhszp when handling connection from ::ffff:58.100.45.42:23071
2018-04-05 21:30:26 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-05 21:38:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-06 22:02:15 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-06 22:02:36 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-06 22:02:36 INFO tcprelay.py:1379 Total connections up to 50
2018-04-06 22:02:56 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-06 22:04:33 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-06 22:04:33 INFO tcprelay.py:1382 Total connections down to 0
2018-04-06 22:28:19 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-06 22:33:09 ERROR tcprelay.py:1097 unable to parse hostname t.tellapart.com when handling connection from ::ffff:58.100.45.42:23008
2018-04-06 22:33:09 ERROR tcprelay.py:1097 unable to parse hostname t.tellapart.com when handling connection from ::ffff:58.100.45.42:23010
2018-04-06 22:45:09 ERROR tcprelay.py:1097 unable to parse hostname t.tellapart.com when handling connection from ::ffff:58.100.45.42:24348
2018-04-06 22:45:09 ERROR tcprelay.py:1097 unable to parse hostname t.tellapart.com when handling connection from ::ffff:58.100.45.42:24351
2018-04-06 22:47:22 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-08 20:32:46 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-08 20:33:10 ERROR tcprelay.py:1097 unable to parse hostname oelyerbe when handling connection from ::ffff:182.106.212.145:8138
2018-04-08 20:33:10 ERROR tcprelay.py:1097 unable to parse hostname usrvtnjzsukrq when handling connection from ::ffff:182.106.212.145:8139
2018-04-08 20:33:11 ERROR tcprelay.py:1097 unable to parse hostname tzdsmbejngjqy when handling connection from ::ffff:182.106.212.145:8140
2018-04-08 21:47:05 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-04-08 21:47:05 ERROR tcprelay.py:1032 local error, exception from ::ffff:182.106.212.145:10265
2018-04-08 21:47:54 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-04-08 21:47:54 ERROR tcprelay.py:1032 local error, exception from ::ffff:182.106.212.145:10266
2018-04-08 21:47:54 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-08 22:07:51 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-08 22:13:14 ERROR tcprelay.py:1097 unable to parse hostname ogjtlznpjfnmc when handling connection from ::ffff:182.106.212.145:11757
2018-04-08 22:13:16 ERROR tcprelay.py:1097 unable to parse hostname frioyhp when handling connection from ::ffff:182.106.212.145:11759
2018-04-08 22:13:16 ERROR tcprelay.py:1097 unable to parse hostname citbgcfliqo when handling connection from ::ffff:182.106.212.145:11758
2018-04-08 22:31:02 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-08 22:32:04 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-08 22:37:48 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-08 22:50:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-08 22:50:48 ERROR tcprelay.py:1097 unable to parse hostname python when handling connection from ::ffff:182.106.212.145:13361
2018-04-08 22:51:11 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-09 08:34:00 ERROR tcprelay.py:1097 unable to parse hostname efyqkreugfpxo when handling connection from ::ffff:182.106.212.145:13953
2018-04-09 08:34:00 ERROR tcprelay.py:1097 unable to parse hostname oninzlvt when handling connection from ::ffff:182.106.212.145:13952
2018-04-09 08:34:01 ERROR tcprelay.py:1097 unable to parse hostname bidvgyztn when handling connection from ::ffff:182.106.212.145:13954
2018-04-09 08:34:05 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-09 08:40:54 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-09 09:13:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-09 09:36:17 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-09 09:45:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-09 09:46:46 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-09 12:09:03 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-09 12:09:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-09 12:42:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-09 12:45:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-10 11:31:59 ERROR tcprelay.py:1097 unable to parse hostname ss when handling connection from ::ffff:182.106.212.145:17742
2018-04-10 11:32:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-10 11:33:20 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-10 11:40:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-10 11:47:46 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-10 20:38:27 ERROR tcprelay.py:1097 unable to parse hostname rsqwhcmvixoxdy when handling connection from ::ffff:182.106.212.145:20080
2018-04-10 20:38:27 ERROR tcprelay.py:1097 unable to parse hostname ssootquiok when handling connection from ::ffff:182.106.212.145:20079
2018-04-10 20:38:27 ERROR tcprelay.py:1097 unable to parse hostname ovifnxlcpn when handling connection from ::ffff:182.106.212.145:20078
2018-04-11 09:51:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 09:52:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:02:14 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:04:54 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:08:20 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:13:58 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:14:25 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:16:27 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:18:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:31:33 ERROR tcprelay.py:1097 unable to parse hostname jvzjfyez when handling connection from ::ffff:182.106.212.145:26769
2018-04-11 10:31:33 ERROR tcprelay.py:1097 unable to parse hostname ajuxwfkqdqtg when handling connection from ::ffff:182.106.212.145:26771
2018-04-11 10:31:33 ERROR tcprelay.py:1097 unable to parse hostname ewejjpttqal when handling connection from ::ffff:182.106.212.145:26770
2018-04-11 10:32:00 ERROR tcprelay.py:1039 [Errno 32] Broken pipe
2018-04-11 10:32:00 ERROR tcprelay.py:1041 remote error, when connect to p.rfihub.com:443
2018-04-11 10:36:08 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:37:25 ERROR tcprelay.py:1097 unable to parse hostname hvpquizlikjizue when handling connection from ::ffff:182.106.212.145:27501
2018-04-11 10:37:25 ERROR tcprelay.py:1097 unable to parse hostname nvkvxwjaixohwwk when handling connection from ::ffff:182.106.212.145:27502
2018-04-11 10:37:25 ERROR tcprelay.py:1097 unable to parse hostname wjwksvy when handling connection from ::ffff:182.106.212.145:27500
2018-04-11 10:37:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:40:23 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 10:57:12 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 10:58:54 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 11:06:57 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 11:10:20 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 11:24:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 11:30:00 ERROR shell.py:50 [Errno 32] Broken pipe
2018-04-11 11:30:00 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:29696
2018-04-11 11:31:14 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-11 20:58:21 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-11 21:02:21 ERROR tcprelay.py:1097 unable to parse hostname movie when handling connection from ::ffff:182.106.212.145:31066
2018-04-11 21:02:40 ERROR tcprelay.py:1097 unable to parse hostname xn--94qq85au3qv4v when handling connection from ::ffff:182.106.212.145:31075
2018-04-11 21:05:06 ERROR tcprelay.py:1097 unable to parse hostname xn--vcss2c3ik70gp8ceoi1ui when handling connection from ::ffff:182.106.212.145:31182
2018-04-11 21:13:41 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 12:09:52 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 12:30:23 ERROR tcprelay.py:1097 unable to parse hostname p.l.youku.com when handling connection from ::ffff:182.106.212.145:34136
2018-04-12 12:30:44 ERROR shell.py:50 [Errno 104] Connection reset by peer
2018-04-12 12:30:44 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:34268
2018-04-12 12:56:51 ERROR tcprelay.py:1097 unable to parse hostname dimg1.shenchuang.com when handling connection from ::ffff:182.106.212.145:35629
2018-04-12 12:57:09 ERROR tcprelay.py:1097 unable to parse hostname xn--r-hf0b815f7m8a when handling connection from ::ffff:182.106.212.145:35678
2018-04-12 13:52:23 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-12 13:52:23 INFO tcprelay.py:1379 Total connections up to 50
2018-04-12 13:52:28 ERROR tcprelay.py:1097 unable to parse hostname m when handling connection from ::ffff:182.106.212.145:38611
2018-04-12 13:53:02 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-12 13:57:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 13:57:25 INFO tcprelay.py:1382 Total connections down to 0
2018-04-12 13:59:17 ERROR tcprelay.py:1097 unable to parse hostname uczppkiifabpuei when handling connection from ::ffff:182.106.212.145:39261
2018-04-12 13:59:17 ERROR tcprelay.py:1097 unable to parse hostname fcjdbbw when handling connection from ::ffff:182.106.212.145:39260
2018-04-12 13:59:17 ERROR tcprelay.py:1097 unable to parse hostname ogcjwehgrgxe when handling connection from ::ffff:182.106.212.145:39262
2018-04-12 13:59:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 14:04:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 14:09:57 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 14:10:51 ERROR tcprelay.py:1097 unable to parse hostname k when handling connection from ::ffff:182.106.212.145:40067
2018-04-12 14:10:56 ERROR tcprelay.py:1097 unable to parse hostname uacwjpwmiha when handling connection from ::ffff:182.106.212.145:40078
2018-04-12 14:10:58 ERROR tcprelay.py:1097 unable to parse hostname vezvvrfgpoallq when handling connection from ::ffff:182.106.212.145:40077
2018-04-12 14:10:59 ERROR tcprelay.py:1097 unable to parse hostname qdmkbuvvpzj when handling connection from ::ffff:182.106.212.145:40076
2018-04-12 14:15:40 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 14:20:34 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 14:21:48 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-12 14:21:48 INFO tcprelay.py:1379 Total connections up to 50
2018-04-12 14:21:53 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-04-12 14:21:58 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-04-12 14:21:58 INFO tcprelay.py:1379 Total connections up to 100
2018-04-12 14:22:01 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-04-12 14:22:01 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-04-12 14:22:01 INFO tcprelay.py:1382 Total connections down to 50
2018-04-12 14:22:30 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-12 14:24:42 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 14:24:42 INFO tcprelay.py:1382 Total connections down to 0
2018-04-12 14:27:03 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 14:27:08 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-12 14:27:08 INFO tcprelay.py:1379 Total connections up to 50
2018-04-12 14:29:05 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-12 14:42:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 14:42:38 INFO tcprelay.py:1382 Total connections down to 0
2018-04-12 14:48:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 15:03:30 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 17:45:41 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 17:47:39 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 20:36:23 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 20:36:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 21:29:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 21:39:02 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 21:44:26 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 21:44:38 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-12 21:44:38 INFO tcprelay.py:1379 Total connections up to 50
2018-04-12 21:46:44 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-12 21:49:02 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 21:49:02 INFO tcprelay.py:1382 Total connections down to 0
2018-04-12 22:23:06 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-12 22:23:06 ERROR tcprelay.py:1041 remote error, when connect to 101.226.68.138:53
2018-04-12 22:23:13 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-12 22:23:13 ERROR tcprelay.py:1041 remote error, when connect to 101.226.68.138:53
2018-04-12 22:27:14 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 22:27:30 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-12 22:27:30 INFO tcprelay.py:1379 Total connections up to 50
2018-04-12 22:29:03 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-12 22:29:03 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-12 22:29:03 INFO tcprelay.py:1382 Total connections down to 0
2018-04-12 22:45:38 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-12 22:51:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-13 12:13:41 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-13 12:13:55 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-13 12:13:55 INFO tcprelay.py:1379 Total connections up to 50
2018-04-13 12:16:08 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-13 12:42:28 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-13 12:42:28 INFO tcprelay.py:1382 Total connections down to 0
2018-04-13 18:20:38 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-13 18:44:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-13 18:49:02 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-13 18:49:16 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-13 18:49:16 INFO tcprelay.py:1379 Total connections up to 50
2018-04-13 18:49:43 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-13 18:49:43 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-13 18:49:50 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-13 18:49:50 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-13 18:50:15 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-13 18:50:15 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-13 18:51:12 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-13 18:51:12 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-13 18:51:58 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-13 18:58:04 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-13 18:59:40 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-13 19:01:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-13 19:01:47 INFO tcprelay.py:1382 Total connections down to 0
2018-04-13 19:07:12 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-13 19:09:00 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-13 23:19:55 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-13 23:37:29 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-13 23:37:29 INFO tcprelay.py:1379 Total connections up to 50
2018-04-13 23:39:19 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-13 23:40:40 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-13 23:42:01 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-04-13 23:42:48 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-04-13 23:43:49 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-13 23:47:28 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-13 23:47:28 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-14 00:02:51 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-14 00:02:51 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-14 00:08:21 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-14 00:08:31 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-04-14 00:09:02 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-04-14 00:09:02 INFO tcprelay.py:1379 Total connections up to 100
2018-04-14 00:10:12 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-04-14 00:10:24 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-04-14 00:10:24 INFO tcprelay.py:1382 Total connections down to 50
2018-04-14 00:10:46 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-14 00:20:00 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-14 00:21:49 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-14 00:24:00 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-14 00:24:00 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-04-14 00:24:03 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-14 00:27:03 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-14 00:29:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-14 00:29:38 INFO tcprelay.py:1382 Total connections down to 0
2018-04-14 17:47:04 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-14 17:52:43 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-15 09:14:18 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-15 09:24:49 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-15 21:21:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-15 21:28:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-17 14:49:24 ERROR tcprelay.py:1097 unable to parse hostname tsphkhlab when handling connection from ::ffff:182.106.212.145:64726
2018-04-17 14:49:25 ERROR tcprelay.py:1097 unable to parse hostname hxoatswmlus when handling connection from ::ffff:182.106.212.145:64725
2018-04-17 14:49:25 ERROR tcprelay.py:1097 unable to parse hostname xndxuuetbrwefhf when handling connection from ::ffff:182.106.212.145:64727
2018-04-17 14:50:00 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-17 15:21:42 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-17 15:21:53 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-17 15:33:52 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-17 15:34:49 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-17 16:02:26 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-17 17:02:04 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-17 17:11:53 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 10:26:18 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 10:32:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 11:07:18 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 11:13:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 11:31:08 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 11:33:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 12:13:32 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 12:14:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 12:15:40 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 12:32:42 ERROR shell.py:50 [Errno 104] Connection reset by peer
2018-04-18 12:32:42 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:13980
2018-04-18 12:36:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 13:16:40 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 13:25:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-18 14:58:32 ERROR tcprelay.py:1097 unable to parse hostname glictkxrzh when handling connection from ::ffff:182.106.212.145:15497
2018-04-18 14:58:33 ERROR tcprelay.py:1097 unable to parse hostname aycqjrjsuxuqc when handling connection from ::ffff:182.106.212.145:15498
2018-04-18 14:59:58 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-18 15:04:46 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-19 20:24:22 WARNING common.py:238 unsupported addrtype 212, maybe wrong password or encryption method
2018-04-19 20:24:22 WARNING tcprelay.py:521 Protocol ERROR, TCP ogn data 0300002f2ae00000000000436f6f6b69653a206d737473686173683d41646d696e697374720d0a0100080003000000 from ::ffff:146.0.75.216:261 via port 10086 by UID 10086
2018-04-19 20:24:22 ERROR tcprelay.py:1097 can not parse header when handling connection from ::ffff:146.0.75.216:261
2018-04-25 14:22:24 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-25 14:22:58 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-25 14:22:58 INFO tcprelay.py:1379 Total connections up to 50
2018-04-25 14:25:36 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-25 14:30:17 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-25 14:30:17 INFO tcprelay.py:1382 Total connections down to 0
2018-04-25 15:06:42 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-25 15:09:32 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-25 19:44:56 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-25 20:40:12 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-25 20:54:37 ERROR tcprelay.py:1097 unable to parse hostname saalwbihahp when handling connection from ::ffff:182.106.212.145:29700
2018-04-25 20:54:41 ERROR tcprelay.py:1097 unable to parse hostname hwuikmyfhwsfdq when handling connection from ::ffff:182.106.212.145:29696
2018-04-25 21:09:23 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-25 21:10:20 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-25 21:10:20 INFO tcprelay.py:1379 Total connections up to 50
2018-04-25 21:11:34 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-25 21:11:34 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-25 21:11:34 INFO tcprelay.py:1382 Total connections down to 0
2018-04-26 11:27:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-26 11:30:14 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-28 16:25:51 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-28 16:31:26 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-28 16:32:45 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-28 16:35:04 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-28 16:50:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-28 16:50:45 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-28 16:50:45 INFO tcprelay.py:1379 Total connections up to 50
2018-04-28 16:51:16 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-04-28 16:52:38 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:38 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:38 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:38 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:39 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:39 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:39 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:39 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:39 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:39 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:40 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:40 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:42 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:52:42 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:52:49 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-04-28 16:53:23 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-28 16:54:15 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-04-28 16:56:19 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:19 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:19 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:19 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:19 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:19 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:20 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:20 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:20 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:20 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:20 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:20 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:21 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:21 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:21 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:21 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:22 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:22 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:22 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-04-28 16:56:22 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:22 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:23 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:23 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:23 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:23 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:24 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:24 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:24 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:24 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:24 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:24 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:25 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:25 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:25 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:25 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:26 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:26 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:26 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:27 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-04-28 16:56:27 ERROR tcprelay.py:1041 remote error, when connect to sdk.open.phone.igexin.com:80
2018-04-28 16:56:48 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-28 16:56:48 INFO tcprelay.py:1382 Total connections down to 0
2018-04-28 19:30:46 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-28 19:44:12 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 13:31:19 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 13:35:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 14:12:46 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 14:16:09 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 14:32:09 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 14:42:42 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 15:06:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 15:13:12 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 17:01:58 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 17:06:07 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 17:08:06 ERROR tcprelay.py:1097 unable to parse hostname liweiweidemacbook-pro.local when handling connection from ::ffff:182.106.212.145:46070
2018-04-30 17:10:50 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 17:13:12 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 17:20:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 17:28:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 17:31:01 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 17:35:30 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-04-30 17:38:01 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-04-30 17:38:08 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 11:03:06 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 11:06:55 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 11:22:07 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 11:24:41 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 12:44:51 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 12:46:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 12:48:45 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 12:50:50 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 13:05:26 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 13:24:41 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 14:48:54 ERROR tcprelay.py:1097 unable to parse hostname mdovihsaxiqp when handling connection from ::ffff:182.106.212.145:53411
2018-05-01 14:48:57 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 14:48:59 ERROR tcprelay.py:1097 unable to parse hostname usntbklvlgsxy when handling connection from ::ffff:182.106.212.145:53410
2018-05-01 14:49:06 ERROR tcprelay.py:1097 unable to parse hostname gih when handling connection from ::ffff:182.106.212.145:53407
2018-05-01 14:52:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 14:54:10 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 15:00:41 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 16:20:06 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 16:25:22 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 16:30:56 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 16:31:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 18:59:58 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 19:03:45 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-01 19:27:03 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-01 19:30:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 14:05:11 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-05-02 14:05:11 ERROR tcprelay.py:1032 local error, exception from ::ffff:182.106.212.145:57279
2018-05-02 14:07:59 ERROR tcprelay.py:1031 [Errno 110] Connection timed out
2018-05-02 14:07:59 ERROR tcprelay.py:1032 local error, exception from ::ffff:182.106.212.145:57272
2018-05-02 15:59:45 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:01:29 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:02:10 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:06:13 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:10:20 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:22:33 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:23:12 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:25:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:28:39 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:39:43 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:45:08 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:49:53 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 16:55:50 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 16:55:52 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-02 18:35:08 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-02 18:35:08 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61026
2018-05-02 18:35:08 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61040
2018-05-02 18:36:05 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61679
2018-05-02 18:36:06 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61682
2018-05-02 18:36:53 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61782
2018-05-02 18:36:53 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:61788
2018-05-02 18:39:23 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:63154
2018-05-02 18:39:23 ERROR tcprelay.py:1097 unable to parse hostname si.dell.com when handling connection from ::ffff:182.106.212.145:63159
2018-05-02 18:42:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 12:56:56 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 13:09:03 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 13:09:44 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 13:12:24 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 13:15:54 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 14:15:51 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 14:28:32 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 14:31:07 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 14:35:08 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 14:39:17 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 15:04:04 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 15:08:50 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 15:13:42 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 15:14:55 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 17:15:27 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 17:16:54 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 17:32:20 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 17:32:22 ERROR tcprelay.py:1097 unable to parse hostname dhrogxezikuog when handling connection from ::ffff:182.106.212.145:12575
2018-05-03 17:32:22 ERROR tcprelay.py:1097 unable to parse hostname ttyejbix when handling connection from ::ffff:182.106.212.145:12574
2018-05-03 17:32:23 ERROR tcprelay.py:1097 unable to parse hostname ccwxghjfcb when handling connection from ::ffff:182.106.212.145:12573
2018-05-03 18:11:02 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 18:50:24 ERROR tcprelay.py:1097 unable to parse hostname jdewbdc when handling connection from ::ffff:182.106.212.145:15595
2018-05-03 18:50:24 ERROR tcprelay.py:1097 unable to parse hostname zbrxiuabyt when handling connection from ::ffff:182.106.212.145:15594
2018-05-03 18:50:24 ERROR tcprelay.py:1097 unable to parse hostname ckuyaxtcyhgwxe when handling connection from ::ffff:182.106.212.145:15596
2018-05-03 18:50:38 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 18:55:30 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 20:36:52 ERROR tcprelay.py:1097 unable to parse hostname validate.py when handling connection from ::ffff:182.106.212.145:17088
2018-05-03 20:36:59 ERROR tcprelay.py:1097 unable to parse hostname log.log when handling connection from ::ffff:182.106.212.145:17089
2018-05-03 20:40:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 20:42:38 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 20:43:15 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 20:43:32 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-03 20:43:32 INFO tcprelay.py:1379 Total connections up to 50
2018-05-03 20:45:29 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-03 20:45:33 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 20:45:33 INFO tcprelay.py:1382 Total connections down to 0
2018-05-03 20:48:33 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 20:54:08 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 20:55:11 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 21:02:50 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 21:04:19 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 21:05:32 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 21:14:35 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 21:24:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 21:30:54 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 21:46:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 22:29:10 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 22:33:15 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 22:34:53 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-03 22:41:25 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:41:25 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-03 22:41:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:41:26 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.237:443
2018-05-03 22:41:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:41:26 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-03 22:41:28 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:41:28 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-03 22:41:47 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-03 22:41:47 INFO tcprelay.py:1379 Total connections up to 50
2018-05-03 22:41:50 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:41:50 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.237:443
2018-05-03 22:42:31 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:42:31 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.237:443
2018-05-03 22:43:52 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:43:52 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.237:443
2018-05-03 22:43:57 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-03 22:46:33 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-03 22:46:33 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.237:443
2018-05-03 22:58:02 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-03 22:58:05 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-03 22:58:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-03 22:58:05 INFO tcprelay.py:1382 Total connections down to 0
2018-05-04 11:24:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 11:24:18 ERROR tcprelay.py:1097 unable to parse hostname bvwwcrfybcq when handling connection from ::ffff:182.106.212.145:35727
2018-05-04 11:24:18 ERROR tcprelay.py:1097 unable to parse hostname zqjcknifzk when handling connection from ::ffff:182.106.212.145:35728
2018-05-04 11:24:18 ERROR tcprelay.py:1097 unable to parse hostname ekodaktvojivqi when handling connection from ::ffff:182.106.212.145:35729
2018-05-04 11:33:42 ERROR tcprelay.py:1097 unable to parse hostname gt1.baidu.com when handling connection from ::ffff:182.106.212.145:37064
2018-05-04 11:33:42 ERROR tcprelay.py:1097 unable to parse hostname gt1.baidu.com when handling connection from ::ffff:182.106.212.145:37066
2018-05-04 11:35:31 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 12:54:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 12:56:51 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 13:11:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 13:13:40 ERROR tcprelay.py:1097 unable to parse hostname www.www.luoli-luoli.com when handling connection from ::ffff:182.106.212.145:40191
2018-05-04 13:15:03 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 13:20:28 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 13:26:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 13:28:18 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 14:17:19 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:46852
2018-05-04 14:17:21 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:46865
2018-05-04 14:17:27 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-04 14:17:27 INFO tcprelay.py:1379 Total connections up to 50
2018-05-04 14:19:32 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-04 14:32:12 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 14:32:12 INFO tcprelay.py:1382 Total connections down to 0
2018-05-04 15:21:04 ERROR tcprelay.py:1097 unable to parse hostname gbcqvpo when handling connection from ::ffff:182.106.212.145:48203
2018-05-04 15:21:04 ERROR tcprelay.py:1097 unable to parse hostname vbwepcpwxctkx when handling connection from ::ffff:182.106.212.145:48202
2018-05-04 15:21:04 ERROR tcprelay.py:1097 unable to parse hostname ieilabm when handling connection from ::ffff:182.106.212.145:48201
2018-05-04 15:40:54 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 16:07:14 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-04 16:07:14 INFO tcprelay.py:1379 Total connections up to 50
2018-05-04 16:12:47 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-04 16:13:05 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-04 16:15:31 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-04 16:16:08 ERROR tcprelay.py:1097 unable to parse hostname nimvzyxe when handling connection from ::ffff:182.106.212.145:52706
2018-05-04 16:16:08 ERROR tcprelay.py:1097 unable to parse hostname ndpcwqtqcsknea when handling connection from ::ffff:182.106.212.145:52705
2018-05-04 16:16:09 ERROR tcprelay.py:1097 unable to parse hostname iqalmxlp when handling connection from ::ffff:182.106.212.145:52704
2018-05-04 16:16:28 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 16:16:28 INFO tcprelay.py:1382 Total connections down to 0
2018-05-04 16:20:12 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 16:23:55 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 23:22:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 23:22:38 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-04 23:22:38 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-04 23:22:39 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-04 23:22:39 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-04 23:22:40 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 23:23:54 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 23:27:19 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 23:27:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-04 23:30:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-04 23:38:00 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 01:02:05 ERROR shell.py:50 [Errno 32] Broken pipe
2018-05-05 01:02:05 ERROR tcprelay.py:396 exception from ::ffff:223.104.10.172:22547
2018-05-05 01:06:21 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:21 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:22 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:22 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:26 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:26 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:27 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:27 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:31 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:31 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:32 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:32 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:36 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:36 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:36 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:36 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:40 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-05 01:06:40 INFO tcprelay.py:1379 Total connections up to 50
2018-05-05 01:06:41 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:41 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:44 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:44 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:46 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:46 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:49 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:49 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:51 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:51 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:52 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-05 01:06:54 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:54 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:06:58 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-05-05 01:06:58 INFO tcprelay.py:1379 Total connections up to 100
2018-05-05 01:06:59 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 01:06:59 ERROR tcprelay.py:1041 remote error, when connect to 180.163.194.139:53
2018-05-05 01:08:03 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-05-05 01:08:03 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-05 01:08:03 INFO tcprelay.py:1382 Total connections down to 50
2018-05-05 01:08:03 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-05 01:08:03 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 01:08:03 INFO tcprelay.py:1382 Total connections down to 0
2018-05-05 10:36:52 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 10:37:31 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to www.bawagon.com:80 via port 10086 by UID 10086
2018-05-05 10:37:31 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:57149
2018-05-05 10:37:49 ERROR tcprelay.py:1097 unable to parse hostname cdn.blog.liujason.com when handling connection from ::ffff:182.106.212.145:57180
2018-05-05 10:42:54 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:54 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:54 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:54 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:54 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:54 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:54 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:54 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:55 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:55 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:56 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:56 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:56 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:56 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:42:56 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-05 10:42:56 ERROR tcprelay.py:1041 remote error, when connect to www.loyalsoldier.me:443
2018-05-05 10:59:41 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 12:47:54 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 12:49:48 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 13:21:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 13:25:39 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 13:41:55 ERROR tcprelay.py:1097 unable to parse hostname uxhzttpkzfgchz when handling connection from ::ffff:182.106.212.145:61790
2018-05-05 13:41:55 ERROR tcprelay.py:1097 unable to parse hostname rjzvtqqiqg when handling connection from ::ffff:182.106.212.145:61789
2018-05-05 13:41:56 ERROR tcprelay.py:1097 unable to parse hostname lhxjamris when handling connection from ::ffff:182.106.212.145:61788
2018-05-05 13:42:15 ERROR tcprelay.py:1097 unable to parse hostname error when handling connection from ::ffff:182.106.212.145:61814
2018-05-05 13:42:25 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 13:44:33 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 17:04:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 17:21:35 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 18:12:14 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 18:16:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-05 19:19:02 ERROR tcprelay.py:1097 unable to parse hostname izhcleygvkjq when handling connection from ::ffff:182.106.212.145:63845
2018-05-05 19:19:02 ERROR tcprelay.py:1097 unable to parse hostname oigpbslcngies when handling connection from ::ffff:182.106.212.145:63847
2018-05-05 19:19:02 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-05 19:19:03 ERROR tcprelay.py:1097 unable to parse hostname vigaulr when handling connection from ::ffff:182.106.212.145:63846
2018-05-05 19:19:13 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 13:19:16 ERROR tcprelay.py:1097 unable to parse hostname ytoerklznlydiac when handling connection from ::ffff:182.106.212.145:65407
2018-05-06 13:19:17 ERROR tcprelay.py:1097 unable to parse hostname mxaxpxlomaoahu when handling connection from ::ffff:182.106.212.145:65408
2018-05-06 13:19:17 ERROR tcprelay.py:1097 unable to parse hostname vmvqnztzno when handling connection from ::ffff:182.106.212.145:65409
2018-05-06 13:22:41 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 13:22:57 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-06 13:22:57 INFO tcprelay.py:1379 Total connections up to 50
2018-05-06 13:23:21 ERROR tcprelay.py:1097 unable to parse hostname jfcasxxudj when handling connection from ::ffff:182.106.212.145:65419
2018-05-06 13:23:21 ERROR tcprelay.py:1097 unable to parse hostname lulajsjaeqmf when handling connection from ::ffff:182.106.212.145:65420
2018-05-06 13:23:21 ERROR tcprelay.py:1097 unable to parse hostname wcoclpmoqn when handling connection from ::ffff:182.106.212.145:65421
2018-05-06 13:23:35 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-06 13:25:41 ERROR shell.py:50 [Errno 104] Connection reset by peer
2018-05-06 13:25:41 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:65470
2018-05-06 17:03:22 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 17:03:22 INFO tcprelay.py:1382 Total connections down to 0
2018-05-06 17:17:28 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 17:37:11 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 17:38:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 17:47:21 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 18:05:29 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 18:07:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 18:44:00 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 18:49:01 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 20:59:45 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 21:00:06 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-06 21:00:06 INFO tcprelay.py:1379 Total connections up to 50
2018-05-06 21:01:15 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-06 21:02:30 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-06 21:02:30 ERROR tcprelay.py:1041 remote error, when connect to 120.25.118.65:53
2018-05-06 21:02:41 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-06 21:03:49 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-06 21:07:21 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-06 21:07:21 ERROR tcprelay.py:1041 remote error, when connect to 203.107.0.213:53
2018-05-06 21:09:03 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 21:09:03 INFO tcprelay.py:1382 Total connections down to 0
2018-05-06 21:10:34 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 21:11:41 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-06 21:11:41 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-06 21:11:44 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-06 21:11:44 INFO tcprelay.py:1379 Total connections up to 50
2018-05-06 21:11:44 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-06 21:11:44 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-06 21:11:55 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-06 21:11:55 ERROR tcprelay.py:1041 remote error, when connect to 122.14.206.125:53
2018-05-06 21:12:15 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-06 21:14:12 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-06 21:14:56 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-06 21:19:02 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 21:19:02 INFO tcprelay.py:1382 Total connections down to 0
2018-05-06 21:31:15 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 21:35:53 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-06 21:35:53 INFO tcprelay.py:1379 Total connections up to 50
2018-05-06 21:38:19 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-06 21:39:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 21:39:56 INFO tcprelay.py:1382 Total connections down to 0
2018-05-06 23:21:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-06 23:22:09 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-06 23:22:09 INFO tcprelay.py:1379 Total connections up to 50
2018-05-06 23:22:29 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-06 23:23:16 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-05-06 23:23:16 INFO tcprelay.py:1379 Total connections up to 100
2018-05-06 23:23:47 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-05-06 23:24:24 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-06 23:24:24 INFO tcprelay.py:1382 Total connections down to 50
2018-05-06 23:24:50 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-06 23:37:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-06 23:37:47 INFO tcprelay.py:1382 Total connections down to 0
2018-05-07 09:30:43 ERROR tcprelay.py:1097 unable to parse hostname njhkritjfxb when handling connection from ::ffff:182.106.212.145:19296
2018-05-07 09:30:43 ERROR tcprelay.py:1097 unable to parse hostname hmdjnvfv when handling connection from ::ffff:182.106.212.145:19294
2018-05-07 09:30:44 ERROR tcprelay.py:1097 unable to parse hostname vwrcforezh when handling connection from ::ffff:182.106.212.145:19295
2018-05-07 09:31:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-07 10:49:37 ERROR tcprelay.py:1097 unable to parse hostname tf.layers.dense when handling connection from ::ffff:182.106.212.145:20671
2018-05-07 10:51:40 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-07 10:53:13 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20765
2018-05-07 10:53:13 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-07 10:53:13 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20753
2018-05-07 10:53:14 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20768
2018-05-07 10:53:14 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20755
2018-05-07 10:53:14 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20767
2018-05-07 10:53:15 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20769
2018-05-07 10:53:16 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20770
2018-05-07 10:53:16 ERROR tcprelay.py:1097 unable to parse hostname bi-collector.oneapm.com when handling connection from ::ffff:182.106.212.145:20771
2018-05-07 10:56:44 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-07 11:01:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-07 11:02:33 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-07 11:02:33 INFO tcprelay.py:1379 Total connections up to 50
2018-05-07 11:04:15 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-07 11:07:14 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-07 11:07:14 INFO tcprelay.py:1382 Total connections down to 0
2018-05-07 11:33:46 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-07 11:50:24 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-08 17:52:50 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-08 17:54:34 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-08 20:34:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-08 21:07:08 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-09 16:50:32 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-09 16:53:49 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-09 17:37:33 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-09 17:52:06 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-09 17:52:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-09 17:56:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 09:47:14 ERROR tcprelay.py:1097 unable to parse hostname lcrviehpslqglh when handling connection from ::ffff:182.106.212.145:28188
2018-05-10 09:47:14 ERROR tcprelay.py:1097 unable to parse hostname ixbnfigwtnuaopl when handling connection from ::ffff:182.106.212.145:28187
2018-05-10 09:47:14 ERROR tcprelay.py:1097 unable to parse hostname ilxoqzlddjx when handling connection from ::ffff:182.106.212.145:28189
2018-05-10 09:47:22 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 09:50:15 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 09:52:18 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 10:37:55 ERROR tcprelay.py:1097 unable to parse hostname cn.wikipedia.org when handling connection from ::ffff:182.106.212.145:29066
2018-05-10 10:37:55 ERROR tcprelay.py:1097 unable to parse hostname cn.wikipedia.org when handling connection from ::ffff:182.106.212.145:29065
2018-05-10 10:37:56 ERROR tcprelay.py:1097 unable to parse hostname cn.wikipedia.org when handling connection from ::ffff:182.106.212.145:29067
2018-05-10 10:37:56 ERROR tcprelay.py:1097 unable to parse hostname cn.wikipedia.org when handling connection from ::ffff:182.106.212.145:29068
2018-05-10 10:37:57 ERROR tcprelay.py:1097 unable to parse hostname cn.wikipedia.org when handling connection from ::ffff:182.106.212.145:29069
2018-05-10 10:38:40 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 10:48:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 11:30:09 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 12:07:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 12:12:36 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 12:12:47 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 12:13:56 ERROR shell.py:50 [Errno 32] Broken pipe
2018-05-10 12:13:56 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:32758
2018-05-10 12:13:56 ERROR shell.py:50 [Errno 32] Broken pipe
2018-05-10 12:13:56 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:32761
2018-05-10 12:22:50 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 13:48:53 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 14:03:14 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:37101
2018-05-10 14:03:15 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:37102
2018-05-10 14:04:53 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:38610
2018-05-10 14:04:53 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:38613
2018-05-10 14:05:19 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:38693
2018-05-10 14:05:19 ERROR tcprelay.py:1097 unable to parse hostname sptidcsfo.baidu.com when handling connection from ::ffff:182.106.212.145:38695
2018-05-10 14:06:30 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-10 17:27:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-10 18:06:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-11 23:46:01 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-11 23:56:15 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-12 00:08:35 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-12 00:16:49 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-12 00:16:49 INFO tcprelay.py:1379 Total connections up to 50
2018-05-12 00:17:01 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-12 00:17:27 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-05-12 00:17:27 INFO tcprelay.py:1379 Total connections up to 100
2018-05-12 00:20:04 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-05-12 00:21:03 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-12 00:21:03 INFO tcprelay.py:1382 Total connections down to 50
2018-05-12 00:21:08 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-12 00:54:32 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-12 00:56:28 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-12 01:14:06 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-12 01:14:06 INFO tcprelay.py:1382 Total connections down to 0
2018-05-12 10:08:33 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-12 10:09:40 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-12 10:09:40 INFO tcprelay.py:1379 Total connections up to 50
2018-05-12 10:10:12 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-12 10:10:59 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-05-12 10:10:59 INFO tcprelay.py:1379 Total connections up to 100
2018-05-12 10:12:17 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-05-12 10:12:43 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-12 10:12:43 INFO tcprelay.py:1382 Total connections down to 50
2018-05-12 10:12:53 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-12 10:16:13 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-12 10:16:13 INFO tcprelay.py:1382 Total connections down to 0
2018-05-12 10:22:23 ERROR tcprelay.py:1039 [Errno 111] Connection refused
2018-05-12 10:22:23 ERROR tcprelay.py:1041 remote error, when connect to 121.43.18.42:53
2018-05-12 10:23:59 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-12 10:25:33 ERROR shell.py:50 [Errno 104] Connection reset by peer
2018-05-12 10:25:33 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:57121
2018-05-12 11:39:53 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-12 23:49:36 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61001
2018-05-12 23:49:36 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61000
2018-05-12 23:49:37 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61004
2018-05-12 23:49:38 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61003
2018-05-12 23:49:38 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61006
2018-05-12 23:49:39 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61007
2018-05-12 23:49:40 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61008
2018-05-12 23:49:41 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61009
2018-05-12 23:49:41 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61010
2018-05-12 23:49:43 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:182.106.212.145:61012
2018-05-12 23:49:43 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61013
2018-05-12 23:49:44 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:182.106.212.145:61016
2018-05-14 03:32:20 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23622
2018-05-14 03:32:21 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23621
2018-05-14 03:32:22 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23623
2018-05-14 03:32:22 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23934
2018-05-14 03:32:25 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23935
2018-05-14 03:32:25 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23936
2018-05-14 03:32:26 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23937
2018-05-14 03:32:28 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23939
2018-05-14 03:32:29 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23938
2018-05-14 03:32:29 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23940
2018-05-14 03:32:31 ERROR tcprelay.py:1097 unable to parse hostname infinity.zhihu.com when handling connection from ::ffff:223.104.170.235:23941
2018-05-14 03:32:31 ERROR tcprelay.py:1097 unable to parse hostname www.zhuanlan.zhihu.com when handling connection from ::ffff:223.104.170.235:23942
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63988
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63987
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63986
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63994
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63995
2018-05-14 17:50:47 ERROR shell.py:50 IP 127.0.0.1 is in forbidden list, when connect to local.alipcsec.com:6691 via port 10086 by UID 10086
2018-05-14 17:50:47 ERROR tcprelay.py:812 exception from ::ffff:182.106.212.145:63996
2018-05-14 17:51:23 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-14 17:51:26 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 17:51:26 INFO tcprelay.py:1379 Total connections up to 50
2018-05-14 17:51:34 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-14 17:53:26 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-14 17:53:37 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 17:58:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-14 17:58:37 INFO tcprelay.py:1382 Total connections down to 0
2018-05-14 22:11:48 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-14 22:12:03 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 22:12:03 INFO tcprelay.py:1379 Total connections up to 50
2018-05-14 22:12:07 ERROR tcprelay.py:1039 [Errno 32] Broken pipe
2018-05-14 22:12:07 ERROR tcprelay.py:1041 remote error, when connect to 20754664p.rfihub.com:443
2018-05-14 22:14:08 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 22:15:04 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 22:15:18 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-14 22:16:24 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-14 22:17:09 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 22:20:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-14 22:20:25 INFO tcprelay.py:1382 Total connections down to 0
2018-05-14 22:27:32 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-14 22:31:41 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 22:31:41 INFO tcprelay.py:1379 Total connections up to 50
2018-05-14 22:32:08 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-14 22:32:33 INFO tcprelay.py:1355 port 10086 connections up to 100
2018-05-14 22:32:33 INFO tcprelay.py:1379 Total connections up to 100
2018-05-14 22:32:36 INFO tcprelay.py:1355 port 10086 connections up to 125
2018-05-14 22:32:44 INFO tcprelay.py:1358 port 10086 connections down to 100
2018-05-14 22:32:59 INFO tcprelay.py:1358 port 10086 connections down to 75
2018-05-14 22:32:59 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-14 22:32:59 INFO tcprelay.py:1382 Total connections down to 50
2018-05-14 22:32:59 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 22:48:26 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-14 22:48:26 INFO tcprelay.py:1382 Total connections down to 0
2018-05-14 22:58:45 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-14 22:58:48 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 22:58:48 INFO tcprelay.py:1379 Total connections up to 50
2018-05-14 22:58:52 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-14 22:59:04 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-14 22:59:50 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 23:01:53 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 23:02:01 INFO tcprelay.py:1355 port 10086 connections up to 75
2018-05-14 23:02:17 INFO tcprelay.py:1358 port 10086 connections down to 50
2018-05-14 23:02:17 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 23:02:37 INFO tcprelay.py:1355 port 10086 connections up to 50
2018-05-14 23:03:51 INFO tcprelay.py:1358 port 10086 connections down to 25
2018-05-14 23:12:42 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-14 23:12:42 INFO tcprelay.py:1382 Total connections down to 0
2018-05-15 10:04:02 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 10:05:39 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 10:05:53 ERROR tcprelay.py:1097 unable to parse hostname cdbsteyxdyng when handling connection from ::ffff:182.106.212.145:8801
2018-05-15 10:05:53 ERROR tcprelay.py:1097 unable to parse hostname bymtaprrv when handling connection from ::ffff:182.106.212.145:8800
2018-05-15 10:05:53 ERROR tcprelay.py:1097 unable to parse hostname new when handling connection from ::ffff:182.106.212.145:8802
2018-05-15 10:05:54 ERROR tcprelay.py:1097 unable to parse hostname dwgloupwxlklnod when handling connection from ::ffff:182.106.212.145:8799
2018-05-15 10:06:22 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 10:09:56 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 10:45:16 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 10:47:05 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 10:49:54 ERROR tcprelay.py:1097 unable to parse hostname spring5 when handling connection from ::ffff:182.106.212.145:11024
2018-05-15 10:50:02 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 10:52:11 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 13:44:26 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 13:47:59 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 13:58:52 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:00:34 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:09:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:11:27 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:12:07 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:26:25 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:36:31 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:37:52 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:39:06 ERROR tcprelay.py:1097 unable to parse hostname mono when handling connection from ::ffff:182.106.212.145:14775
2018-05-15 14:39:25 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:40:45 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:52:28 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:54:11 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:54:36 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 14:56:06 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 14:58:33 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 15:00:35 ERROR shell.py:50 [Errno 32] Broken pipe
2018-05-15 15:00:35 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:16334
2018-05-15 15:00:35 ERROR shell.py:50 [Errno 32] Broken pipe
2018-05-15 15:00:35 ERROR tcprelay.py:396 exception from ::ffff:182.106.212.145:16316
2018-05-15 15:01:36 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 15:07:02 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 15:09:29 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 15:10:40 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 15:14:55 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 15:46:37 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 15:51:14 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 15:53:25 ERROR tcprelay.py:1097 unable to parse hostname http2 when handling connection from ::ffff:182.106.212.145:18465
2018-05-15 16:03:22 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 16:05:37 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 16:07:22 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 16:09:51 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 18:58:41 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 19:04:18 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 19:11:40 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:20702
2018-05-15 19:11:41 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:20706
2018-05-15 19:11:43 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 19:11:43 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:20716
2018-05-15 19:11:43 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:20717
2018-05-15 19:13:32 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 19:15:47 ERROR tcprelay.py:1097 unable to parse hostname aqs when handling connection from ::ffff:182.106.212.145:20725
2018-05-15 19:15:51 INFO tcprelay.py:1355 port 10086 connections up to 25
2018-05-15 19:22:47 INFO tcprelay.py:1358 port 10086 connections down to 0
2018-05-15 19:25:44 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:21580
2018-05-15 19:25:44 ERROR tcprelay.py:1097 unable to parse hostname dtmvdvtzf8rz0.cloudfront.net when handling connection from ::ffff:182.106.212.145:21581