-
Notifications
You must be signed in to change notification settings - Fork 0
/
nohup.out
5012 lines (5012 loc) · 319 KB
/
nohup.out
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
Traceback (most recent call last):
File "paramiko_forwarding.py", line 42, in <module>
import paramiko
ImportError: No module named paramiko
Traceback (most recent call last):
File "paramiko_forwarding.py", line 42, in <module>
import paramiko
ImportError: No module named paramiko
DEBUG:paramiko.transport:starting thread (client mode): 0x3c8fc310L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x3716cb90L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x3c917350L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x3714b350L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:starting thread (client mode): 0x3716cf50L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x3713c8d0L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x3c8fc310L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40480)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40484)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40488)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40492)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40506)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40510)
----------------------------------------
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f583c916098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.6', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.6:65422 ...
*** Failed to connect to 60.191.72.6:65422: AuthenticationException('Authentication failed.',)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 40514)
----------------------------------------
DDEBUG:paramiko.transport:starting thread (client mode): 0x3713d350L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:starting thread (client mode): 0xa542f310L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x9fcd7b90L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0xa544a350L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:starting thread (client mode): 0x9fcb6350L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:EOF in transport thread
DEBUG:paramiko.transport:starting thread (client mode): 0x9fcd7f90L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) failed.
Traceback (most recent call last):
File "/usr/lib/python2.7/SocketServer.py", line 596, in process_request_thread
self.finish_request(request, client_address)
File "/usr/lib/python2.7/SocketServer.py", line 331, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/usr/lib/python2.7/SocketServer.py", line 652, in __init__
self.handle()
File "paramiko_forwarding.py", line 89, in handle
Handler.ssh_client = Handler._ssh_client(*self.ssh_transport_opts)
File "paramiko_forwarding.py", line 78, in _ssh_client
sys.exit(1)
SystemExit: 1
DEBUG:paramiko.transport:EOF in transport thread
es_local.sh: line 3: 24741 Killed python paramiko_forwarding.py -p 9201 -u root -r 192.168.60.17:9200 60.191.72.6:65422
DEBUG:paramiko.transport:starting thread (client mode): 0xb76d8310L
DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_2.0.2
DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_5.3
INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_5.3)
DEBUG:paramiko.transport:kex algos:[u'diffie-hellman-group-exchange-sha256', u'diffie-hellman-group-exchange-sha1', u'diffie-hellman-group14-sha1', u'diffie-hellman-group1-sha1'] server key:[u'ssh-rsa', u'ssh-dss'] client encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] server encrypt:[u'aes128-ctr', u'aes192-ctr', u'aes256-ctr', u'arcfour256', u'arcfour128', u'aes128-cbc', u'3des-cbc', u'blowfish-cbc', u'cast128-cbc', u'aes192-cbc', u'aes256-cbc', u'arcfour', u'[email protected]'] client mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] server mac:[u'hmac-md5', u'hmac-sha1', u'[email protected]', u'hmac-sha2-256', u'hmac-sha2-512', u'hmac-ripemd160', u'[email protected]', u'hmac-sha1-96', u'hmac-md5-96'] client compress:[u'none', u'[email protected]'] server compress:[u'none', u'[email protected]'] client lang:[u''] server lang:[u''] kex follows?False
DEBUG:paramiko.transport:Kex agreed: diffie-hellman-group1-sha1
DEBUG:paramiko.transport:Cipher agreed: aes128-ctr
DEBUG:paramiko.transport:MAC agreed: hmac-sha2-256
DEBUG:paramiko.transport:Compression agreed: none
DEBUG:paramiko.transport:kex engine KexGroup1 specified hash_algo <built-in function openssl_sha1>
DEBUG:paramiko.transport:Switch to new keys ...
DEBUG:paramiko.transport:Trying discovered key 49f06d9ff8149077067b9df618b1382c in /home/vagrant/.ssh/id_rsa
DEBUG:paramiko.transport:userauth is OK
INFO:paramiko.transport:Authentication (publickey) successful!
DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 0 opened.
DEBUG:paramiko.transport:[chan 0] EOF sent (0)
DEBUG:paramiko.transport:[chan 0] EOF received (0)
DEBUG:paramiko.transport:[chan 1] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 1] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 1 opened.
DEBUG:paramiko.transport:[chan 1] EOF sent (1)
DEBUG:paramiko.transport:[chan 2] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 1] EOF received (1)
DEBUG:paramiko.transport:[chan 2] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 2 opened.
DEBUG:paramiko.transport:[chan 2] EOF sent (2)
DEBUG:paramiko.transport:[chan 3] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 3] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 3 opened.
DEBUG:paramiko.transport:[chan 3] EOF sent (3)
DEBUG:paramiko.transport:[chan 3] EOF received (3)
DEBUG:paramiko.transport:[chan 4] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 4] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 4 opened.
DEBUG:paramiko.transport:[chan 4] EOF sent (4)
DEBUG:paramiko.transport:[chan 5] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 5] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 5 opened.
DEBUG:paramiko.transport:[chan 5] EOF sent (5)
DEBUG:paramiko.transport:[chan 5] EOF received (5)
DEBUG:paramiko.transport:[chan 6] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 6] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 6 opened.
DEBUG:paramiko.transport:[chan 6] EOF sent (6)
DEBUG:paramiko.transport:[chan 6] EOF received (6)
DEBUG:paramiko.transport:[chan 7] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 7] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 7 opened.
DEBUG:paramiko.transport:[chan 7] EOF sent (7)
DEBUG:paramiko.transport:[chan 8] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 7] EOF received (7)
DEBUG:paramiko.transport:[chan 8] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 8 opened.
DEBUG:paramiko.transport:[chan 8] EOF sent (8)
DEBUG:paramiko.transport:[chan 8] EOF received (8)
DEBUG:paramiko.transport:[chan 9] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 9] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 9 opened.
DEBUG:paramiko.transport:[chan 9] EOF sent (9)
DEBUG:paramiko.transport:[chan 9] EOF received (9)
DEBUG:paramiko.transport:[chan 10] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 10] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 10 opened.
DEBUG:paramiko.transport:[chan 10] EOF sent (10)
DEBUG:paramiko.transport:[chan 10] EOF received (10)
DEBUG:paramiko.transport:[chan 11] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 11] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 11 opened.
DEBUG:paramiko.transport:[chan 11] EOF sent (11)
DEBUG:paramiko.transport:[chan 11] EOF received (11)
DEBUG:paramiko.transport:[chan 12] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 12] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 12 opened.
DEBUG:paramiko.transport:[chan 12] EOF sent (12)
DEBUG:paramiko.transport:[chan 12] EOF received (12)
DEBUG:paramiko.transport:[chan 13] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 13] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 13 opened.
DEBUG:paramiko.transport:[chan 13] EOF sent (13)
DEBUG:paramiko.transport:[chan 14] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 14] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 14 opened.
DEBUG:paramiko.transport:[chan 14] EOF sent (14)
DEBUG:paramiko.transport:[chan 14] EOF received (14)
DEBUG:paramiko.transport:[chan 15] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 15] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 15 opened.
DEBUG:paramiko.transport:[chan 15] EOF sent (15)
DEBUG:paramiko.transport:[chan 16] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 15] EOF received (15)
DEBUG:paramiko.transport:[chan 16] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 16 opened.
DEBUG:paramiko.transport:[chan 16] EOF sent (16)
DEBUG:paramiko.transport:[chan 16] EOF received (16)
DEBUG:paramiko.transport:[chan 17] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 17] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 17 opened.
DEBUG:paramiko.transport:[chan 17] EOF sent (17)
DEBUG:paramiko.transport:[chan 17] EOF received (17)
DEBUG:paramiko.transport:[chan 18] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 18] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 18 opened.
DEBUG:paramiko.transport:[chan 18] EOF sent (18)
DEBUG:paramiko.transport:[chan 18] EOF received (18)
DEBUG:paramiko.transport:[chan 19] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 19] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 19 opened.
DEBUG:paramiko.transport:[chan 19] EOF sent (19)
DEBUG:paramiko.transport:[chan 19] EOF received (19)
DEBUG:paramiko.transport:[chan 20] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 20] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 20 opened.
DEBUG:paramiko.transport:[chan 20] EOF sent (20)
DEBUG:paramiko.transport:[chan 20] EOF received (20)
DEBUG:paramiko.transport:[chan 21] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 21] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 21 opened.
DEBUG:paramiko.transport:[chan 21] EOF sent (21)
DEBUG:paramiko.transport:[chan 21] EOF received (21)
DEBUG:paramiko.transport:[chan 22] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 22] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 22 opened.
DEBUG:paramiko.transport:[chan 22] EOF sent (22)
DEBUG:paramiko.transport:[chan 22] EOF received (22)
DEBUG:paramiko.transport:[chan 23] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 23] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 23 opened.
DEBUG:paramiko.transport:[chan 23] EOF sent (23)
DEBUG:paramiko.transport:[chan 23] EOF received (23)
DEBUG:paramiko.transport:[chan 24] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 24] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 24 opened.
DEBUG:paramiko.transport:[chan 24] EOF sent (24)
DEBUG:paramiko.transport:[chan 24] EOF received (24)
DEBUG:paramiko.transport:[chan 25] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 25] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 25 opened.
DEBUG:paramiko.transport:[chan 25] EOF sent (25)
DEBUG:paramiko.transport:[chan 25] EOF received (25)
DEBUG:paramiko.transport:[chan 26] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 26] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 26 opened.
DEBUG:paramiko.transport:[chan 26] EOF sent (26)
DEBUG:paramiko.transport:[chan 26] EOF received (26)
DEBUG:paramiko.transport:[chan 27] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 27] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 27 opened.
DEBUG:[XXXXXXXXXXXXXXXXXXXX] new ssh transport
(<Values at 0x7f17b76f2098: {'remote': '192.168.60.17:9200', 'verbose': True, 'local_addr': '', 'user': 'root', 'readpass': False, 'keyfile': None, 'port': 9201, 'look_for_keys': True}>, ('60.191.72.7', 65422), ('192.168.60.17', 9200), None)
Connecting to ssh host 60.191.72.7:65422 ...
Now forwarding port 9201 to 192.168.60.17:9200 ...
Connected! Tunnel open ('127.0.0.1', 41038) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41038)
Connected! Tunnel open ('127.0.0.1', 41042) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41042)
Connected! Tunnel open ('127.0.0.1', 41044) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41044)
Connected! Tunnel open ('127.0.0.1', 41046) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41046)
Connected! Tunnel open ('127.0.0.1', 41048) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41048)
Connected! Tunnel open ('127.0.0.1', 41050) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41050)
Connected! Tunnel open ('127.0.0.1', 41052) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41052)
Connected! Tunnel open ('127.0.0.1', 41054) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41054)
Connected! Tunnel open ('127.0.0.1', 41056) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41056)
Connected! Tunnel open ('127.0.0.1', 41058) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41058)
Connected! Tunnel open ('127.0.0.1', 41060) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41060)
Connected! Tunnel open ('127.0.0.1', 41062) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41062)
Connected! Tunnel open ('127.0.0.1', 41064) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41064)
Connected! Tunnel open ('127.0.0.1', 41066) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41066)
Connected! Tunnel open ('127.0.0.1', 41068) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41068)
Connected! Tunnel open ('127.0.0.1', 41070) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41070)
Connected! Tunnel open ('127.0.0.1', 41072) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41072)
Connected! Tunnel open ('127.0.0.1', 41074) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41074)
Connected! Tunnel open ('127.0.0.1', 41076) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41076)
Connected! Tunnel open ('127.0.0.1', 41078) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41078)
Connected! Tunnel open ('127.0.0.1', 41080) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41080)
Connected! Tunnel open ('127.0.0.1', 41082) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41082)
Connected! Tunnel open ('127.0.0.1', 41084) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41084)
Connected! Tunnel open ('127.0.0.1', 41086) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41086)
Connected! Tunnel open ('127.0.0.1', 41088) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41088)
Connected! Tunnel open ('127.0.0.1', 41090) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41090)
Connected! Tunnel open ('127.0.0.1', 41092) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41092)
Connected! TDEBUG:paramiko.transport:[chan 27] EOF sent (27)
DEBUG:paramiko.transport:[chan 27] EOF received (27)
DEBUG:paramiko.transport:[chan 28] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 28] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 28 opened.
DEBUG:paramiko.transport:[chan 28] EOF sent (28)
DEBUG:paramiko.transport:[chan 28] EOF received (28)
DEBUG:paramiko.transport:[chan 29] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 29] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 29 opened.
DEBUG:paramiko.transport:[chan 29] EOF sent (29)
DEBUG:paramiko.transport:[chan 29] EOF received (29)
DEBUG:paramiko.transport:[chan 30] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 30] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 30 opened.
DEBUG:paramiko.transport:[chan 30] EOF sent (30)
DEBUG:paramiko.transport:[chan 30] EOF received (30)
DEBUG:paramiko.transport:[chan 31] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 31] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 31 opened.
DEBUG:paramiko.transport:[chan 31] EOF sent (31)
DEBUG:paramiko.transport:[chan 31] EOF received (31)
DEBUG:paramiko.transport:[chan 32] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 32] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 32 opened.
DEBUG:paramiko.transport:[chan 32] EOF sent (32)
DEBUG:paramiko.transport:[chan 32] EOF received (32)
DEBUG:paramiko.transport:[chan 33] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 33] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 33 opened.
DEBUG:paramiko.transport:[chan 33] EOF sent (33)
DEBUG:paramiko.transport:[chan 33] EOF received (33)
DEBUG:paramiko.transport:[chan 34] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 34] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 34 opened.
DEBUG:paramiko.transport:[chan 34] EOF sent (34)
DEBUG:paramiko.transport:[chan 34] EOF received (34)
DEBUG:paramiko.transport:[chan 35] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 35] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 35 opened.
DEBUG:paramiko.transport:[chan 35] EOF sent (35)
DEBUG:paramiko.transport:[chan 35] EOF received (35)
DEBUG:paramiko.transport:[chan 36] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 36] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 36 opened.
DEBUG:paramiko.transport:[chan 36] EOF sent (36)
DEBUG:paramiko.transport:[chan 36] EOF received (36)
DEBUG:paramiko.transport:[chan 37] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 37] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 37 opened.
DEBUG:paramiko.transport:[chan 37] EOF sent (37)
DEBUG:paramiko.transport:[chan 37] EOF received (37)
DEBUG:paramiko.transport:[chan 38] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 38] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 38 opened.
DEBUG:paramiko.transport:[chan 38] EOF sent (38)
DEBUG:paramiko.transport:[chan 39] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 39] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 39 opened.
DEBUG:paramiko.transport:[chan 39] EOF sent (39)
DEBUG:paramiko.transport:[chan 39] EOF received (39)
DEBUG:paramiko.transport:[chan 40] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 40] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 40 opened.
DEBUG:paramiko.transport:[chan 40] EOF sent (40)
DEBUG:paramiko.transport:[chan 40] EOF received (40)
DEBUG:paramiko.transport:[chan 41] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 41] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 41 opened.
DEBUG:paramiko.transport:[chan 41] EOF sent (41)
DEBUG:paramiko.transport:[chan 41] EOF received (41)
DEBUG:paramiko.transport:[chan 42] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 42] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 42 opened.
DEBUG:paramiko.transport:[chan 42] EOF sent (42)
DEBUG:paramiko.transport:[chan 42] EOF received (42)
DEBUG:paramiko.transport:[chan 43] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 43] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 43 opened.
DEBUG:paramiko.transport:[chan 43] EOF sent (43)
DEBUG:paramiko.transport:[chan 43] EOF received (43)
DEBUG:paramiko.transport:[chan 44] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 44] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 44 opened.
DEBUG:paramiko.transport:[chan 44] EOF sent (44)
DEBUG:paramiko.transport:[chan 44] EOF received (44)
DEBUG:paramiko.transport:[chan 45] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 45] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 45 opened.
DEBUG:paramiko.transport:[chan 45] EOF sent (45)
DEBUG:paramiko.transport:[chan 45] EOF received (45)
DEBUG:paramiko.transport:[chan 46] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 46] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 46 opened.
DEBUG:paramiko.transport:[chan 46] EOF sent (46)
DEBUG:paramiko.transport:[chan 46] EOF received (46)
DEBUG:paramiko.transport:[chan 47] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 47] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 47 opened.
DEBUG:paramiko.transport:[chan 47] EOF sent (47)
DEBUG:paramiko.transport:[chan 47] EOF received (47)
DEBUG:paramiko.transport:[chan 48] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 48] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 48 opened.
DEBUG:paramiko.transport:[chan 48] EOF sent (48)
DEBUG:paramiko.transport:[chan 48] EOF received (48)
DEBUG:paramiko.transport:[chan 49] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 49] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 49 opened.
DEBUG:paramiko.transport:[chan 49] EOF sent (49)
DEBUG:paramiko.transport:[chan 49] EOF received (49)
DEBUG:paramiko.transport:[chan 50] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 50] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 50 opened.
DEBUG:paramiko.transport:[chan 50] EOF sent (50)
DEBUG:paramiko.transport:[chan 50] EOF received (50)
DEBUG:paramiko.transport:[chan 51] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 51] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 51 opened.
DEBUG:paramiko.transport:[chan 51] EOF sent (51)
DEBUG:paramiko.transport:[chan 51] EOF received (51)
DEBUG:paramiko.transport:[chan 52] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 52] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 52 opened.
DEBUG:paramiko.transport:[chan 52] EOF sent (52)
DEBUG:paramiko.transport:[chan 52] EOF received (52)
DEBUG:paramiko.transport:[chan 53] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 53] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 53 opened.
DEBUG:paramiko.transport:[chan 53] EOF sent (53)
DEBUG:paramiko.transport:[chan 53] EOF received (53)
DEBUG:paramiko.transport:[chan 54] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 54] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 54 opened.
DEBUG:paramiko.transport:[chan 54] EOF sent (54)
DEBUG:paramiko.transport:[chan 54] EOF received (54)
DEBUG:paramiko.transport:[chan 55] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 55] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 55 opened.
DEBUG:paramiko.transport:[chan 55] EOF sent (55)
DEBUG:paramiko.transport:[chan 55] EOF received (55)
DEBUG:paramiko.transport:[chan 56] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 56] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 56 opened.
DEBUG:paramiko.transport:[chan 56] EOF sent (56)
unnel open ('127.0.0.1', 41094) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41094)
Connected! Tunnel open ('127.0.0.1', 41096) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41096)
Connected! Tunnel open ('127.0.0.1', 41098) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41098)
Connected! Tunnel open ('127.0.0.1', 41100) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41100)
Connected! Tunnel open ('127.0.0.1', 41102) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41102)
Connected! Tunnel open ('127.0.0.1', 41104) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41104)
Connected! Tunnel open ('127.0.0.1', 41106) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41106)
Connected! Tunnel open ('127.0.0.1', 41108) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41108)
Connected! Tunnel open ('127.0.0.1', 41110) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41110)
Connected! Tunnel open ('127.0.0.1', 41112) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41112)
Connected! Tunnel open ('127.0.0.1', 41116) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41116)
Connected! Tunnel open ('127.0.0.1', 41118) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41118)
Connected! Tunnel open ('127.0.0.1', 41120) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41120)
Connected! Tunnel open ('127.0.0.1', 41122) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41122)
Connected! Tunnel open ('127.0.0.1', 41124) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41124)
Connected! Tunnel open ('127.0.0.1', 41126) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41126)
Connected! Tunnel open ('127.0.0.1', 41128) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41128)
Connected! Tunnel open ('127.0.0.1', 41130) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41130)
Connected! Tunnel open ('127.0.0.1', 41132) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41132)
Connected! Tunnel open ('127.0.0.1', 41134) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41134)
Connected! Tunnel open ('127.0.0.1', 41136) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41136)
Connected! Tunnel open ('127.0.0.1', 41138) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41138)
Connected! Tunnel open ('127.0.0.1', 41140) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41140)
Connected! Tunnel open ('127.0.0.1', 41142) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41142)
Connected! Tunnel open ('127.0.0.1', 41144) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41144)
Connected! Tunnel open ('127.0.0.1', 41146) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41146)
Connected! Tunnel open ('127.0.0.1', 41148) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41148)
Connected! Tunnel open ('127.0.0.1', 41150) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41150)
Connected! Tunnel open ('127.0.0.1', 41152) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41152)
Connected! Tunnel open ('127.0.0.1', 41154) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41154DEBUG:paramiko.transport:[chan 56] EOF received (56)
DEBUG:paramiko.transport:[chan 57] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 57] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 57 opened.
DEBUG:paramiko.transport:[chan 57] EOF sent (57)
DEBUG:paramiko.transport:[chan 57] EOF received (57)
DEBUG:paramiko.transport:[chan 58] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 58] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 58 opened.
DEBUG:paramiko.transport:[chan 58] EOF sent (58)
DEBUG:paramiko.transport:[chan 58] EOF received (58)
DEBUG:paramiko.transport:[chan 59] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 59] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 59 opened.
DEBUG:paramiko.transport:[chan 59] EOF sent (59)
DEBUG:paramiko.transport:[chan 59] EOF received (59)
DEBUG:paramiko.transport:[chan 60] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 60] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 60 opened.
DEBUG:paramiko.transport:[chan 60] EOF sent (60)
DEBUG:paramiko.transport:[chan 60] EOF received (60)
DEBUG:paramiko.transport:[chan 61] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 61] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 61 opened.
DEBUG:paramiko.transport:[chan 61] EOF sent (61)
DEBUG:paramiko.transport:[chan 61] EOF received (61)
DEBUG:paramiko.transport:[chan 62] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 62] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 62 opened.
DEBUG:paramiko.transport:[chan 62] EOF sent (62)
DEBUG:paramiko.transport:[chan 63] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 62] EOF received (62)
DEBUG:paramiko.transport:[chan 63] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 63 opened.
DEBUG:paramiko.transport:[chan 63] EOF sent (63)
DEBUG:paramiko.transport:[chan 64] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 63] EOF received (63)
DEBUG:paramiko.transport:[chan 64] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 64 opened.
DEBUG:paramiko.transport:[chan 64] EOF sent (64)
DEBUG:paramiko.transport:[chan 64] EOF received (64)
DEBUG:paramiko.transport:[chan 65] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 65] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 65 opened.
DEBUG:paramiko.transport:[chan 65] EOF sent (65)
DEBUG:paramiko.transport:[chan 65] EOF received (65)
DEBUG:paramiko.transport:[chan 66] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 66] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 66 opened.
DEBUG:paramiko.transport:[chan 66] EOF sent (66)
DEBUG:paramiko.transport:[chan 66] EOF received (66)
DEBUG:paramiko.transport:[chan 67] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 67] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 67 opened.
DEBUG:paramiko.transport:[chan 67] EOF sent (67)
DEBUG:paramiko.transport:[chan 67] EOF received (67)
DEBUG:paramiko.transport:[chan 68] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 68] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 68 opened.
DEBUG:paramiko.transport:[chan 68] EOF sent (68)
DEBUG:paramiko.transport:[chan 68] EOF received (68)
DEBUG:paramiko.transport:[chan 69] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 69] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 69 opened.
DEBUG:paramiko.transport:[chan 69] EOF sent (69)
DEBUG:paramiko.transport:[chan 70] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 70] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 70 opened.
DEBUG:paramiko.transport:[chan 70] EOF sent (70)
DEBUG:paramiko.transport:[chan 71] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 70] EOF received (70)
DEBUG:paramiko.transport:[chan 71] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 71 opened.
DEBUG:paramiko.transport:[chan 71] EOF sent (71)
DEBUG:paramiko.transport:[chan 71] EOF received (71)
DEBUG:paramiko.transport:Sending global request "[email protected]"
DEBUG:paramiko.transport:[chan 72] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 72] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 72 opened.
DEBUG:paramiko.transport:[chan 72] EOF sent (72)
DEBUG:paramiko.transport:[chan 72] EOF received (72)
DEBUG:paramiko.transport:[chan 73] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 73] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 73 opened.
DEBUG:paramiko.transport:[chan 73] EOF sent (73)
DEBUG:paramiko.transport:[chan 74] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 73] EOF received (73)
DEBUG:paramiko.transport:[chan 74] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 74 opened.
DEBUG:paramiko.transport:[chan 74] EOF sent (74)
DEBUG:paramiko.transport:[chan 75] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 74] EOF received (74)
DEBUG:paramiko.transport:[chan 75] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 75 opened.
DEBUG:paramiko.transport:[chan 75] EOF sent (75)
DEBUG:paramiko.transport:[chan 75] EOF received (75)
DEBUG:paramiko.transport:[chan 76] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 76] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 76 opened.
DEBUG:paramiko.transport:[chan 76] EOF sent (76)
DEBUG:paramiko.transport:[chan 76] EOF received (76)
DEBUG:paramiko.transport:[chan 77] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 77] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 77 opened.
DEBUG:paramiko.transport:[chan 77] EOF sent (77)
DEBUG:paramiko.transport:[chan 77] EOF received (77)
DEBUG:paramiko.transport:[chan 78] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 78] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 78 opened.
DEBUG:paramiko.transport:[chan 78] EOF sent (78)
DEBUG:paramiko.transport:[chan 78] EOF received (78)
DEBUG:paramiko.transport:[chan 79] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 79] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 79 opened.
DEBUG:paramiko.transport:[chan 79] EOF sent (79)
DEBUG:paramiko.transport:[chan 79] EOF received (79)
DEBUG:paramiko.transport:[chan 80] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 80] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 80 opened.
DEBUG:paramiko.transport:[chan 80] EOF sent (80)
DEBUG:paramiko.transport:[chan 81] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 80] EOF received (80)
DEBUG:paramiko.transport:[chan 81] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 81 opened.
DEBUG:paramiko.transport:[chan 81] EOF sent (81)
DEBUG:paramiko.transport:[chan 81] EOF received (81)
DEBUG:paramiko.transport:[chan 82] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 82] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 82 opened.
DEBUG:paramiko.transport:[chan 82] EOF sent (82)
DEBUG:paramiko.transport:[chan 82] EOF received (82)
DEBUG:paramiko.transport:[chan 83] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 83] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 83 opened.
DEBUG:paramiko.transport:[chan 83] EOF sent (83)
DEBUG:paramiko.transport:[chan 83] EOF received (83)
DEBUG:paramiko.transport:[chan 84] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 84] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 84 opened.
DEBUG:paramiko.transport:[chan 84] EOF sent (84)
DEBUG:paramiko.transport:[chan 84] EOF received (84)
DEBUG:paramiko.transport:[chan 85] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 85] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 85 opened.
DEBUG:paramiko.transport:[chan 85] EOF sent (85)
DEBUG:paramiko.transport:[chan 85] EOF received (85)
DEBUG:paramiko.transport:[chan 86] Max packet in: 32768 bytes
DEBUG:paramiko.transport:[chan 86] Max packet out: 32768 bytes
DEBUG:paramiko.transport:Secsh channel 86 opened.
DEBUG:paramiko.transport:[chan 86] EOF sent (86)
)
Connected! Tunnel open ('127.0.0.1', 41156) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41156)
Connected! Tunnel open ('127.0.0.1', 41158) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41158)
Connected! Tunnel open ('127.0.0.1', 41160) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41160)
Connected! Tunnel open ('127.0.0.1', 41162) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41162)
Connected! Tunnel open ('127.0.0.1', 41164) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41164)
Connected! Tunnel open ('127.0.0.1', 41166) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41166)
Connected! Tunnel open ('127.0.0.1', 41168) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41168)
Connected! Tunnel open ('127.0.0.1', 41170) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41170)
Connected! Tunnel open ('127.0.0.1', 41172) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41172)
Connected! Tunnel open ('127.0.0.1', 41174) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41174)
Connected! Tunnel open ('127.0.0.1', 41176) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41176)
Connected! Tunnel open ('127.0.0.1', 41178) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41178)
Connected! Tunnel open ('127.0.0.1', 41180) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41180)
Connected! Tunnel open ('127.0.0.1', 41182) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)
Tunnel closed from ('127.0.0.1', 41182)
Connected! Tunnel open ('127.0.0.1', 41184) -> ('60.191.72.7', 65422) -> ('192.168.60.17', 9200)