Newer
Older
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
594998093 2020-07-17 17:01:33.595 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 89.13598879059153}
1594998096 2020-07-17 17:01:36.383 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998119 2020-07-17 17:01:59.760 INFO TestAgent Got mqtt message: stop
1594998119 2020-07-17 17:01:59.780 INFO TestAgent Test finished
1594998119 2020-07-17 17:01:59.789 INFO TestAgent Terminated iwevent
1594998119 2020-07-17 17:01:59.800 INFO TestAgent Terminated mqtt file
1594998119 2020-07-17 17:01:59.811 INFO TestAgent Closed rssi file
1594998119 2020-07-17 17:01:59.826 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (29359).
Exiting ovsdb-server (29346).
1594998120 2020-07-17 17:02:00.281 INFO TestAgent Reset wifi
1594998121 2020-07-17 17:02:01.308 INFO TestAgent iw sta0 connect ap1-train 5260
1594998121 2020-07-17 17:02:01.327 INFO TestAgent Done
1594998163 2020-07-17 17:02:43.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998168 2020-07-17 17:02:48.504 INFO TestAgent Got mqtt message: starttest-1594998122
1594998168 2020-07-17 17:02:48.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998168 2020-07-17 17:02:48.793 INFO TestAgent Starting Test
1594998168 2020-07-17 17:02:48.797 INFO TestAgent Create: /testdata/1594998122/
1594998175 2020-07-17 17:02:55.598 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 88.91364905119569}
1594998178 2020-07-17 17:02:58.394 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998201 2020-07-17 17:03:21.404 INFO TestAgent Got mqtt message: stop
1594998201 2020-07-17 17:03:21.407 INFO TestAgent Test finished
1594998201 2020-07-17 17:03:21.414 INFO TestAgent Terminated iwevent
1594998201 2020-07-17 17:03:21.418 INFO TestAgent Terminated mqtt file
1594998201 2020-07-17 17:03:21.422 INFO TestAgent Closed rssi file
1594998201 2020-07-17 17:03:21.430 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (29653).
Exiting ovsdb-server (29640).
1594998201 2020-07-17 17:03:21.828 INFO TestAgent Reset wifi
1594998202 2020-07-17 17:03:22.856 INFO TestAgent iw sta0 connect ap1-train 5260
1594998202 2020-07-17 17:03:22.874 INFO TestAgent Done
1594998236 2020-07-17 17:03:56.992 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998241 2020-07-17 17:04:01.994 INFO TestAgent Got mqtt message: starttest--ping-1594998204
1594998241 2020-07-17 17:04:01.997 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998242 2020-07-17 17:04:02.222 INFO TestAgent Starting Test
1594998242 2020-07-17 17:04:02.229 INFO TestAgent Create: /testdata/1594998204/
1594998249 2020-07-17 17:04:09.045 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 90.26099719265035}
1594998275 2020-07-17 17:04:35.281 INFO TestAgent Got mqtt message: stop
1594998275 2020-07-17 17:04:35.296 INFO TestAgent Test finished
1594998275 2020-07-17 17:04:35.300 INFO TestAgent Terminated iwevent
1594998275 2020-07-17 17:04:35.304 INFO TestAgent Terminated mqtt file
1594998275 2020-07-17 17:04:35.309 INFO TestAgent Closed rssi file
1594998275 2020-07-17 17:04:35.317 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (29943).
Exiting ovsdb-server (29928).
1594998275 2020-07-17 17:04:35.718 INFO TestAgent Reset wifi
1594998276 2020-07-17 17:04:36.745 INFO TestAgent iw sta0 connect ap1-train 5260
1594998276 2020-07-17 17:04:36.763 INFO TestAgent Done
1594998311 2020-07-17 17:05:11.006 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998316 2020-07-17 17:05:16.018 INFO TestAgent Got mqtt message: starttest-1594998278
1594998316 2020-07-17 17:05:16.023 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998316 2020-07-17 17:05:16.304 INFO TestAgent Starting Test
1594998316 2020-07-17 17:05:16.307 INFO TestAgent Create: /testdata/1594998278/
1594998323 2020-07-17 17:05:23.144 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 89.73105425577164}
1594998349 2020-07-17 17:05:49.422 INFO TestAgent Got mqtt message: stop
1594998349 2020-07-17 17:05:49.426 INFO TestAgent Test finished
1594998349 2020-07-17 17:05:49.431 INFO TestAgent Terminated iwevent
1594998349 2020-07-17 17:05:49.434 INFO TestAgent Terminated mqtt file
1594998349 2020-07-17 17:05:49.438 INFO TestAgent Closed rssi file
1594998349 2020-07-17 17:05:49.448 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (30225).
Exiting ovsdb-server (30210).
1594998349 2020-07-17 17:05:49.886 INFO TestAgent Reset wifi
1594998350 2020-07-17 17:05:50.912 INFO TestAgent iw sta0 connect ap1-train 5260
1594998350 2020-07-17 17:05:50.931 INFO TestAgent Done
1594998393 2020-07-17 17:06:33.509 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998398 2020-07-17 17:06:38.514 INFO TestAgent Got mqtt message: starttest--ping-1594998352
1594998398 2020-07-17 17:06:38.518 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998398 2020-07-17 17:06:38.749 INFO TestAgent Starting Test
1594998398 2020-07-17 17:06:38.751 INFO TestAgent Create: /testdata/1594998352/
1594998405 2020-07-17 17:06:45.554 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 89.87528040081801}
1594998408 2020-07-17 17:06:48.315 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998431 2020-07-17 17:07:11.750 INFO TestAgent Got mqtt message: stop
1594998431 2020-07-17 17:07:11.754 INFO TestAgent Test finished
1594998431 2020-07-17 17:07:11.758 INFO TestAgent Terminated iwevent
1594998431 2020-07-17 17:07:11.763 INFO TestAgent Terminated mqtt file
1594998431 2020-07-17 17:07:11.766 INFO TestAgent Closed rssi file
1594998431 2020-07-17 17:07:11.773 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (30509).
Exiting ovsdb-server (30494).
1594998432 2020-07-17 17:07:12.286 INFO TestAgent Reset wifi
1594998433 2020-07-17 17:07:13.312 INFO TestAgent iw sta0 connect ap1-train 5260
1594998433 2020-07-17 17:07:13.330 INFO TestAgent Done
1594998475 2020-07-17 17:07:55.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998480 2020-07-17 17:08:00.504 INFO TestAgent Got mqtt message: starttest-1594998434
1594998480 2020-07-17 17:08:00.507 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998480 2020-07-17 17:08:00.729 INFO TestAgent Starting Test
1594998480 2020-07-17 17:08:00.736 INFO TestAgent Create: /testdata/1594998434/
1594998487 2020-07-17 17:08:07.609 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 89.04570818550154}
1594998490 2020-07-17 17:08:10.398 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998513 2020-07-17 17:08:33.733 INFO TestAgent Got mqtt message: stop
1594998513 2020-07-17 17:08:33.736 INFO TestAgent Test finished
1594998513 2020-07-17 17:08:33.741 INFO TestAgent Terminated iwevent
1594998513 2020-07-17 17:08:33.745 INFO TestAgent Terminated mqtt file
1594998513 2020-07-17 17:08:33.748 INFO TestAgent Closed rssi file
1594998513 2020-07-17 17:08:33.759 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (30808).
Exiting ovsdb-server (30795).
1594998514 2020-07-17 17:08:34.164 INFO TestAgent Reset wifi
1594998515 2020-07-17 17:08:35.191 INFO TestAgent iw sta0 connect ap1-train 5260
1594998515 2020-07-17 17:08:35.210 INFO TestAgent Done
1594998549 2020-07-17 17:09:09.178 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998554 2020-07-17 17:09:14.183 INFO TestAgent Got mqtt message: starttest--ping-1594998516
1594998554 2020-07-17 17:09:14.187 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998554 2020-07-17 17:09:14.424 INFO TestAgent Starting Test
1594998554 2020-07-17 17:09:14.428 INFO TestAgent Create: /testdata/1594998516/
1594998560 2020-07-17 17:09:20.716 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.5569414959752}
1594998584 2020-07-17 17:09:44.430 INFO TestAgent Got mqtt message: stop
1594998584 2020-07-17 17:09:44.433 INFO TestAgent Test finished
1594998584 2020-07-17 17:09:44.437 INFO TestAgent Terminated iwevent
1594998584 2020-07-17 17:09:44.441 INFO TestAgent Terminated mqtt file
1594998584 2020-07-17 17:09:44.444 INFO TestAgent Closed rssi file
1594998584 2020-07-17 17:09:44.452 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (31110).
Exiting ovsdb-server (31095).
1594998584 2020-07-17 17:09:44.906 INFO TestAgent Reset wifi
1594998585 2020-07-17 17:09:45.933 INFO TestAgent iw sta0 connect ap1-train 5260
1594998585 2020-07-17 17:09:45.952 INFO TestAgent Done
1594998620 2020-07-17 17:10:20.062 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998625 2020-07-17 17:10:25.071 INFO TestAgent Got mqtt message: starttest-1594998587
1594998625 2020-07-17 17:10:25.075 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998625 2020-07-17 17:10:25.331 INFO TestAgent Starting Test
1594998625 2020-07-17 17:10:25.335 INFO TestAgent Create: /testdata/1594998587/
1594998631 2020-07-17 17:10:31.603 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.87894873237424}
1594998655 2020-07-17 17:10:55.097 INFO TestAgent Got mqtt message: stop
1594998655 2020-07-17 17:10:55.101 INFO TestAgent Test finished
1594998655 2020-07-17 17:10:55.107 INFO TestAgent Terminated iwevent
1594998655 2020-07-17 17:10:55.111 INFO TestAgent Terminated mqtt file
1594998655 2020-07-17 17:10:55.115 INFO TestAgent Closed rssi file
1594998655 2020-07-17 17:10:55.123 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (31386).
Exiting ovsdb-server (31371).
1594998655 2020-07-17 17:10:55.530 INFO TestAgent Reset wifi
1594998656 2020-07-17 17:10:56.558 INFO TestAgent iw sta0 connect ap1-train 5260
1594998656 2020-07-17 17:10:56.582 INFO TestAgent Done
1594998698 2020-07-17 17:11:38.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998703 2020-07-17 17:11:43.503 INFO TestAgent Got mqtt message: starttest--ping-1594998657
1594998703 2020-07-17 17:11:43.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998703 2020-07-17 17:11:43.742 INFO TestAgent Starting Test
1594998703 2020-07-17 17:11:43.745 INFO TestAgent Create: /testdata/1594998657/
1594998710 2020-07-17 17:11:50.034 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.47272897677949}
1594998712 2020-07-17 17:11:52.410 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998733 2020-07-17 17:12:13.048 INFO TestAgent Got mqtt message: stop
1594998733 2020-07-17 17:12:13.051 INFO TestAgent Test finished
1594998733 2020-07-17 17:12:13.059 INFO TestAgent Terminated iwevent
1594998733 2020-07-17 17:12:13.062 INFO TestAgent Terminated mqtt file
1594998733 2020-07-17 17:12:13.066 INFO TestAgent Closed rssi file
1594998733 2020-07-17 17:12:13.074 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (31668).
Exiting ovsdb-server (31653).
1594998733 2020-07-17 17:12:13.476 INFO TestAgent Reset wifi
1594998734 2020-07-17 17:12:14.502 INFO TestAgent iw sta0 connect ap1-train 5260
1594998734 2020-07-17 17:12:14.521 INFO TestAgent Done
1594998776 2020-07-17 17:12:56.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998781 2020-07-17 17:13:01.498 INFO TestAgent Got mqtt message: starttest-1594998735
1594998781 2020-07-17 17:13:01.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998781 2020-07-17 17:13:01.881 INFO TestAgent Starting Test
1594998781 2020-07-17 17:13:01.890 INFO TestAgent Create: /testdata/1594998735/
1594998788 2020-07-17 17:13:08.054 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.25605590247065}
1594998790 2020-07-17 17:13:10.436 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594998811 2020-07-17 17:13:31.435 INFO TestAgent Got mqtt message: stop
1594998811 2020-07-17 17:13:31.438 INFO TestAgent Test finished
1594998811 2020-07-17 17:13:31.443 INFO TestAgent Terminated iwevent
1594998811 2020-07-17 17:13:31.447 INFO TestAgent Terminated mqtt file
1594998811 2020-07-17 17:13:31.451 INFO TestAgent Closed rssi file
1594998811 2020-07-17 17:13:31.459 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (31957).
Exiting ovsdb-server (31944).
1594998812 2020-07-17 17:13:32.030 INFO TestAgent Reset wifi
1594998813 2020-07-17 17:13:33.057 INFO TestAgent iw sta0 connect ap1-train 5260
1594998813 2020-07-17 17:13:33.093 INFO TestAgent Done
1594998846 2020-07-17 17:14:06.650 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998851 2020-07-17 17:14:11.656 INFO TestAgent Got mqtt message: starttest--ping-1594998813
1594998851 2020-07-17 17:14:11.659 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998851 2020-07-17 17:14:11.893 INFO TestAgent Starting Test
1594998851 2020-07-17 17:14:11.897 INFO TestAgent Create: /testdata/1594998813/
1594998858 2020-07-17 17:14:18.184 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.19750881195787}
1594998881 2020-07-17 17:14:41.590 INFO TestAgent Got mqtt message: stop
1594998881 2020-07-17 17:14:41.593 INFO TestAgent Test finished
1594998881 2020-07-17 17:14:41.599 INFO TestAgent Terminated iwevent
1594998881 2020-07-17 17:14:41.602 INFO TestAgent Terminated mqtt file
1594998881 2020-07-17 17:14:41.606 INFO TestAgent Closed rssi file
1594998881 2020-07-17 17:14:41.617 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (32237).
Exiting ovsdb-server (32224).
1594998882 2020-07-17 17:14:42.068 INFO TestAgent Reset wifi
1594998883 2020-07-17 17:14:43.096 INFO TestAgent iw sta0 connect ap1-train 5260
1594998883 2020-07-17 17:14:43.114 INFO TestAgent Done
1594998917 2020-07-17 17:15:17.307 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594998922 2020-07-17 17:15:22.315 INFO TestAgent Got mqtt message: starttest-1594998884
1594998922 2020-07-17 17:15:22.318 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594998922 2020-07-17 17:15:22.574 INFO TestAgent Starting Test
1594998922 2020-07-17 17:15:22.582 INFO TestAgent Create: /testdata/1594998884/
1594998928 2020-07-17 17:15:28.875 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.79677501173964}
1594998952 2020-07-17 17:15:52.174 INFO TestAgent Got mqtt message: stop
1594998952 2020-07-17 17:15:52.178 INFO TestAgent Test finished
1594998952 2020-07-17 17:15:52.183 INFO TestAgent Terminated iwevent
1594998952 2020-07-17 17:15:52.187 INFO TestAgent Terminated mqtt file
1594998952 2020-07-17 17:15:52.191 INFO TestAgent Closed rssi file
1594998952 2020-07-17 17:15:52.198 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (32516).
Exiting ovsdb-server (32501).
1594998952 2020-07-17 17:15:52.598 INFO TestAgent Reset wifi
1594998953 2020-07-17 17:15:53.626 INFO TestAgent iw sta0 connect ap1-train 5260
1594998953 2020-07-17 17:15:53.663 INFO TestAgent Done
1594999005 2020-07-17 17:16:45.658 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999010 2020-07-17 17:16:50.664 INFO TestAgent Got mqtt message: starttest--ping-1594998954
1594999010 2020-07-17 17:16:50.667 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999010 2020-07-17 17:16:50.900 INFO TestAgent Starting Test
1594999010 2020-07-17 17:16:50.903 INFO TestAgent Create: /testdata/1594998954/
1594999017 2020-07-17 17:16:57.201 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.61011041154975}
1594999019 2020-07-17 17:16:59.577 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999040 2020-07-17 17:17:20.541 INFO TestAgent Got mqtt message: stop
1594999040 2020-07-17 17:17:20.548 INFO TestAgent Test finished
1594999040 2020-07-17 17:17:20.559 INFO TestAgent Terminated iwevent
1594999040 2020-07-17 17:17:20.563 INFO TestAgent Terminated mqtt file
1594999040 2020-07-17 17:17:20.576 INFO TestAgent Closed rssi file
1594999040 2020-07-17 17:17:20.589 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (328).
Exiting ovsdb-server (313).
1594999040 2020-07-17 17:17:20.991 INFO TestAgent Reset wifi
1594999042 2020-07-17 17:17:22.019 INFO TestAgent iw sta0 connect ap1-train 5260
1594999042 2020-07-17 17:17:22.037 INFO TestAgent Done
1594999084 2020-07-17 17:18:04.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999089 2020-07-17 17:18:09.509 INFO TestAgent Got mqtt message: starttest-1594999043
1594999089 2020-07-17 17:18:09.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999089 2020-07-17 17:18:09.893 INFO TestAgent Starting Test
1594999089 2020-07-17 17:18:09.897 INFO TestAgent Create: /testdata/1594999043/
1594999096 2020-07-17 17:18:16.006 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.83115916151914}
1594999098 2020-07-17 17:18:18.364 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999119 2020-07-17 17:18:39.325 INFO TestAgent Got mqtt message: stop
1594999119 2020-07-17 17:18:39.328 INFO TestAgent Test finished
1594999119 2020-07-17 17:18:39.333 INFO TestAgent Terminated iwevent
1594999119 2020-07-17 17:18:39.336 INFO TestAgent Terminated mqtt file
1594999119 2020-07-17 17:18:39.341 INFO TestAgent Closed rssi file
1594999119 2020-07-17 17:18:39.349 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (654).
Exiting ovsdb-server (641).
1594999119 2020-07-17 17:18:39.795 INFO TestAgent Reset wifi
1594999120 2020-07-17 17:18:40.822 INFO TestAgent iw sta0 connect ap1-train 5260
1594999120 2020-07-17 17:18:40.840 INFO TestAgent Done
1594999154 2020-07-17 17:19:14.783 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999159 2020-07-17 17:19:19.789 INFO TestAgent Got mqtt message: starttest--ping-1594999121
1594999159 2020-07-17 17:19:19.792 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999160 2020-07-17 17:19:20.022 INFO TestAgent Starting Test
1594999160 2020-07-17 17:19:20.025 INFO TestAgent Create: /testdata/1594999121/
1594999166 2020-07-17 17:19:26.316 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.70306731506096}
1594999189 2020-07-17 17:19:49.275 INFO TestAgent Got mqtt message: stop
1594999189 2020-07-17 17:19:49.279 INFO TestAgent Test finished
1594999189 2020-07-17 17:19:49.284 INFO TestAgent Terminated iwevent
1594999189 2020-07-17 17:19:49.287 INFO TestAgent Terminated mqtt file
1594999189 2020-07-17 17:19:49.293 INFO TestAgent Closed rssi file
1594999189 2020-07-17 17:19:49.301 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (947).
Exiting ovsdb-server (934).
1594999189 2020-07-17 17:19:49.798 INFO TestAgent Reset wifi
1594999190 2020-07-17 17:19:50.825 INFO TestAgent iw sta0 connect ap1-train 5260
1594999190 2020-07-17 17:19:50.844 INFO TestAgent Done
1594999224 2020-07-17 17:20:24.607 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999229 2020-07-17 17:20:29.616 INFO TestAgent Got mqtt message: starttest-1594999191
1594999229 2020-07-17 17:20:29.620 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999229 2020-07-17 17:20:29.880 INFO TestAgent Starting Test
1594999229 2020-07-17 17:20:29.888 INFO TestAgent Create: /testdata/1594999191/
1594999236 2020-07-17 17:20:36.175 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.43291012571761}
1594999259 2020-07-17 17:20:59.338 INFO TestAgent Got mqtt message: stop
1594999259 2020-07-17 17:20:59.342 INFO TestAgent Test finished
1594999259 2020-07-17 17:20:59.347 INFO TestAgent Terminated iwevent
1594999259 2020-07-17 17:20:59.351 INFO TestAgent Terminated mqtt file
1594999259 2020-07-17 17:20:59.355 INFO TestAgent Closed rssi file
1594999259 2020-07-17 17:20:59.363 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (1222).
Exiting ovsdb-server (1209).
1594999259 2020-07-17 17:20:59.778 INFO TestAgent Reset wifi
1594999260 2020-07-17 17:21:00.836 INFO TestAgent iw sta0 connect ap1-train 5260
1594999260 2020-07-17 17:21:00.873 INFO TestAgent Done
1594999302 2020-07-17 17:21:42.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999307 2020-07-17 17:21:47.501 INFO TestAgent Got mqtt message: starttest--ping-1594999261
1594999307 2020-07-17 17:21:47.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999307 2020-07-17 17:21:47.797 INFO TestAgent Starting Test
1594999307 2020-07-17 17:21:47.800 INFO TestAgent Create: /testdata/1594999261/
1594999314 2020-07-17 17:21:54.202 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.23283135612273}
1594999316 2020-07-17 17:21:56.596 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999337 2020-07-17 17:22:17.628 INFO TestAgent Got mqtt message: stop
1594999337 2020-07-17 17:22:17.632 INFO TestAgent Test finished
1594999337 2020-07-17 17:22:17.636 INFO TestAgent Terminated iwevent
1594999337 2020-07-17 17:22:17.640 INFO TestAgent Terminated mqtt file
1594999337 2020-07-17 17:22:17.644 INFO TestAgent Closed rssi file
1594999337 2020-07-17 17:22:17.652 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (1508).
Exiting ovsdb-server (1493).
1594999338 2020-07-17 17:22:18.100 INFO TestAgent Reset wifi
1594999339 2020-07-17 17:22:19.127 INFO TestAgent iw sta0 connect ap1-train 5260
1594999339 2020-07-17 17:22:19.146 INFO TestAgent Done
1594999381 2020-07-17 17:23:01.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999386 2020-07-17 17:23:06.503 INFO TestAgent Got mqtt message: starttest-1594999340
1594999386 2020-07-17 17:23:06.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999386 2020-07-17 17:23:06.744 INFO TestAgent Starting Test
1594999386 2020-07-17 17:23:06.748 INFO TestAgent Create: /testdata/1594999340/
1594999393 2020-07-17 17:23:13.040 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.51730883216557}
1594999395 2020-07-17 17:23:15.418 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999416 2020-07-17 17:23:36.314 INFO TestAgent Got mqtt message: stop
1594999416 2020-07-17 17:23:36.316 INFO TestAgent Test finished
1594999416 2020-07-17 17:23:36.323 INFO TestAgent Terminated iwevent
1594999416 2020-07-17 17:23:36.327 INFO TestAgent Terminated mqtt file
1594999416 2020-07-17 17:23:36.331 INFO TestAgent Closed rssi file
1594999416 2020-07-17 17:23:36.339 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (1801).
Exiting ovsdb-server (1788).
1594999416 2020-07-17 17:23:36.792 INFO TestAgent Reset wifi
1594999417 2020-07-17 17:23:37.819 INFO TestAgent iw sta0 connect ap1-train 5260
1594999417 2020-07-17 17:23:37.838 INFO TestAgent Done
1594999451 2020-07-17 17:24:11.999 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999457 2020-07-17 17:24:17.014 INFO TestAgent Got mqtt message: starttest--ping-1594999419
1594999457 2020-07-17 17:24:17.018 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999457 2020-07-17 17:24:17.243 INFO TestAgent Starting Test
1594999457 2020-07-17 17:24:17.247 INFO TestAgent Create: /testdata/1594999419/
1594999463 2020-07-17 17:24:23.585 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.22839195809046}
1594999486 2020-07-17 17:24:46.774 INFO TestAgent Got mqtt message: stop
1594999486 2020-07-17 17:24:46.778 INFO TestAgent Test finished
1594999486 2020-07-17 17:24:46.783 INFO TestAgent Terminated iwevent
1594999486 2020-07-17 17:24:46.786 INFO TestAgent Terminated mqtt file
1594999486 2020-07-17 17:24:46.790 INFO TestAgent Closed rssi file
1594999486 2020-07-17 17:24:46.798 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (2087).
Exiting ovsdb-server (2074).
1594999487 2020-07-17 17:24:47.349 INFO TestAgent Reset wifi
1594999488 2020-07-17 17:24:48.376 INFO TestAgent iw sta0 connect ap1-train 5260
1594999488 2020-07-17 17:24:48.395 INFO TestAgent Done
1594999522 2020-07-17 17:25:22.336 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999527 2020-07-17 17:25:27.345 INFO TestAgent Got mqtt message: starttest-1594999489
1594999527 2020-07-17 17:25:27.348 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999527 2020-07-17 17:25:27.600 INFO TestAgent Starting Test
1594999527 2020-07-17 17:25:27.610 INFO TestAgent Create: /testdata/1594999489/
1594999533 2020-07-17 17:25:33.867 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.09111966428166}
1594999557 2020-07-17 17:25:57.463 INFO TestAgent Got mqtt message: stop
1594999557 2020-07-17 17:25:57.473 INFO TestAgent Test finished
1594999557 2020-07-17 17:25:57.477 INFO TestAgent Terminated iwevent
1594999557 2020-07-17 17:25:57.483 INFO TestAgent Terminated mqtt file
1594999557 2020-07-17 17:25:57.494 INFO TestAgent Closed rssi file
1594999557 2020-07-17 17:25:57.501 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (2372).
Exiting ovsdb-server (2359).
1594999558 2020-07-17 17:25:58.012 INFO TestAgent Reset wifi
1594999559 2020-07-17 17:25:59.039 INFO TestAgent iw sta0 connect ap1-train 5260
1594999559 2020-07-17 17:25:59.077 INFO TestAgent Done
1594999600 2020-07-17 17:26:40.505 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999605 2020-07-17 17:26:45.513 INFO TestAgent Got mqtt message: starttest--ping-1594999559
1594999605 2020-07-17 17:26:45.517 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999605 2020-07-17 17:26:45.739 INFO TestAgent Starting Test
1594999605 2020-07-17 17:26:45.742 INFO TestAgent Create: /testdata/1594999559/
1594999612 2020-07-17 17:26:52.046 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.38693324839741}
1594999614 2020-07-17 17:26:54.406 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999635 2020-07-17 17:27:15.158 INFO TestAgent Got mqtt message: stop
1594999635 2020-07-17 17:27:15.161 INFO TestAgent Test finished
1594999635 2020-07-17 17:27:15.167 INFO TestAgent Terminated iwevent
1594999635 2020-07-17 17:27:15.171 INFO TestAgent Terminated mqtt file
1594999635 2020-07-17 17:27:15.176 INFO TestAgent Closed rssi file
1594999635 2020-07-17 17:27:15.186 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (2650).
Exiting ovsdb-server (2637).
1594999635 2020-07-17 17:27:15.688 INFO TestAgent Reset wifi
1594999636 2020-07-17 17:27:16.748 INFO TestAgent iw sta0 connect ap1-train 5260
1594999636 2020-07-17 17:27:16.784 INFO TestAgent Done
1594999678 2020-07-17 17:27:58.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999683 2020-07-17 17:28:03.512 INFO TestAgent Got mqtt message: starttest-1594999637
1594999683 2020-07-17 17:28:03.515 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999683 2020-07-17 17:28:03.736 INFO TestAgent Starting Test
1594999683 2020-07-17 17:28:03.739 INFO TestAgent Create: /testdata/1594999637/
1594999690 2020-07-17 17:28:10.043 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.6814895266824}
1594999692 2020-07-17 17:28:12.384 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999713 2020-07-17 17:28:33.333 INFO TestAgent Got mqtt message: stop
1594999713 2020-07-17 17:28:33.337 INFO TestAgent Test finished
1594999713 2020-07-17 17:28:33.344 INFO TestAgent Terminated iwevent
1594999713 2020-07-17 17:28:33.347 INFO TestAgent Terminated mqtt file
1594999713 2020-07-17 17:28:33.352 INFO TestAgent Closed rssi file
1594999713 2020-07-17 17:28:33.359 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (2934).
Exiting ovsdb-server (2919).
1594999713 2020-07-17 17:28:33.877 INFO TestAgent Reset wifi
1594999714 2020-07-17 17:28:34.904 INFO TestAgent iw sta0 connect ap1-train 5260
1594999714 2020-07-17 17:28:34.928 INFO TestAgent Done
1594999748 2020-07-17 17:29:08.898 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999753 2020-07-17 17:29:13.903 INFO TestAgent Got mqtt message: starttest--ping-1594999716
1594999753 2020-07-17 17:29:13.906 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999754 2020-07-17 17:29:14.138 INFO TestAgent Starting Test
1594999754 2020-07-17 17:29:14.146 INFO TestAgent Create: /testdata/1594999716/
1594999760 2020-07-17 17:29:20.430 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.4251088210053}
1594999783 2020-07-17 17:29:43.676 INFO TestAgent Got mqtt message: stop
1594999783 2020-07-17 17:29:43.679 INFO TestAgent Test finished
1594999783 2020-07-17 17:29:43.684 INFO TestAgent Terminated iwevent
1594999783 2020-07-17 17:29:43.695 INFO TestAgent Terminated mqtt file
1594999783 2020-07-17 17:29:43.699 INFO TestAgent Closed rssi file
1594999783 2020-07-17 17:29:43.709 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (3229).
Exiting ovsdb-server (3216).
1594999784 2020-07-17 17:29:44.107 INFO TestAgent Reset wifi
1594999785 2020-07-17 17:29:45.134 INFO TestAgent iw sta0 connect ap1-train 5260
1594999785 2020-07-17 17:29:45.152 INFO TestAgent Done
1594999819 2020-07-17 17:30:19.461 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999824 2020-07-17 17:30:24.470 INFO TestAgent Got mqtt message: starttest-1594999786
1594999824 2020-07-17 17:30:24.473 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999824 2020-07-17 17:30:24.713 INFO TestAgent Starting Test
1594999824 2020-07-17 17:30:24.721 INFO TestAgent Create: /testdata/1594999786/
1594999831 2020-07-17 17:30:31.021 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.92044004041048}
1594999854 2020-07-17 17:30:54.468 INFO TestAgent Got mqtt message: stop
1594999854 2020-07-17 17:30:54.471 INFO TestAgent Test finished
1594999854 2020-07-17 17:30:54.476 INFO TestAgent Terminated iwevent
1594999854 2020-07-17 17:30:54.480 INFO TestAgent Terminated mqtt file
1594999854 2020-07-17 17:30:54.484 INFO TestAgent Closed rssi file
1594999854 2020-07-17 17:30:54.492 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (3509).
Exiting ovsdb-server (3496).
1594999854 2020-07-17 17:30:54.893 INFO TestAgent Reset wifi
1594999855 2020-07-17 17:30:55.920 INFO TestAgent iw sta0 connect ap1-train 5260
1594999855 2020-07-17 17:30:55.938 INFO TestAgent Done
1594999897 2020-07-17 17:31:37.494 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999902 2020-07-17 17:31:42.500 INFO TestAgent Got mqtt message: starttest--ping-1594999857
1594999902 2020-07-17 17:31:42.509 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999902 2020-07-17 17:31:42.753 INFO TestAgent Starting Test
1594999902 2020-07-17 17:31:42.757 INFO TestAgent Create: /testdata/1594999857/
1594999909 2020-07-17 17:31:49.030 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.4991952126327}
1594999911 2020-07-17 17:31:51.386 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1594999931 2020-07-17 17:32:11.995 INFO TestAgent Got mqtt message: stop
1594999931 2020-07-17 17:32:11.998 INFO TestAgent Test finished
1594999932 2020-07-17 17:32:12.006 INFO TestAgent Terminated iwevent
1594999932 2020-07-17 17:32:12.009 INFO TestAgent Terminated mqtt file
1594999932 2020-07-17 17:32:12.013 INFO TestAgent Closed rssi file
1594999932 2020-07-17 17:32:12.021 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (3783).
Exiting ovsdb-server (3768).
1594999932 2020-07-17 17:32:12.467 INFO TestAgent Reset wifi
1594999933 2020-07-17 17:32:13.494 INFO TestAgent iw sta0 connect ap1-train 5260
1594999933 2020-07-17 17:32:13.513 INFO TestAgent Done
1594999975 2020-07-17 17:32:55.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1594999980 2020-07-17 17:33:00.506 INFO TestAgent Got mqtt message: starttest-1594999934
1594999980 2020-07-17 17:33:00.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1594999980 2020-07-17 17:33:00.738 INFO TestAgent Starting Test
1594999980 2020-07-17 17:33:00.741 INFO TestAgent Create: /testdata/1594999934/
1594999987 2020-07-17 17:33:07.094 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.6495997596944}
1594999989 2020-07-17 17:33:09.490 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000010 2020-07-17 17:33:30.495 INFO TestAgent Got mqtt message: stop
1595000010 2020-07-17 17:33:30.498 INFO TestAgent Test finished
1595000010 2020-07-17 17:33:30.503 INFO TestAgent Terminated iwevent
1595000010 2020-07-17 17:33:30.507 INFO TestAgent Terminated mqtt file
1595000010 2020-07-17 17:33:30.511 INFO TestAgent Closed rssi file
1595000010 2020-07-17 17:33:30.519 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (4067).
Exiting ovsdb-server (4054).
1595000010 2020-07-17 17:33:30.979 INFO TestAgent Reset wifi
1595000012 2020-07-17 17:33:32.006 INFO TestAgent iw sta0 connect ap1-train 5260
1595000012 2020-07-17 17:33:32.043 INFO TestAgent Done
1595000046 2020-07-17 17:34:06.052 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000051 2020-07-17 17:34:11.054 INFO TestAgent Got mqtt message: starttest--ping-1595000013
1595000051 2020-07-17 17:34:11.057 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000051 2020-07-17 17:34:11.286 INFO TestAgent Starting Test
1595000051 2020-07-17 17:34:11.290 INFO TestAgent Create: /testdata/1595000013/
1595000057 2020-07-17 17:34:17.627 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.29446106176883}
1595000080 2020-07-17 17:34:40.844 INFO TestAgent Got mqtt message: stop
1595000080 2020-07-17 17:34:40.848 INFO TestAgent Test finished
1595000080 2020-07-17 17:34:40.852 INFO TestAgent Terminated iwevent
1595000080 2020-07-17 17:34:40.856 INFO TestAgent Terminated mqtt file
1595000080 2020-07-17 17:34:40.860 INFO TestAgent Closed rssi file
1595000080 2020-07-17 17:34:40.868 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (4353).
Exiting ovsdb-server (4338).
1595000081 2020-07-17 17:34:41.376 INFO TestAgent Reset wifi
1595000082 2020-07-17 17:34:42.402 INFO TestAgent iw sta0 connect ap1-train 5260
1595000082 2020-07-17 17:34:42.421 INFO TestAgent Done
1595000116 2020-07-17 17:35:16.738 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000121 2020-07-17 17:35:21.748 INFO TestAgent Got mqtt message: starttest-1595000083
1595000121 2020-07-17 17:35:21.751 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000121 2020-07-17 17:35:21.993 INFO TestAgent Starting Test
1595000122 2020-07-17 17:35:22.001 INFO TestAgent Create: /testdata/1595000083/
1595000128 2020-07-17 17:35:28.320 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.42687395651869}
1595000151 2020-07-17 17:35:51.567 INFO TestAgent Got mqtt message: stop
1595000151 2020-07-17 17:35:51.571 INFO TestAgent Test finished
1595000151 2020-07-17 17:35:51.575 INFO TestAgent Terminated iwevent
1595000151 2020-07-17 17:35:51.579 INFO TestAgent Terminated mqtt file
1595000151 2020-07-17 17:35:51.584 INFO TestAgent Closed rssi file
1595000151 2020-07-17 17:35:51.591 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (4635).
Exiting ovsdb-server (4620).
1595000152 2020-07-17 17:35:52.034 INFO TestAgent Reset wifi
1595000153 2020-07-17 17:35:53.061 INFO TestAgent iw sta0 connect ap1-train 5260
1595000153 2020-07-17 17:35:53.080 INFO TestAgent Done
1595000194 2020-07-17 17:36:34.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000199 2020-07-17 17:36:39.505 INFO TestAgent Got mqtt message: starttest--ping-1595000154
1595000199 2020-07-17 17:36:39.523 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000199 2020-07-17 17:36:39.853 INFO TestAgent Starting Test
1595000199 2020-07-17 17:36:39.856 INFO TestAgent Create: /testdata/1595000154/
1595000206 2020-07-17 17:36:46.058 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.48203331441503}
1595000208 2020-07-17 17:36:48.460 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000229 2020-07-17 17:37:09.209 INFO TestAgent Got mqtt message: stop
1595000229 2020-07-17 17:37:09.212 INFO TestAgent Test finished
1595000229 2020-07-17 17:37:09.217 INFO TestAgent Terminated iwevent
1595000229 2020-07-17 17:37:09.220 INFO TestAgent Terminated mqtt file
1595000229 2020-07-17 17:37:09.225 INFO TestAgent Closed rssi file
1595000229 2020-07-17 17:37:09.235 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (4913).
Exiting ovsdb-server (4900).
1595000229 2020-07-17 17:37:09.689 INFO TestAgent Reset wifi
1595000230 2020-07-17 17:37:10.716 INFO TestAgent iw sta0 connect ap1-train 5260
1595000230 2020-07-17 17:37:10.735 INFO TestAgent Done
1595000272 2020-07-17 17:37:52.500 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000277 2020-07-17 17:37:57.508 INFO TestAgent Got mqtt message: starttest-1595000231
1595000277 2020-07-17 17:37:57.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000277 2020-07-17 17:37:57.738 INFO TestAgent Starting Test
1595000277 2020-07-17 17:37:57.741 INFO TestAgent Create: /testdata/1595000231/
1595000284 2020-07-17 17:38:04.073 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.54659637527554}
1595000286 2020-07-17 17:38:06.463 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000307 2020-07-17 17:38:27.403 INFO TestAgent Got mqtt message: stop
1595000307 2020-07-17 17:38:27.407 INFO TestAgent Test finished
1595000307 2020-07-17 17:38:27.412 INFO TestAgent Terminated iwevent
1595000307 2020-07-17 17:38:27.416 INFO TestAgent Terminated mqtt file
1595000307 2020-07-17 17:38:27.420 INFO TestAgent Closed rssi file
1595000307 2020-07-17 17:38:27.428 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (5203).
Exiting ovsdb-server (5188).
1595000307 2020-07-17 17:38:27.833 INFO TestAgent Reset wifi
1595000308 2020-07-17 17:38:28.861 INFO TestAgent iw sta0 connect ap1-train 5260
1595000308 2020-07-17 17:38:28.880 INFO TestAgent Done
1595000342 2020-07-17 17:39:02.879 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000347 2020-07-17 17:39:07.884 INFO TestAgent Got mqtt message: starttest--ping-1595000310
1595000347 2020-07-17 17:39:07.887 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000348 2020-07-17 17:39:08.109 INFO TestAgent Starting Test
1595000348 2020-07-17 17:39:08.113 INFO TestAgent Create: /testdata/1595000310/
1595000354 2020-07-17 17:39:14.420 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.8797590522536}
1595000377 2020-07-17 17:39:37.538 INFO TestAgent Got mqtt message: stop
1595000377 2020-07-17 17:39:37.544 INFO TestAgent Test finished
1595000377 2020-07-17 17:39:37.549 INFO TestAgent Terminated iwevent
1595000377 2020-07-17 17:39:37.553 INFO TestAgent Terminated mqtt file
1595000377 2020-07-17 17:39:37.557 INFO TestAgent Closed rssi file
1595000377 2020-07-17 17:39:37.565 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (5485).
Exiting ovsdb-server (5470).
1595000378 2020-07-17 17:39:38.062 INFO TestAgent Reset wifi
1595000379 2020-07-17 17:39:39.089 INFO TestAgent iw sta0 connect ap1-train 5260
1595000379 2020-07-17 17:39:39.110 INFO TestAgent Done
1595000412 2020-07-17 17:40:12.895 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000417 2020-07-17 17:40:17.904 INFO TestAgent Got mqtt message: starttest-1595000380
1595000417 2020-07-17 17:40:17.907 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000418 2020-07-17 17:40:18.157 INFO TestAgent Starting Test
1595000418 2020-07-17 17:40:18.161 INFO TestAgent Create: /testdata/1595000380/
1595000424 2020-07-17 17:40:24.439 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.33442272717153}
1595000447 2020-07-17 17:40:47.772 INFO TestAgent Got mqtt message: stop
1595000447 2020-07-17 17:40:47.776 INFO TestAgent Test finished
1595000447 2020-07-17 17:40:47.781 INFO TestAgent Terminated iwevent
1595000447 2020-07-17 17:40:47.784 INFO TestAgent Terminated mqtt file
1595000447 2020-07-17 17:40:47.789 INFO TestAgent Closed rssi file
1595000447 2020-07-17 17:40:47.796 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (5770).
Exiting ovsdb-server (5757).
1595000448 2020-07-17 17:40:48.328 INFO TestAgent Reset wifi
1595000449 2020-07-17 17:40:49.356 INFO TestAgent iw sta0 connect ap1-train 5260
1595000449 2020-07-17 17:40:49.413 INFO TestAgent Done
1595000491 2020-07-17 17:41:31.507 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000496 2020-07-17 17:41:36.517 INFO TestAgent Got mqtt message: starttest--ping-1595000450
1595000496 2020-07-17 17:41:36.522 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000496 2020-07-17 17:41:36.750 INFO TestAgent Starting Test
1595000496 2020-07-17 17:41:36.757 INFO TestAgent Create: /testdata/1595000450/
1595000503 2020-07-17 17:41:43.003 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.38917746914278}
1595000505 2020-07-17 17:41:45.360 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000526 2020-07-17 17:42:06.107 INFO TestAgent Got mqtt message: stop
1595000526 2020-07-17 17:42:06.111 INFO TestAgent Test finished
1595000526 2020-07-17 17:42:06.116 INFO TestAgent Terminated iwevent
1595000526 2020-07-17 17:42:06.119 INFO TestAgent Terminated mqtt file
1595000526 2020-07-17 17:42:06.124 INFO TestAgent Closed rssi file
1595000526 2020-07-17 17:42:06.131 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (6045).
Exiting ovsdb-server (6030).
1595000526 2020-07-17 17:42:06.576 INFO TestAgent Reset wifi
1595000527 2020-07-17 17:42:07.602 INFO TestAgent iw sta0 connect ap1-train 5260
1595000527 2020-07-17 17:42:07.620 INFO TestAgent Done
1595000569 2020-07-17 17:42:49.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000574 2020-07-17 17:42:54.506 INFO TestAgent Got mqtt message: starttest-1595000528
1595000574 2020-07-17 17:42:54.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000574 2020-07-17 17:42:54.733 INFO TestAgent Starting Test
1595000574 2020-07-17 17:42:54.737 INFO TestAgent Create: /testdata/1595000528/
1595000581 2020-07-17 17:43:01.066 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.18496345779108}
1595000583 2020-07-17 17:43:03.475 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000604 2020-07-17 17:43:24.188 INFO TestAgent Got mqtt message: stop
1595000604 2020-07-17 17:43:24.191 INFO TestAgent Test finished
1595000604 2020-07-17 17:43:24.196 INFO TestAgent Terminated iwevent
1595000604 2020-07-17 17:43:24.200 INFO TestAgent Terminated mqtt file
1595000604 2020-07-17 17:43:24.204 INFO TestAgent Closed rssi file
1595000604 2020-07-17 17:43:24.212 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (6329).
Exiting ovsdb-server (6316).
1595000604 2020-07-17 17:43:24.662 INFO TestAgent Reset wifi
1595000605 2020-07-17 17:43:25.690 INFO TestAgent iw sta0 connect ap1-train 5260
1595000605 2020-07-17 17:43:25.716 INFO TestAgent Done
1595000639 2020-07-17 17:43:59.596 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000644 2020-07-17 17:44:04.601 INFO TestAgent Got mqtt message: starttest--ping-1595000606
1595000644 2020-07-17 17:44:04.604 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000644 2020-07-17 17:44:04.843 INFO TestAgent Starting Test
1595000644 2020-07-17 17:44:04.846 INFO TestAgent Create: /testdata/1595000606/
1595000651 2020-07-17 17:44:11.139 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.60920580108888}
1595000674 2020-07-17 17:44:34.279 INFO TestAgent Got mqtt message: stop
1595000674 2020-07-17 17:44:34.283 INFO TestAgent Test finished
1595000674 2020-07-17 17:44:34.288 INFO TestAgent Terminated iwevent
1595000674 2020-07-17 17:44:34.291 INFO TestAgent Terminated mqtt file
1595000674 2020-07-17 17:44:34.295 INFO TestAgent Closed rssi file
1595000674 2020-07-17 17:44:34.303 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (6611).
Exiting ovsdb-server (6596).
1595000674 2020-07-17 17:44:34.707 INFO TestAgent Reset wifi
1595000675 2020-07-17 17:44:35.735 INFO TestAgent iw sta0 connect ap1-train 5260
1595000675 2020-07-17 17:44:35.754 INFO TestAgent Done
1595000709 2020-07-17 17:45:09.760 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000714 2020-07-17 17:45:14.768 INFO TestAgent Got mqtt message: starttest-1595000677
1595000714 2020-07-17 17:45:14.772 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000714 2020-07-17 17:45:14.993 INFO TestAgent Starting Test
1595000714 2020-07-17 17:45:14.996 INFO TestAgent Create: /testdata/1595000677/
1595000721 2020-07-17 17:45:21.407 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.69873705497837}
1595000744 2020-07-17 17:45:44.760 INFO TestAgent Got mqtt message: stop
1595000744 2020-07-17 17:45:44.764 INFO TestAgent Test finished
1595000744 2020-07-17 17:45:44.769 INFO TestAgent Terminated iwevent
1595000744 2020-07-17 17:45:44.772 INFO TestAgent Terminated mqtt file
1595000744 2020-07-17 17:45:44.776 INFO TestAgent Closed rssi file
1595000744 2020-07-17 17:45:44.786 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (6887).
Exiting ovsdb-server (6872).
1595000745 2020-07-17 17:45:45.240 INFO TestAgent Reset wifi
1595000746 2020-07-17 17:45:46.267 INFO TestAgent iw sta0 connect ap1-train 5260
1595000746 2020-07-17 17:45:46.307 INFO TestAgent Done
1595000787 2020-07-17 17:46:27.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000792 2020-07-17 17:46:32.506 INFO TestAgent Got mqtt message: starttest--ping-1595000747
1595000792 2020-07-17 17:46:32.509 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000792 2020-07-17 17:46:32.737 INFO TestAgent Starting Test
1595000792 2020-07-17 17:46:32.741 INFO TestAgent Create: /testdata/1595000747/
1595000799 2020-07-17 17:46:39.050 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.03842576742164}
1595000801 2020-07-17 17:46:41.438 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000822 2020-07-17 17:47:02.464 INFO TestAgent Got mqtt message: stop
1595000822 2020-07-17 17:47:02.467 INFO TestAgent Test finished
1595000822 2020-07-17 17:47:02.472 INFO TestAgent Terminated iwevent
1595000822 2020-07-17 17:47:02.476 INFO TestAgent Terminated mqtt file
1595000822 2020-07-17 17:47:02.480 INFO TestAgent Closed rssi file
1595000822 2020-07-17 17:47:02.490 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (7165).
Exiting ovsdb-server (7152).
1595000822 2020-07-17 17:47:02.896 INFO TestAgent Reset wifi
1595000823 2020-07-17 17:47:03.922 INFO TestAgent iw sta0 connect ap1-train 5260
1595000823 2020-07-17 17:47:03.941 INFO TestAgent Done
1595000865 2020-07-17 17:47:45.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000870 2020-07-17 17:47:50.503 INFO TestAgent Got mqtt message: starttest-1595000825
1595000870 2020-07-17 17:47:50.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000870 2020-07-17 17:47:50.736 INFO TestAgent Starting Test
1595000870 2020-07-17 17:47:50.738 INFO TestAgent Create: /testdata/1595000825/
1595000877 2020-07-17 17:47:57.064 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.11302872871157}
1595000879 2020-07-17 17:47:59.452 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595000900 2020-07-17 17:48:20.670 INFO TestAgent Got mqtt message: stop
1595000900 2020-07-17 17:48:20.674 INFO TestAgent Test finished
1595000900 2020-07-17 17:48:20.679 INFO TestAgent Terminated iwevent
1595000900 2020-07-17 17:48:20.682 INFO TestAgent Terminated mqtt file
1595000900 2020-07-17 17:48:20.687 INFO TestAgent Closed rssi file
1595000900 2020-07-17 17:48:20.694 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (7456).
Exiting ovsdb-server (7441).
1595000901 2020-07-17 17:48:21.091 INFO TestAgent Reset wifi
1595000902 2020-07-17 17:48:22.118 INFO TestAgent iw sta0 connect ap1-train 5260
1595000902 2020-07-17 17:48:22.143 INFO TestAgent Done
1595000936 2020-07-17 17:48:56.256 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595000941 2020-07-17 17:49:01.261 INFO TestAgent Got mqtt message: starttest--ping-1595000903
1595000941 2020-07-17 17:49:01.265 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595000941 2020-07-17 17:49:01.494 INFO TestAgent Starting Test
1595000941 2020-07-17 17:49:01.496 INFO TestAgent Create: /testdata/1595000903/
1595000947 2020-07-17 17:49:07.862 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.9520175332561}
1595000971 2020-07-17 17:49:31.096 INFO TestAgent Got mqtt message: stop
1595000971 2020-07-17 17:49:31.099 INFO TestAgent Test finished
1595000971 2020-07-17 17:49:31.104 INFO TestAgent Terminated iwevent
1595000971 2020-07-17 17:49:31.108 INFO TestAgent Terminated mqtt file
1595000971 2020-07-17 17:49:31.113 INFO TestAgent Closed rssi file
1595000971 2020-07-17 17:49:31.120 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (7742).
Exiting ovsdb-server (7727).
1595000971 2020-07-17 17:49:31.630 INFO TestAgent Reset wifi
1595000972 2020-07-17 17:49:32.657 INFO TestAgent iw sta0 connect ap1-train 5260
1595000972 2020-07-17 17:49:32.676 INFO TestAgent Done
1595001006 2020-07-17 17:50:06.976 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001011 2020-07-17 17:50:11.984 INFO TestAgent Got mqtt message: starttest-1595000973
1595001011 2020-07-17 17:50:11.987 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001012 2020-07-17 17:50:12.228 INFO TestAgent Starting Test
1595001012 2020-07-17 17:50:12.233 INFO TestAgent Create: /testdata/1595000973/
1595001018 2020-07-17 17:50:18.579 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.16882039337065}
1595001042 2020-07-17 17:50:42.056 INFO TestAgent Got mqtt message: stop
1595001042 2020-07-17 17:50:42.061 INFO TestAgent Test finished
1595001042 2020-07-17 17:50:42.073 INFO TestAgent Terminated iwevent
1595001042 2020-07-17 17:50:42.077 INFO TestAgent Terminated mqtt file
1595001042 2020-07-17 17:50:42.094 INFO TestAgent Closed rssi file
1595001042 2020-07-17 17:50:42.101 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (8022).
Exiting ovsdb-server (8007).
1595001042 2020-07-17 17:50:42.638 INFO TestAgent Reset wifi
1595001043 2020-07-17 17:50:43.666 INFO TestAgent iw sta0 connect ap1-train 5260
1595001043 2020-07-17 17:50:43.703 INFO TestAgent Done
1595001085 2020-07-17 17:51:25.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001090 2020-07-17 17:51:30.506 INFO TestAgent Got mqtt message: starttest--ping-1595001044
1595001090 2020-07-17 17:51:30.509 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001090 2020-07-17 17:51:30.737 INFO TestAgent Starting Test
1595001090 2020-07-17 17:51:30.740 INFO TestAgent Create: /testdata/1595001044/
1595001097 2020-07-17 17:51:37.094 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.94377356309579}
1595001099 2020-07-17 17:51:39.485 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001120 2020-07-17 17:52:00.482 INFO TestAgent Got mqtt message: stop
1595001120 2020-07-17 17:52:00.486 INFO TestAgent Test finished
1595001120 2020-07-17 17:52:00.493 INFO TestAgent Terminated iwevent
1595001120 2020-07-17 17:52:00.497 INFO TestAgent Terminated mqtt file
1595001120 2020-07-17 17:52:00.501 INFO TestAgent Closed rssi file
1595001120 2020-07-17 17:52:00.509 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (8301).
Exiting ovsdb-server (8288).
1595001120 2020-07-17 17:52:00.969 INFO TestAgent Reset wifi
1595001121 2020-07-17 17:52:01.997 INFO TestAgent iw sta0 connect ap1-train 5260
1595001122 2020-07-17 17:52:02.015 INFO TestAgent Done
1595001164 2020-07-17 17:52:44.496 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001169 2020-07-17 17:52:49.505 INFO TestAgent Got mqtt message: starttest-1595001123
1595001169 2020-07-17 17:52:49.509 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001169 2020-07-17 17:52:49.758 INFO TestAgent Starting Test
1595001169 2020-07-17 17:52:49.766 INFO TestAgent Create: /testdata/1595001123/
1595001176 2020-07-17 17:52:56.073 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.95684659011879}
1595001178 2020-07-17 17:52:58.427 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001199 2020-07-17 17:53:19.505 INFO TestAgent Got mqtt message: stop
1595001199 2020-07-17 17:53:19.508 INFO TestAgent Test finished
1595001199 2020-07-17 17:53:19.513 INFO TestAgent Terminated iwevent
1595001199 2020-07-17 17:53:19.517 INFO TestAgent Terminated mqtt file
1595001199 2020-07-17 17:53:19.524 INFO TestAgent Closed rssi file
1595001199 2020-07-17 17:53:19.532 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (8579).
Exiting ovsdb-server (8566).
1595001199 2020-07-17 17:53:19.989 INFO TestAgent Reset wifi
1595001201 2020-07-17 17:53:21.017 INFO TestAgent iw sta0 connect ap1-train 5260
1595001201 2020-07-17 17:53:21.035 INFO TestAgent Done
1595001235 2020-07-17 17:53:55.172 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001240 2020-07-17 17:54:00.176 INFO TestAgent Got mqtt message: starttest--ping-1595001202
1595001240 2020-07-17 17:54:00.179 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001240 2020-07-17 17:54:00.445 INFO TestAgent Starting Test
1595001240 2020-07-17 17:54:00.449 INFO TestAgent Create: /testdata/1595001202/
1595001246 2020-07-17 17:54:06.759 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.02004350952849}
1595001270 2020-07-17 17:54:30.166 INFO TestAgent Got mqtt message: stop
1595001270 2020-07-17 17:54:30.169 INFO TestAgent Test finished
1595001270 2020-07-17 17:54:30.174 INFO TestAgent Terminated iwevent
1595001270 2020-07-17 17:54:30.178 INFO TestAgent Terminated mqtt file
1595001270 2020-07-17 17:54:30.182 INFO TestAgent Closed rssi file
1595001270 2020-07-17 17:54:30.190 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (8804).
Exiting ovsdb-server (8789).
1595001270 2020-07-17 17:54:30.656 INFO TestAgent Reset wifi
1595001271 2020-07-17 17:54:31.826 INFO TestAgent iw sta0 connect ap1-train 5260
1595001271 2020-07-17 17:54:31.849 INFO TestAgent Done
1595001305 2020-07-17 17:55:05.792 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001310 2020-07-17 17:55:10.801 INFO TestAgent Got mqtt message: starttest-1595001273
1595001310 2020-07-17 17:55:10.804 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001311 2020-07-17 17:55:11.041 INFO TestAgent Starting Test
1595001311 2020-07-17 17:55:11.048 INFO TestAgent Create: /testdata/1595001273/
1595001317 2020-07-17 17:55:17.400 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.92133785481167}
1595001340 2020-07-17 17:55:40.724 INFO TestAgent Got mqtt message: stop
1595001340 2020-07-17 17:55:40.727 INFO TestAgent Test finished
1595001340 2020-07-17 17:55:40.732 INFO TestAgent Terminated iwevent
1595001340 2020-07-17 17:55:40.736 INFO TestAgent Terminated mqtt file
1595001340 2020-07-17 17:55:40.740 INFO TestAgent Closed rssi file
1595001340 2020-07-17 17:55:40.748 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (9083).
Exiting ovsdb-server (9070).
1595001341 2020-07-17 17:55:41.194 INFO TestAgent Reset wifi
1595001342 2020-07-17 17:55:42.244 INFO TestAgent iw sta0 connect ap1-train 5260
1595001342 2020-07-17 17:55:42.292 INFO TestAgent Done
1595001377 2020-07-17 17:56:17.328 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001382 2020-07-17 17:56:22.335 INFO TestAgent Got mqtt message: starttest--ping-1595001343
1595001382 2020-07-17 17:56:22.353 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001382 2020-07-17 17:56:22.602 INFO TestAgent Starting Test
1595001382 2020-07-17 17:56:22.605 INFO TestAgent Create: /testdata/1595001343/
1595001388 2020-07-17 17:56:28.869 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.9019761021498}
1595001391 2020-07-17 17:56:31.235 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001412 2020-07-17 17:56:52.203 INFO TestAgent Got mqtt message: stop
1595001412 2020-07-17 17:56:52.206 INFO TestAgent Test finished
1595001412 2020-07-17 17:56:52.211 INFO TestAgent Terminated iwevent
1595001412 2020-07-17 17:56:52.215 INFO TestAgent Terminated mqtt file
1595001412 2020-07-17 17:56:52.218 INFO TestAgent Closed rssi file
1595001412 2020-07-17 17:56:52.227 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (9359).
Exiting ovsdb-server (9344).
1595001412 2020-07-17 17:56:52.631 INFO TestAgent Reset wifi
1595001413 2020-07-17 17:56:53.659 INFO TestAgent iw sta0 connect ap1-train 5260
1595001413 2020-07-17 17:56:53.678 INFO TestAgent Done
1595001456 2020-07-17 17:57:36.494 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001461 2020-07-17 17:57:41.500 INFO TestAgent Got mqtt message: starttest-1595001415
1595001461 2020-07-17 17:57:41.503 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001461 2020-07-17 17:57:41.858 INFO TestAgent Starting Test
1595001461 2020-07-17 17:57:41.863 INFO TestAgent Create: /testdata/1595001415/
1595001467 2020-07-17 17:57:47.994 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 107.42360926957812}
1595001470 2020-07-17 17:57:50.303 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001490 2020-07-17 17:58:10.981 INFO TestAgent Got mqtt message: stop
1595001490 2020-07-17 17:58:10.985 INFO TestAgent Test finished
1595001490 2020-07-17 17:58:10.990 INFO TestAgent Terminated iwevent
1595001490 2020-07-17 17:58:10.994 INFO TestAgent Terminated mqtt file
1595001490 2020-07-17 17:58:10.998 INFO TestAgent Closed rssi file
1595001491 2020-07-17 17:58:11.006 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (9635).
Exiting ovsdb-server (9622).
1595001491 2020-07-17 17:58:11.458 INFO TestAgent Reset wifi
1595001492 2020-07-17 17:58:12.485 INFO TestAgent iw sta0 connect ap1-train 5260
1595001492 2020-07-17 17:58:12.508 INFO TestAgent Done
1595001526 2020-07-17 17:58:46.656 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001531 2020-07-17 17:58:51.661 INFO TestAgent Got mqtt message: starttest--ping-1595001493
1595001531 2020-07-17 17:58:51.664 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001531 2020-07-17 17:58:51.898 INFO TestAgent Starting Test
1595001531 2020-07-17 17:58:51.901 INFO TestAgent Create: /testdata/1595001493/
1595001538 2020-07-17 17:58:58.211 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 106.11552429670478}
1595001561 2020-07-17 17:59:21.245 INFO TestAgent Got mqtt message: stop
1595001561 2020-07-17 17:59:21.248 INFO TestAgent Test finished
1595001561 2020-07-17 17:59:21.253 INFO TestAgent Terminated iwevent
1595001561 2020-07-17 17:59:21.257 INFO TestAgent Terminated mqtt file
1595001561 2020-07-17 17:59:21.261 INFO TestAgent Closed rssi file
1595001561 2020-07-17 17:59:21.269 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (9923).
Exiting ovsdb-server (9910).
1595001561 2020-07-17 17:59:21.708 INFO TestAgent Reset wifi
1595001562 2020-07-17 17:59:22.735 INFO TestAgent iw sta0 connect ap1-train 5260
1595001562 2020-07-17 17:59:22.753 INFO TestAgent Done
1595001596 2020-07-17 17:59:56.804 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001601 2020-07-17 18:00:01.811 INFO TestAgent Got mqtt message: starttest-1595001564
1595001601 2020-07-17 18:00:01.815 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001602 2020-07-17 18:00:02.041 INFO TestAgent Starting Test
1595001602 2020-07-17 18:00:02.044 INFO TestAgent Create: /testdata/1595001564/
1595001608 2020-07-17 18:00:08.358 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.53110115514058}
1595001631 2020-07-17 18:00:31.670 INFO TestAgent Got mqtt message: stop
1595001631 2020-07-17 18:00:31.673 INFO TestAgent Test finished
1595001631 2020-07-17 18:00:31.680 INFO TestAgent Terminated iwevent
1595001631 2020-07-17 18:00:31.686 INFO TestAgent Terminated mqtt file
1595001631 2020-07-17 18:00:31.690 INFO TestAgent Closed rssi file
1595001631 2020-07-17 18:00:31.698 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (10198).
Exiting ovsdb-server (10185).
1595001632 2020-07-17 18:00:32.138 INFO TestAgent Reset wifi
1595001633 2020-07-17 18:00:33.166 INFO TestAgent iw sta0 connect ap1-train 5260
1595001633 2020-07-17 18:00:33.203 INFO TestAgent Done
1595001674 2020-07-17 18:01:14.502 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001679 2020-07-17 18:01:19.508 INFO TestAgent Got mqtt message: starttest--ping-1595001634
1595001679 2020-07-17 18:01:19.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001679 2020-07-17 18:01:19.791 INFO TestAgent Starting Test
1595001679 2020-07-17 18:01:19.799 INFO TestAgent Create: /testdata/1595001634/
1595001686 2020-07-17 18:01:26.044 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.46135699940942}
1595001688 2020-07-17 18:01:28.401 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001709 2020-07-17 18:01:49.244 INFO TestAgent Got mqtt message: stop
1595001709 2020-07-17 18:01:49.253 INFO TestAgent Test finished
1595001709 2020-07-17 18:01:49.258 INFO TestAgent Terminated iwevent
1595001709 2020-07-17 18:01:49.273 INFO TestAgent Terminated mqtt file
1595001709 2020-07-17 18:01:49.277 INFO TestAgent Closed rssi file
1595001709 2020-07-17 18:01:49.285 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (10477).
Exiting ovsdb-server (10464).
1595001709 2020-07-17 18:01:49.782 INFO TestAgent Reset wifi
1595001710 2020-07-17 18:01:50.809 INFO TestAgent iw sta0 connect ap1-train 5260
1595001710 2020-07-17 18:01:50.827 INFO TestAgent Done
1595001752 2020-07-17 18:02:32.641 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}