-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnohup.out
22171 lines (21973 loc) · 658 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
connect.multipart() will be removed in connect 3.0
visit https://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives
connect.limit() will be removed in connect 3.0
connect.multipart() will be removed in connect 3.0
visit https://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives
connect.limit() will be removed in connect 3.0
Express server listening on port 3002
[90mGET / [32m200 [90m368ms - 813b[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [32m200 [90m6ms - 12.88kb[0m
[90mGET /bootstrap/css/signin.css [32m200 [90m2ms - 793b[0m
[90mGET /bootstrap/js/bootstrap.min.js [32m200 [90m7ms - 28.43kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [32m200 [90m5748ms - 97.62kb[0m
password admin
21232f297a57a5a743894a0e4a801fc3
[90mPOST /login [36m302 [90m6ms - 66b[0m
[90mGET /home [32m200 [90m127ms - 4.33kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m2ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [32m200 [90m1ms - 1.35kb[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m2ms[0m
[90mGET /images/home_logo.jpg [32m200 [90m3078ms - 196.84kb[0m
[90mGET /ace/src-min-noconflict/ace.js [32m200 [90m3814ms - 320.19kb[0m
[ 'DB:CRON_JOB:1' ]
{ id: '1',
cron: '1 1 * * *',
script: 'ping_vms',
argv: 'Manage_vm',
status: '',
desc: 'pinger les vm et les relancer en cas d\'echecs',
key: 'DB:CRON_JOB:1' }
[90mGET /module/CRON_JOB/view [32m200 [90m180ms - 6.41kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [32m200 [90m1ms - 22.77kb[0m
client connecté
regiser id 1
[ 'DB:Manage_DHCP:192.168.0.222',
'DB:Manage_DHCP:192.168.0.111' ]
{ ip: '192.168.0.111',
mac: '8a:1b:6c:d1:6e:82',
area: 'ircad',
key: 'DB:Manage_DHCP:192.168.0.111' }
{ ip: '192.168.0.222',
mac: '8a:1b:6c:d1:6e:79',
area: 'ircad',
key: 'DB:Manage_DHCP:192.168.0.222' }
[90mGET /module/Manage_DHCP/view [32m200 [90m120ms - 7.24kb[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [36m304 [90m0ms[0m
client connecté
regiser id 2
[ 'DB:Manage_vm:192.168.0.157',
'DB:Manage_vm:192.168.0.155',
'DB:Manage_vm:192.168.0.144',
'DB:Manage_vm:192.168.0.158',
'DB:Manage_vm:192.168.0.159',
'DB:Manage_vm:192.168.0.168',
'DB:Manage_vm:192.168.0.171',
'DB:Manage_vm:192.168.0.172',
'DB:Manage_vm:192.168.0.160',
'DB:Manage_vm:192.168.0.173',
'DB:Manage_vm:192.168.0.37',
'DB:Manage_vm:192.168.0.170',
'DB:Manage_vm:192.168.0.156',
'DB:Manage_vm:192.168.0.81',
'DB:Manage_vm:192.168.0.82' ]
{ ip: '192.168.0.144',
mac: '8a:1b:6c:d1:6e:82',
host: 'ircad-machine',
role: 'dcm4chee',
gateway: '',
dns: '',
pass: 'root',
vmid: '114',
hv_id: '',
hv_type: 'Proxmox',
type: 'Physique',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.144' }
{ ip: '192.168.0.155',
mac: '8a:1b:6c:d1:6e:83',
host: 'googke',
role: 'tomcat,web',
gateway: '',
dns: '',
pass: 'root',
vmid: '113',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'Physique',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.155' }
{ host: 'dcm4chee',
hv_type: 'Proxmox',
vmid: '107',
mac: '8a:1b:6c:d1:6e:84',
kernel: '3.11',
gateway: '',
role: 'dcm4chee',
type: 'yes',
dns: '',
pass: 'root',
ip: '192.168.0.156',
hv_id: '',
user: 'root',
key: 'DB:Manage_vm:192.168.0.156' }
{ ip: '192.168.0.157',
mac: '8a:1b:6c:d1:6e:85',
host: 'test',
role: 'dcm4chee',
pass: 'root',
vmid: '119',
hv_id: '',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.8',
key: 'DB:Manage_vm:192.168.0.157' }
{ ip: '192.168.0.158',
mac: '8a:1b:6c:d1:6e:86',
host: 'mardi',
role: 'dcm4chee',
pass: 'root',
vmid: '120',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'Physique',
kernel: '3.8',
key: 'DB:Manage_vm:192.168.0.158' }
{ ip: '192.168.0.159',
mac: '8a:1b:6c:d1:6e:87',
host: 'mercredi0000',
role: 'dcm4chee',
pass: 'root',
vmid: '120',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.8',
key: 'DB:Manage_vm:192.168.0.159' }
{ ip: '192.168.0.160',
mac: '8a:1b:6c:d1:6e:88',
host: 'jeudi000',
role: 'dcm4chee',
pass: 'root',
vmid: '129',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.160' }
{ ip: '192.168.0.168',
mac: '8a:1b:6c:d1:6e:89',
host: 'samedi',
role: 'dcm4chee',
pass: 'root',
vmid: '125',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.168' }
{ ip: '192.168.0.170',
mac: '8a:1b:66:d1:6e:90',
host: 'lundi',
role: 'dcm4chee',
pass: 'root',
vmid: '104',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.8',
user: 'root',
key: 'DB:Manage_vm:192.168.0.170' }
{ ip: '192.168.0.171',
mac: '8a:1b:66:d1:6e:91',
host: 'lundi001',
role: 'lamp',
pass: 'root',
vmid: '128',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.171' }
{ ip: '192.168.0.172',
mac: '8a:1b:66:d1:6e:92',
host: 'lundi002',
role: 'lamp',
pass: 'root',
vmid: '125',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'VM',
kernel: '3.11',
key: 'DB:Manage_vm:192.168.0.172' }
{ ip: '192.168.0.173',
mac: '8a:1b:66:d1:6e:93',
host: 'geoffrey',
role: 'lamp',
pass: 'root',
vmid: '126',
hv_id: 'proxmox',
hv_type: 'Proxmox',
type: 'Physique',
kernel: '3.8',
key: 'DB:Manage_vm:192.168.0.173' }
{ ip: '192.168.0.37',
mac: '00:0c:29:09:06:b9',
host: 'geoffrey.machine',
role: '',
user: '',
pass: '',
vmid: '',
hv_id: '',
hv_type: 'Proxmox',
type: 'Physique',
kernel: '3.8',
key: 'DB:Manage_vm:192.168.0.37' }
{ ip: '192.168.0.81',
mac: '00:18:f3:c5:b5:b6',
host: 'srv1',
role: '',
pass: 'MdPdAdM!',
vmid: '',
hv_id: '',
hv_type: 'Proxmox',
type: 'yes',
kernel: '3.8',
user: 'root',
key: 'DB:Manage_vm:192.168.0.81' }
{ ip: '192.168.0.82',
mac: '00:18:f3:09:e5:47',
host: 'srv2',
role: '',
pass: 'MdPdAdM!',
vmid: '',
hv_id: '',
hv_type: 'Proxmox',
type: 'yes',
kernel: '3.8',
user: 'root',
key: 'DB:Manage_vm:192.168.0.82' }
[90mGET /module/Manage_vm/view [32m200 [90m129ms - 19.33kb[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [36m304 [90m1ms[0m
client connecté
regiser id 3
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
[90mGET /show_script [32m200 [90m107ms - 10.63kb[0m
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
file sc 2
[90mGET /edit_script/DCM4CHEE_INSTALL [32m200 [90m122ms - 8.71kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [32m200 [90m26ms - 2.34kb[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [32m200 [90m20ms - 4.51kb[0m
[90mGET /ace/src-min-noconflict/mode-python.js [32m200 [90m5ms - 4.54kb[0m
client connecté
regiser id 4
disconnect user from
file sc 2
[90mGET /edit_script/cisco_conf [32m200 [90m76ms - 7.88kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 5
disconnect user from
file sc 2
[90mGET /edit_script/TEST_IF [32m200 [90m113ms - 8.83kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m2ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m2ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 6
*******************************************
[90mPOST /run_shaker/TEST_IF [32m200 [90m1ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/TEST_IF/env.yaml -s /root/sgod/scripts/TEST_IF/shell.sh
===========================================
client connecté
regiser id 7
spawnSTDOUT:[Connected]
registerrr
My ID 7
My father ID 0
console arg
[]
[u'$!+ rbox.cmd_if CC', u'VARIF=100', u'echo "1"', u'$!+ rbox.cmd_if CC', u'echo "2"', u'echo "3"', u'$$ shaker.stop_all', u'$$ sk_console.get VAR', u'$$ rbox.cmd_if CONDITION', u'echo "hello 3333"']
SSH error.
End Of File (EOF). Exception style platform.
<pexpect.pxssh.pxssh object at 0x919fbec>
version: 3.1
command: /usr/bin/ssh
args: ['/usr/bin/ssh', '-q', '-l', 'root', '192.168.0.222']
searcher: <pexpect.searcher_re object at 0x919faec>
buffer (last 100 chars): ''
before (last 100 chars): ''
after: <class 'pexpect.EOF'>
match: None
match_index: None
exitstatus: None
flag_eof: True
pid: 7293
child_fd: 6
closed: False
timeout: 30
delimiter: <class 'pexpect.EOF'>
logfile: None
logfile_read: None
logfile_send: None
maxread: 2000
ignorecase: False
searchwindowsize: None
delaybeforesend: 0.05
delayafterclose: 0.1
delayafterterminate: 0.1
disconnect user from
*******************************************
[90mPOST /run_shaker/TEST_IF [32m200 [90m1ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/TEST_IF/env.yaml -s /root/sgod/scripts/TEST_IF/shell.sh
===========================================
client connecté
regiser id 8
spawnSTDOUT:[Connected]console arg
[]
registerrr
My ID 8
My father ID 0
[u'$!+ rbox.cmd_if CC', u'VARIF=100', u'echo "1"', u'$!+ rbox.cmd_if CC', u'echo "2"', u'echo "3"', u'$$ shaker.stop_all', u'$$ sk_console.get VAR', u'$$ rbox.cmd_if CONDITION', u'echo "hello 3333"']
SSH error.
End Of File (EOF). Exception style platform.
<pexpect.pxssh.pxssh object at 0x96f1b6c>
version: 3.1
command: /usr/bin/ssh
args: ['/usr/bin/ssh', '-q', '-l', 'root', '192.168.0.222']
searcher: <pexpect.searcher_re object at 0x96f186c>
buffer (last 100 chars): ''
before (last 100 chars): ''
after: <class 'pexpect.EOF'>
match: None
match_index: None
exitstatus: None
flag_eof: True
pid: 7302
child_fd: 6
closed: False
timeout: 30
delimiter: <class 'pexpect.EOF'>
logfile: None
logfile_read: None
logfile_send: None
maxread: 2000
ignorecase: False
searchwindowsize: None
delaybeforesend: 0.05
delayafterclose: 0.1
delayafterterminate: 0.1
disconnect user from
[90mGET /halt [32m200 [90m1ms - 2b[0m
[90mPOST /add_script [36m302 [90m13ms - 96b[0m
file sc 2
[90mGET /edit_script/TEST_IF [32m200 [90m108ms - 8.84kb[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 9
*******************************************
[90mPOST /run_shaker/TEST_IF [32m200 [90m1ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/TEST_IF/env.yaml -s /root/sgod/scripts/TEST_IF/shell.sh
===========================================
client connecté
regiser id 10
spawnSTDOUT:[Connected]
registerrr
My ID 10
My father ID 0
console arg
[]
[u'$!+ rbox.cmd_if CC', u'VARIF=100', u'echo "1"', u'$!+ rbox.cmd_if CC', u'echo "2"', u'echo "3"', u'$$ shaker.stop_all', u'$$ sk_console.get VAR', u'$$ rbox.cmd_if CONDITION', u'echo "hello 3333"']
disconnect user from
*******************************************
[90mPOST /run_shaker/TEST_IF [32m200 [90m0ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/TEST_IF/env.yaml -s /root/sgod/scripts/TEST_IF/shell.sh
===========================================
client connecté
regiser id 11
spawnSTDOUT:[Connected]
console arg
[]
registerrr
My ID 11
My father ID 0
[u'$!+ rbox.cmd_if CC', u'VARIF=100', u'echo "1"', u'$!+ rbox.cmd_if CC', u'echo "2"', u'echo "3"', u'$$ shaker.stop_all', u'$$ sk_console.get VAR', u'$$ rbox.cmd_if CONDITION', u'echo "hello 3333"']
disconnect user from
*******************************************
[90mPOST /run_shaker/TEST_IF [32m200 [90m0ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/TEST_IF/env.yaml -s /root/sgod/scripts/TEST_IF/shell.sh
===========================================
client connecté
regiser id 12
spawnSTDOUT:console arg
[]
[Connected]
registerrr
My ID 12
My father ID 0
[u'$!+ rbox.cmd_if CC', u'VARIF=100', u'echo "1"', u'$!+ rbox.cmd_if CC', u'echo "2"', u'echo "3"', u'$$ shaker.stop_all', u'$$ sk_console.get VAR', u'$$ rbox.cmd_if CONDITION', u'echo "hello 3333"']
disconnect user from
connect.multipart() will be removed in connect 3.0
visit https://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives
connect.limit() will be removed in connect 3.0
connect.multipart() will be removed in connect 3.0
visit https://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives
connect.limit() will be removed in connect 3.0
Express server listening on port 3002
client connecté
regiser id 1
[ 'DB:Network_Device:1', 'DB:Network_Device:2' ]
{ id: '1',
hostname: '192.168.0.100',
login: 'cisco',
password: 'cisco',
interface: 'Gi1/0/24',
vlans: '3,145,228',
status: '',
active: 'on',
switchport_mode: 'trunk',
key: 'DB:Network_Device:1' }
{ id: '2',
hostname: '192.168.0.100',
login: 'cisco',
password: 'cisco',
interface: 'Gi1/0/23',
vlans: '3',
status: '',
switchport_mode: 'trunk',
active: 'on',
key: 'DB:Network_Device:2' }
[90mGET /module/Network_Device/view [32m200 [90m424ms - 6.92kb[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m2ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m3ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [36m304 [90m1ms[0m
client connecté
regiser id 2
[90mGET /module/Network_Device/prompt/Push [32m200 [90m26ms - 733b[0m
*******************************************
[90mPOST /run_shaker/Network_Device_pull [32m200 [90m3ms - 7b[0m
/root/sgod/py-sc/shaker.py -x -w -e /root/sgod/scripts/Network_Device_pull/env.yaml -s /root/sgod/scripts/Network_Device_pull/shell.sh
===========================================
client connecté
regiser id 3
spawnSTDOUT:[Connected]
registerrr
My ID 3
My father ID 0
console arg
['1', 'admin', 'admin']
[u'$$ netDevice.push CONF']
disconnect user from
disconnect user from
client connecté
regiser id 4
disconnect user from
client connecté
regiser id 5
disconnect user from
client connecté
regiser id 6
disconnect user from
client connecté
regiser id 7
disconnect user from
client connecté
regiser id 8
client connecté
regiser id 9
disconnect user from
disconnect user from
client connecté
regiser id 10
disconnect user from
client connecté
regiser id 11
disconnect user from
client connecté
regiser id 12
disconnect user from
client connecté
regiser id 13
disconnect user from
client connecté
regiser id 14
disconnect user from
client connecté
regiser id 15
disconnect user from
client connecté
regiser id 16
disconnect user from
client connecté
regiser id 17
disconnect user from
client connecté
regiser id 18
disconnect user from
client connecté
regiser id 19
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect',
'TEST_IF' ]
[90mGET /show_script [36m304 [90m132ms[0m
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m2ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
file sc 2
[90mGET /edit_script/cisco_conf [36m304 [90m107ms[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 20
disconnect user from
file sc 1
[90mGET /edit_script/init_salt [32m200 [90m89ms - 9.19kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 21
disconnect user from
file sc 1
[90mGET /edit_script/script_file [32m200 [90m103ms - 9.28kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m2ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m2ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m2ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 22
client connecté
regiser id 23
disconnect user from
[90mPOST /check_shaker/script_file [32m200 [90m175ms - 475b[0m
[ 'DB:undefined:192.168.0.18',
'DB:undefined:192.168.0.222',
'DB:undefined:192.168.0.155' ]
{ ip: '192.168.0.155',
mac: 'sdfds',
kiki: 'ok',
key: 'DB:undefined:192.168.0.155' }
{ ip: '192.168.0.18',
mac: '8a:1b:6c:d1:6e:79',
kiki: 'kaka',
key: 'DB:undefined:192.168.0.18' }
{ ip: '192.168.0.222',
mac: 'sdfds',
hoho: 'sdfdsf',
kiki: 'kaka',
key: 'DB:undefined:192.168.0.222' }
[90mGET /module/undefined/view [32m200 [90m139ms - 7.92kb[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
client connecté
regiser id 24
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect',
'TEST_IF' ]
[90mGET /show_script [36m304 [90m74ms[0m
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
file sc 2
[90mGET /edit_script/init_salt [36m304 [90m85ms[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 25
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect',
'TEST_IF' ]
[90mGET /show_script [36m304 [90m78ms[0m
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
file sc 1
[90mGET /edit_script/lots_connect [32m200 [90m132ms - 7.92kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 26
disconnect user from
file sc 2
[90mGET /edit_script/lots_connect_lunch [32m200 [90m85ms - 7.86kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 27
disconnect user from
file sc 2
[90mGET /edit_script/delete_salt_curl [32m200 [90m72ms - 7.83kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m4ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m2ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 28
disconnect user from
file sc 2
[90mGET /edit_script/TEST_IF [36m304 [90m73ms[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 29
disconnect user from
file sc 2
[90mGET /edit_script/Proxmox_create_vm [32m200 [90m107ms - 9.75kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m1ms[0m
client connecté
regiser id 30
disconnect user from
file sc 2
[90mGET /edit_script/Manage_vm_slat_accept_key [32m200 [90m106ms - 9.18kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 31
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect',
'TEST_IF' ]
[90mGET /show_script [36m304 [90m69ms[0m
[ 'DCM4CHEE_INSTALL',
'Manage_vm_conf_salt',
'Manage_vm_slat_accept_key',
'Manage_vm_start_vm',
'Manage_vm_update_dhcp',
'Network_Device_pull',
'Proxmox_create_vm',
'TEST_IF',
'cisco_conf',
'delete_salt_curl',
'generate_module_form',
'generate_module_view_and_form',
'generate_shaker_layout_for_modules',
'init_salt',
'initialise_vm_from_0',
'lots_connect',
'lots_connect_lunch',
'script_file',
'test_echo',
'test_expect' ]
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
file sc 2
[90mGET /edit_script/Manage_vm_conf_salt [32m200 [90m90ms - 9.9kb[0m
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m3ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m3ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/theme-monokai.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-sh.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/mode-python.js [36m304 [90m0ms[0m
client connecté
regiser id 32
[ 'DB:CRON_JOB:1' ]
{ id: '1',
cron: '1 1 * * *',
script: 'ping_vms',
argv: 'Manage_vm',
status: '',
desc: 'pinger les vm et les relancer en cas d\'echecs',
key: 'DB:CRON_JOB:1' }
[90mGET /module/CRON_JOB/view [36m304 [90m82ms[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m1ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m1ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m1ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [36m304 [90m0ms[0m
client connecté
regiser id 33
[ 'DB:Manage_DHCP:192.168.0.222',
'DB:Manage_DHCP:192.168.0.111' ]
{ ip: '192.168.0.111',
mac: '8a:1b:6c:d1:6e:82',
area: 'ircad',
key: 'DB:Manage_DHCP:192.168.0.111' }
{ ip: '192.168.0.222',
mac: '8a:1b:6c:d1:6e:79',
area: 'ircad',
key: 'DB:Manage_DHCP:192.168.0.222' }
[90mGET /module/Manage_DHCP/view [36m304 [90m96ms[0m
disconnect user from
[90mGET /bootstrap/css/bootstrap.min.css [36m304 [90m1ms[0m
[90mGET /bootstrap/css/bootstrap-theme.min.css [36m304 [90m0ms[0m
[90mGET /bootstrap/css/dashboard.css [36m304 [90m0ms[0m
[90mGET /bootstrap/js/bootstrap.min.js [36m304 [90m0ms[0m
[90mGET /ace/src-min-noconflict/ace.js [36m304 [90m0ms[0m
[90mGET /bootstrap/fonts/glyphicons-halflings-regular.woff [36m304 [90m0ms[0m
client connecté
regiser id 34
[ 'DB:Manage_vm:192.168.0.157',
'DB:Manage_vm:192.168.0.155',
'DB:Manage_vm:192.168.0.144',
'DB:Manage_vm:192.168.0.158',
'DB:Manage_vm:192.168.0.159',
'DB:Manage_vm:192.168.0.168',
'DB:Manage_vm:192.168.0.171',
'DB:Manage_vm:192.168.0.172',
'DB:Manage_vm:192.168.0.160',
'DB:Manage_vm:192.168.0.173',
'DB:Manage_vm:192.168.0.37',