Newer
Older
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
1595020366 2020-07-17 23:12:46.330 INFO TestAgent iw sta0 connect ap1-train 5260
1595020366 2020-07-17 23:12:46.348 INFO TestAgent Done
1595020408 2020-07-17 23:13:28.493 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020413 2020-07-17 23:13:33.499 INFO TestAgent Got mqtt message: starttest-1595020367
1595020413 2020-07-17 23:13:33.502 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020413 2020-07-17 23:13:33.726 INFO TestAgent Starting Test
1595020413 2020-07-17 23:13:33.729 INFO TestAgent Create: /testdata/1595020367/
1595020420 2020-07-17 23:13:40.116 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.15198464877538}
1595020422 2020-07-17 23:13:42.516 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595020443 2020-07-17 23:14:03.723 INFO TestAgent Got mqtt message: stop
1595020443 2020-07-17 23:14:03.726 INFO TestAgent Test finished
1595020443 2020-07-17 23:14:03.731 INFO TestAgent Terminated iwevent
1595020443 2020-07-17 23:14:03.735 INFO TestAgent Terminated mqtt file
1595020443 2020-07-17 23:14:03.739 INFO TestAgent Closed rssi file
1595020443 2020-07-17 23:14:03.747 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (15804).
Exiting ovsdb-server (15789).
1595020444 2020-07-17 23:14:04.243 INFO TestAgent Reset wifi
1595020445 2020-07-17 23:14:05.272 INFO TestAgent iw sta0 connect ap1-train 5260
1595020445 2020-07-17 23:14:05.313 INFO TestAgent Done
1595020479 2020-07-17 23:14:39.171 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020484 2020-07-17 23:14:44.176 INFO TestAgent Got mqtt message: starttest--ping-1595020446
1595020484 2020-07-17 23:14:44.179 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020484 2020-07-17 23:14:44.408 INFO TestAgent Starting Test
1595020484 2020-07-17 23:14:44.411 INFO TestAgent Create: /testdata/1595020446/
1595020490 2020-07-17 23:14:50.838 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.14991369736039}
1595020514 2020-07-17 23:15:14.555 INFO TestAgent Got mqtt message: stop
1595020514 2020-07-17 23:15:14.558 INFO TestAgent Test finished
1595020514 2020-07-17 23:15:14.563 INFO TestAgent Terminated iwevent
1595020514 2020-07-17 23:15:14.567 INFO TestAgent Terminated mqtt file
1595020514 2020-07-17 23:15:14.570 INFO TestAgent Closed rssi file
1595020514 2020-07-17 23:15:14.578 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16093).
Exiting ovsdb-server (16080).
1595020515 2020-07-17 23:15:15.076 INFO TestAgent Reset wifi
1595020516 2020-07-17 23:15:16.128 INFO TestAgent iw sta0 connect ap1-train 5260
1595020516 2020-07-17 23:15:16.163 INFO TestAgent Done
1595020550 2020-07-17 23:15:50.215 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020555 2020-07-17 23:15:55.223 INFO TestAgent Got mqtt message: starttest-1595020517
1595020555 2020-07-17 23:15:55.227 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020555 2020-07-17 23:15:55.455 INFO TestAgent Starting Test
1595020555 2020-07-17 23:15:55.458 INFO TestAgent Create: /testdata/1595020517/
1595020561 2020-07-17 23:16:01.801 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.00629019430282}
1595020585 2020-07-17 23:16:25.337 INFO TestAgent Got mqtt message: stop
1595020585 2020-07-17 23:16:25.343 INFO TestAgent Test finished
1595020585 2020-07-17 23:16:25.354 INFO TestAgent Terminated iwevent
1595020585 2020-07-17 23:16:25.359 INFO TestAgent Terminated mqtt file
1595020585 2020-07-17 23:16:25.364 INFO TestAgent Closed rssi file
1595020585 2020-07-17 23:16:25.377 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16373).
Exiting ovsdb-server (16360).
1595020585 2020-07-17 23:16:25.851 INFO TestAgent Reset wifi
1595020586 2020-07-17 23:16:26.878 INFO TestAgent iw sta0 connect ap1-train 5260
1595020586 2020-07-17 23:16:26.917 INFO TestAgent Done
1595020621 2020-07-17 23:17:01.334 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020626 2020-07-17 23:17:06.334 INFO TestAgent Got mqtt message: starttest--ping-1595020587
1595020626 2020-07-17 23:17:06.353 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020626 2020-07-17 23:17:06.629 INFO TestAgent Starting Test
1595020626 2020-07-17 23:17:06.632 INFO TestAgent Create: /testdata/1595020587/
1595020632 2020-07-17 23:17:12.925 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.83617534587114}
1595020635 2020-07-17 23:17:15.307 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595020656 2020-07-17 23:17:36.594 INFO TestAgent Got mqtt message: stop
1595020656 2020-07-17 23:17:36.597 INFO TestAgent Test finished
1595020656 2020-07-17 23:17:36.602 INFO TestAgent Terminated iwevent
1595020656 2020-07-17 23:17:36.606 INFO TestAgent Terminated mqtt file
1595020656 2020-07-17 23:17:36.610 INFO TestAgent Closed rssi file
1595020656 2020-07-17 23:17:36.618 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16652).
Exiting ovsdb-server (16639).
1595020657 2020-07-17 23:17:37.075 INFO TestAgent Reset wifi
1595020658 2020-07-17 23:17:38.102 INFO TestAgent iw sta0 connect ap1-train 5260
1595020658 2020-07-17 23:17:38.121 INFO TestAgent Done
1595020700 2020-07-17 23:18:20.506 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020705 2020-07-17 23:18:25.502 INFO TestAgent Got mqtt message: starttest-1595020659
1595020705 2020-07-17 23:18:25.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020705 2020-07-17 23:18:25.762 INFO TestAgent Starting Test
1595020705 2020-07-17 23:18:25.777 INFO TestAgent Create: /testdata/1595020659/
1595020712 2020-07-17 23:18:32.080 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.78956734576025}
1595020714 2020-07-17 23:18:34.477 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595020735 2020-07-17 23:18:55.596 INFO TestAgent Got mqtt message: stop
1595020735 2020-07-17 23:18:55.599 INFO TestAgent Test finished
1595020735 2020-07-17 23:18:55.604 INFO TestAgent Terminated iwevent
1595020735 2020-07-17 23:18:55.608 INFO TestAgent Terminated mqtt file
1595020735 2020-07-17 23:18:55.612 INFO TestAgent Closed rssi file
1595020735 2020-07-17 23:18:55.620 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16928).
Exiting ovsdb-server (16915).
1595020736 2020-07-17 23:18:56.118 INFO TestAgent Reset wifi
1595020737 2020-07-17 23:18:57.146 INFO TestAgent iw sta0 connect ap1-train 5260
1595020737 2020-07-17 23:18:57.164 INFO TestAgent Done
1595020771 2020-07-17 23:19:31.785 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020776 2020-07-17 23:19:36.794 INFO TestAgent Got mqtt message: starttest--ping-1595020738
1595020776 2020-07-17 23:19:36.798 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020777 2020-07-17 23:19:37.031 INFO TestAgent Starting Test
1595020777 2020-07-17 23:19:37.038 INFO TestAgent Create: /testdata/1595020738/
1595020783 2020-07-17 23:19:43.310 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.91199787062077}
1595020806 2020-07-17 23:20:06.806 INFO TestAgent Got mqtt message: stop
1595020806 2020-07-17 23:20:06.813 INFO TestAgent Test finished
1595020806 2020-07-17 23:20:06.824 INFO TestAgent Terminated iwevent
1595020806 2020-07-17 23:20:06.828 INFO TestAgent Terminated mqtt file
1595020806 2020-07-17 23:20:06.834 INFO TestAgent Closed rssi file
1595020806 2020-07-17 23:20:06.842 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17214).
Exiting ovsdb-server (17199).
1595020807 2020-07-17 23:20:07.242 INFO TestAgent Reset wifi
1595020808 2020-07-17 23:20:08.270 INFO TestAgent iw sta0 connect ap1-train 5260
1595020808 2020-07-17 23:20:08.288 INFO TestAgent Done
1595020842 2020-07-17 23:20:42.444 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020847 2020-07-17 23:20:47.451 INFO TestAgent Got mqtt message: starttest-1595020809
1595020847 2020-07-17 23:20:47.454 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020847 2020-07-17 23:20:47.716 INFO TestAgent Starting Test
1595020847 2020-07-17 23:20:47.720 INFO TestAgent Create: /testdata/1595020809/
1595020854 2020-07-17 23:20:54.007 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.55058605586642}
1595020877 2020-07-17 23:21:17.529 INFO TestAgent Got mqtt message: stop
1595020877 2020-07-17 23:21:17.553 INFO TestAgent Test finished
1595020877 2020-07-17 23:21:17.558 INFO TestAgent Terminated iwevent
1595020877 2020-07-17 23:21:17.563 INFO TestAgent Terminated mqtt file
1595020877 2020-07-17 23:21:17.571 INFO TestAgent Closed rssi file
1595020877 2020-07-17 23:21:17.579 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17493).
Exiting ovsdb-server (17478).
1595020877 2020-07-17 23:21:17.979 INFO TestAgent Reset wifi
1595020879 2020-07-17 23:21:19.007 INFO TestAgent iw sta0 connect ap1-train 5260
1595020879 2020-07-17 23:21:19.043 INFO TestAgent Done
1595020920 2020-07-17 23:22:00.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595020925 2020-07-17 23:22:05.505 INFO TestAgent Got mqtt message: starttest--ping-1595020879
1595020925 2020-07-17 23:22:05.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595020925 2020-07-17 23:22:05.727 INFO TestAgent Starting Test
1595020925 2020-07-17 23:22:05.730 INFO TestAgent Create: /testdata/1595020879/
1595020932 2020-07-17 23:22:12.028 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.43659742769131}
1595020934 2020-07-17 23:22:14.386 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595020955 2020-07-17 23:22:35.369 INFO TestAgent Got mqtt message: stop
1595020955 2020-07-17 23:22:35.372 INFO TestAgent Test finished
1595020955 2020-07-17 23:22:35.377 INFO TestAgent Terminated iwevent
1595020955 2020-07-17 23:22:35.380 INFO TestAgent Terminated mqtt file
1595020955 2020-07-17 23:22:35.385 INFO TestAgent Closed rssi file
1595020955 2020-07-17 23:22:35.393 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17771).
Exiting ovsdb-server (17758).
1595020955 2020-07-17 23:22:35.839 INFO TestAgent Reset wifi
1595020956 2020-07-17 23:22:36.867 INFO TestAgent iw sta0 connect ap1-train 5260
1595020956 2020-07-17 23:22:36.885 INFO TestAgent Done
1595020998 2020-07-17 23:23:18.500 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021003 2020-07-17 23:23:23.504 INFO TestAgent Got mqtt message: starttest-1595020957
1595021003 2020-07-17 23:23:23.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021003 2020-07-17 23:23:23.758 INFO TestAgent Starting Test
1595021003 2020-07-17 23:23:23.766 INFO TestAgent Create: /testdata/1595020957/
1595021010 2020-07-17 23:23:30.073 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.88233900972496}
1595021012 2020-07-17 23:23:32.443 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021033 2020-07-17 23:23:53.427 INFO TestAgent Got mqtt message: stop
1595021033 2020-07-17 23:23:53.430 INFO TestAgent Test finished
1595021033 2020-07-17 23:23:53.436 INFO TestAgent Terminated iwevent
1595021033 2020-07-17 23:23:53.439 INFO TestAgent Terminated mqtt file
1595021033 2020-07-17 23:23:53.443 INFO TestAgent Closed rssi file
1595021033 2020-07-17 23:23:53.451 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18054).
Exiting ovsdb-server (18041).
1595021033 2020-07-17 23:23:53.857 INFO TestAgent Reset wifi
1595021034 2020-07-17 23:23:54.884 INFO TestAgent iw sta0 connect ap1-train 5260
1595021034 2020-07-17 23:23:54.902 INFO TestAgent Done
1595021068 2020-07-17 23:24:28.995 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021074 2020-07-17 23:24:34.000 INFO TestAgent Got mqtt message: starttest--ping-1595021036
1595021074 2020-07-17 23:24:34.004 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021074 2020-07-17 23:24:34.230 INFO TestAgent Starting Test
1595021074 2020-07-17 23:24:34.233 INFO TestAgent Create: /testdata/1595021036/
1595021080 2020-07-17 23:24:40.605 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.00854612181855}
1595021103 2020-07-17 23:25:03.961 INFO TestAgent Got mqtt message: stop
1595021103 2020-07-17 23:25:03.964 INFO TestAgent Test finished
1595021103 2020-07-17 23:25:03.969 INFO TestAgent Terminated iwevent
1595021103 2020-07-17 23:25:03.975 INFO TestAgent Terminated mqtt file
1595021103 2020-07-17 23:25:03.980 INFO TestAgent Closed rssi file
1595021103 2020-07-17 23:25:03.987 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18338).
Exiting ovsdb-server (18323).
1595021104 2020-07-17 23:25:04.412 INFO TestAgent Reset wifi
1595021105 2020-07-17 23:25:05.439 INFO TestAgent iw sta0 connect ap1-train 5260
1595021105 2020-07-17 23:25:05.458 INFO TestAgent Done
1595021139 2020-07-17 23:25:39.908 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021144 2020-07-17 23:25:44.916 INFO TestAgent Got mqtt message: starttest-1595021106
1595021144 2020-07-17 23:25:44.919 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021145 2020-07-17 23:25:45.141 INFO TestAgent Starting Test
1595021145 2020-07-17 23:25:45.144 INFO TestAgent Create: /testdata/1595021106/
1595021151 2020-07-17 23:25:51.485 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.13436190081987}
1595021174 2020-07-17 23:26:14.921 INFO TestAgent Got mqtt message: stop
1595021174 2020-07-17 23:26:14.924 INFO TestAgent Test finished
1595021174 2020-07-17 23:26:14.929 INFO TestAgent Terminated iwevent
1595021174 2020-07-17 23:26:14.933 INFO TestAgent Terminated mqtt file
1595021174 2020-07-17 23:26:14.937 INFO TestAgent Closed rssi file
1595021174 2020-07-17 23:26:14.945 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18617).
Exiting ovsdb-server (18604).
1595021175 2020-07-17 23:26:15.455 INFO TestAgent Reset wifi
1595021176 2020-07-17 23:26:16.482 INFO TestAgent iw sta0 connect ap1-train 5260
1595021176 2020-07-17 23:26:16.517 INFO TestAgent Done
1595021218 2020-07-17 23:26:58.510 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021223 2020-07-17 23:27:03.515 INFO TestAgent Got mqtt message: starttest--ping-1595021177
1595021223 2020-07-17 23:27:03.518 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021223 2020-07-17 23:27:03.742 INFO TestAgent Starting Test
1595021223 2020-07-17 23:27:03.745 INFO TestAgent Create: /testdata/1595021177/
1595021230 2020-07-17 23:27:10.196 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.34804550518223}
1595021232 2020-07-17 23:27:12.627 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021253 2020-07-17 23:27:33.805 INFO TestAgent Got mqtt message: stop
1595021253 2020-07-17 23:27:33.809 INFO TestAgent Test finished
1595021253 2020-07-17 23:27:33.814 INFO TestAgent Terminated iwevent
1595021253 2020-07-17 23:27:33.817 INFO TestAgent Terminated mqtt file
1595021253 2020-07-17 23:27:33.822 INFO TestAgent Closed rssi file
1595021253 2020-07-17 23:27:33.829 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18891).
Exiting ovsdb-server (18878).
1595021254 2020-07-17 23:27:34.286 INFO TestAgent Reset wifi
1595021255 2020-07-17 23:27:35.312 INFO TestAgent iw sta0 connect ap1-train 5260
1595021255 2020-07-17 23:27:35.331 INFO TestAgent Done
1595021297 2020-07-17 23:28:17.503 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021302 2020-07-17 23:28:22.510 INFO TestAgent Got mqtt message: starttest-1595021256
1595021302 2020-07-17 23:28:22.516 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021302 2020-07-17 23:28:22.759 INFO TestAgent Starting Test
1595021302 2020-07-17 23:28:22.763 INFO TestAgent Create: /testdata/1595021256/
1595021309 2020-07-17 23:28:29.043 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.09492401784166}
1595021311 2020-07-17 23:28:31.401 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021332 2020-07-17 23:28:52.539 INFO TestAgent Got mqtt message: stop
1595021332 2020-07-17 23:28:52.543 INFO TestAgent Test finished
1595021332 2020-07-17 23:28:52.548 INFO TestAgent Terminated iwevent
1595021332 2020-07-17 23:28:52.551 INFO TestAgent Terminated mqtt file
1595021332 2020-07-17 23:28:52.555 INFO TestAgent Closed rssi file
1595021332 2020-07-17 23:28:52.569 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19179).
Exiting ovsdb-server (19164).
1595021332 2020-07-17 23:28:52.968 INFO TestAgent Reset wifi
1595021333 2020-07-17 23:28:53.996 INFO TestAgent iw sta0 connect ap1-train 5260
1595021334 2020-07-17 23:28:54.033 INFO TestAgent Done
1595021368 2020-07-17 23:29:28.008 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021373 2020-07-17 23:29:33.012 INFO TestAgent Got mqtt message: starttest--ping-1595021335
1595021373 2020-07-17 23:29:33.023 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021373 2020-07-17 23:29:33.306 INFO TestAgent Starting Test
1595021373 2020-07-17 23:29:33.310 INFO TestAgent Create: /testdata/1595021335/
1595021379 2020-07-17 23:29:39.653 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.80656191106605}
1595021402 2020-07-17 23:30:02.957 INFO TestAgent Got mqtt message: stop
1595021402 2020-07-17 23:30:02.960 INFO TestAgent Test finished
1595021402 2020-07-17 23:30:02.965 INFO TestAgent Terminated iwevent
1595021402 2020-07-17 23:30:02.968 INFO TestAgent Terminated mqtt file
1595021402 2020-07-17 23:30:02.973 INFO TestAgent Closed rssi file
1595021402 2020-07-17 23:30:02.981 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19467).
Exiting ovsdb-server (19452).
1595021403 2020-07-17 23:30:03.466 INFO TestAgent Reset wifi
1595021404 2020-07-17 23:30:04.492 INFO TestAgent iw sta0 connect ap1-train 5260
1595021404 2020-07-17 23:30:04.511 INFO TestAgent Done
1595021438 2020-07-17 23:30:38.404 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021443 2020-07-17 23:30:43.413 INFO TestAgent Got mqtt message: starttest-1595021405
1595021443 2020-07-17 23:30:43.417 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021443 2020-07-17 23:30:43.660 INFO TestAgent Starting Test
1595021443 2020-07-17 23:30:43.665 INFO TestAgent Create: /testdata/1595021405/
1595021450 2020-07-17 23:30:50.009 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.33045675899247}
1595021473 2020-07-17 23:31:13.516 INFO TestAgent Got mqtt message: stop
1595021473 2020-07-17 23:31:13.523 INFO TestAgent Test finished
1595021473 2020-07-17 23:31:13.535 INFO TestAgent Terminated iwevent
1595021473 2020-07-17 23:31:13.538 INFO TestAgent Terminated mqtt file
1595021473 2020-07-17 23:31:13.554 INFO TestAgent Closed rssi file
1595021473 2020-07-17 23:31:13.561 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19741).
Exiting ovsdb-server (19728).
1595021474 2020-07-17 23:31:14.040 INFO TestAgent Reset wifi
1595021475 2020-07-17 23:31:15.068 INFO TestAgent iw sta0 connect ap1-train 5260
1595021475 2020-07-17 23:31:15.107 INFO TestAgent Done
1595021526 2020-07-17 23:32:06.666 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021531 2020-07-17 23:32:11.669 INFO TestAgent Got mqtt message: starttest--ping-1595021475
1595021531 2020-07-17 23:32:11.672 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021531 2020-07-17 23:32:11.903 INFO TestAgent Starting Test
1595021531 2020-07-17 23:32:11.905 INFO TestAgent Create: /testdata/1595021475/
1595021538 2020-07-17 23:32:18.291 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.00801545285117}
1595021540 2020-07-17 23:32:20.705 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021561 2020-07-17 23:32:41.845 INFO TestAgent Got mqtt message: stop
1595021561 2020-07-17 23:32:41.848 INFO TestAgent Test finished
1595021561 2020-07-17 23:32:41.853 INFO TestAgent Terminated iwevent
1595021561 2020-07-17 23:32:41.857 INFO TestAgent Terminated mqtt file
1595021561 2020-07-17 23:32:41.861 INFO TestAgent Closed rssi file
1595021561 2020-07-17 23:32:41.869 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20021).
Exiting ovsdb-server (20008).
1595021562 2020-07-17 23:32:42.271 INFO TestAgent Reset wifi
1595021563 2020-07-17 23:32:43.298 INFO TestAgent iw sta0 connect ap1-train 5260
1595021563 2020-07-17 23:32:43.317 INFO TestAgent Done
1595021605 2020-07-17 23:33:25.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021610 2020-07-17 23:33:30.507 INFO TestAgent Got mqtt message: starttest-1595021564
1595021610 2020-07-17 23:33:30.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021610 2020-07-17 23:33:30.768 INFO TestAgent Starting Test
1595021610 2020-07-17 23:33:30.772 INFO TestAgent Create: /testdata/1595021564/
1595021617 2020-07-17 23:33:37.294 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.91246027908635}
1595021619 2020-07-17 23:33:39.682 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021640 2020-07-17 23:34:00.750 INFO TestAgent Got mqtt message: stop
1595021640 2020-07-17 23:34:00.753 INFO TestAgent Test finished
1595021640 2020-07-17 23:34:00.758 INFO TestAgent Terminated iwevent
1595021640 2020-07-17 23:34:00.762 INFO TestAgent Terminated mqtt file
1595021640 2020-07-17 23:34:00.766 INFO TestAgent Closed rssi file
1595021640 2020-07-17 23:34:00.774 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20335).
Exiting ovsdb-server (20320).
1595021641 2020-07-17 23:34:01.179 INFO TestAgent Reset wifi
1595021642 2020-07-17 23:34:02.206 INFO TestAgent iw sta0 connect ap1-train 5260
1595021642 2020-07-17 23:34:02.225 INFO TestAgent Done
1595021676 2020-07-17 23:34:36.360 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021681 2020-07-17 23:34:41.365 INFO TestAgent Got mqtt message: starttest--ping-1595021643
1595021681 2020-07-17 23:34:41.369 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021681 2020-07-17 23:34:41.589 INFO TestAgent Starting Test
1595021681 2020-07-17 23:34:41.595 INFO TestAgent Create: /testdata/1595021643/
1595021688 2020-07-17 23:34:48.007 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.2851514991791}
1595021711 2020-07-17 23:35:11.470 INFO TestAgent Got mqtt message: stop
1595021711 2020-07-17 23:35:11.479 INFO TestAgent Test finished
1595021711 2020-07-17 23:35:11.484 INFO TestAgent Terminated iwevent
1595021711 2020-07-17 23:35:11.488 INFO TestAgent Terminated mqtt file
1595021711 2020-07-17 23:35:11.492 INFO TestAgent Closed rssi file
1595021711 2020-07-17 23:35:11.502 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20625).
Exiting ovsdb-server (20610).
1595021711 2020-07-17 23:35:11.899 INFO TestAgent Reset wifi
1595021712 2020-07-17 23:35:12.927 INFO TestAgent iw sta0 connect ap1-train 5260
1595021712 2020-07-17 23:35:12.945 INFO TestAgent Done
1595021747 2020-07-17 23:35:47.141 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021752 2020-07-17 23:35:52.150 INFO TestAgent Got mqtt message: starttest-1595021714
1595021752 2020-07-17 23:35:52.153 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021752 2020-07-17 23:35:52.382 INFO TestAgent Starting Test
1595021752 2020-07-17 23:35:52.385 INFO TestAgent Create: /testdata/1595021714/
1595021758 2020-07-17 23:35:58.756 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.83799356051084}
1595021782 2020-07-17 23:36:22.307 INFO TestAgent Got mqtt message: stop
1595021782 2020-07-17 23:36:22.310 INFO TestAgent Test finished
1595021782 2020-07-17 23:36:22.315 INFO TestAgent Terminated iwevent
1595021782 2020-07-17 23:36:22.319 INFO TestAgent Terminated mqtt file
1595021782 2020-07-17 23:36:22.323 INFO TestAgent Closed rssi file
1595021782 2020-07-17 23:36:22.331 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20905).
Exiting ovsdb-server (20890).
1595021782 2020-07-17 23:36:22.734 INFO TestAgent Reset wifi
1595021783 2020-07-17 23:36:23.787 INFO TestAgent iw sta0 connect ap1-train 5260
1595021783 2020-07-17 23:36:23.827 INFO TestAgent Done
1595021825 2020-07-17 23:37:05.501 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021830 2020-07-17 23:37:10.505 INFO TestAgent Got mqtt message: starttest--ping-1595021784
1595021830 2020-07-17 23:37:10.517 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021830 2020-07-17 23:37:10.743 INFO TestAgent Starting Test
1595021830 2020-07-17 23:37:10.746 INFO TestAgent Create: /testdata/1595021784/
1595021837 2020-07-17 23:37:17.130 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.64473487576032}
1595021839 2020-07-17 23:37:19.531 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021860 2020-07-17 23:37:40.555 INFO TestAgent Got mqtt message: stop
1595021860 2020-07-17 23:37:40.559 INFO TestAgent Test finished
1595021860 2020-07-17 23:37:40.564 INFO TestAgent Terminated iwevent
1595021860 2020-07-17 23:37:40.567 INFO TestAgent Terminated mqtt file
1595021860 2020-07-17 23:37:40.572 INFO TestAgent Closed rssi file
1595021860 2020-07-17 23:37:40.579 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21185).
Exiting ovsdb-server (21170).
1595021861 2020-07-17 23:37:41.030 INFO TestAgent Reset wifi
1595021862 2020-07-17 23:37:42.057 INFO TestAgent iw sta0 connect ap1-train 5260
1595021862 2020-07-17 23:37:42.076 INFO TestAgent Done
1595021904 2020-07-17 23:38:24.508 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021909 2020-07-17 23:38:29.515 INFO TestAgent Got mqtt message: starttest-1595021863
1595021909 2020-07-17 23:38:29.523 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021909 2020-07-17 23:38:29.871 INFO TestAgent Starting Test
1595021909 2020-07-17 23:38:29.879 INFO TestAgent Create: /testdata/1595021863/
1595021916 2020-07-17 23:38:36.225 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 101.6500362735095}
1595021918 2020-07-17 23:38:38.662 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595021940 2020-07-17 23:39:00.204 INFO TestAgent Got mqtt message: stop
1595021940 2020-07-17 23:39:00.207 INFO TestAgent Test finished
1595021940 2020-07-17 23:39:00.212 INFO TestAgent Terminated iwevent
1595021940 2020-07-17 23:39:00.216 INFO TestAgent Terminated mqtt file
1595021940 2020-07-17 23:39:00.219 INFO TestAgent Closed rssi file
1595021940 2020-07-17 23:39:00.227 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21471).
Exiting ovsdb-server (21458).
1595021940 2020-07-17 23:39:00.633 INFO TestAgent Reset wifi
1595021941 2020-07-17 23:39:01.660 INFO TestAgent iw sta0 connect ap1-train 5260
1595021941 2020-07-17 23:39:01.679 INFO TestAgent Done
1595021975 2020-07-17 23:39:35.944 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595021980 2020-07-17 23:39:40.948 INFO TestAgent Got mqtt message: starttest--ping-1595021943
1595021980 2020-07-17 23:39:40.951 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595021981 2020-07-17 23:39:41.176 INFO TestAgent Starting Test
1595021981 2020-07-17 23:39:41.179 INFO TestAgent Create: /testdata/1595021943/
1595021987 2020-07-17 23:39:47.605 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 101.98115461670197}
1595022011 2020-07-17 23:40:11.360 INFO TestAgent Got mqtt message: stop
1595022011 2020-07-17 23:40:11.363 INFO TestAgent Test finished
1595022011 2020-07-17 23:40:11.368 INFO TestAgent Terminated iwevent
1595022011 2020-07-17 23:40:11.375 INFO TestAgent Terminated mqtt file
1595022011 2020-07-17 23:40:11.378 INFO TestAgent Closed rssi file
1595022011 2020-07-17 23:40:11.386 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21757).
Exiting ovsdb-server (21744).
1595022011 2020-07-17 23:40:11.871 INFO TestAgent Reset wifi
1595022012 2020-07-17 23:40:12.898 INFO TestAgent iw sta0 connect ap1-train 5260
1595022012 2020-07-17 23:40:12.943 INFO TestAgent Done
1595022047 2020-07-17 23:40:47.012 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022052 2020-07-17 23:40:52.020 INFO TestAgent Got mqtt message: starttest-1595022014
1595022052 2020-07-17 23:40:52.024 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022052 2020-07-17 23:40:52.253 INFO TestAgent Starting Test
1595022052 2020-07-17 23:40:52.257 INFO TestAgent Create: /testdata/1595022014/
1595022058 2020-07-17 23:40:58.663 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.26257482301034}
1595022082 2020-07-17 23:41:22.168 INFO TestAgent Got mqtt message: stop
1595022082 2020-07-17 23:41:22.183 INFO TestAgent Test finished
1595022082 2020-07-17 23:41:22.188 INFO TestAgent Terminated iwevent
1595022082 2020-07-17 23:41:22.192 INFO TestAgent Terminated mqtt file
1595022082 2020-07-17 23:41:22.210 INFO TestAgent Closed rssi file
1595022082 2020-07-17 23:41:22.237 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22035).
Exiting ovsdb-server (22022).
1595022082 2020-07-17 23:41:22.640 INFO TestAgent Reset wifi
1595022083 2020-07-17 23:41:23.667 INFO TestAgent iw sta0 connect ap1-train 5260
1595022083 2020-07-17 23:41:23.707 INFO TestAgent Done
1595022125 2020-07-17 23:42:05.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022130 2020-07-17 23:42:10.504 INFO TestAgent Got mqtt message: starttest--ping-1595022084
1595022130 2020-07-17 23:42:10.507 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022130 2020-07-17 23:42:10.742 INFO TestAgent Starting Test
1595022130 2020-07-17 23:42:10.745 INFO TestAgent Create: /testdata/1595022084/
1595022137 2020-07-17 23:42:17.194 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.58616580080042}
1595022139 2020-07-17 23:42:19.608 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022160 2020-07-17 23:42:40.688 INFO TestAgent Got mqtt message: stop
1595022160 2020-07-17 23:42:40.691 INFO TestAgent Test finished
1595022160 2020-07-17 23:42:40.696 INFO TestAgent Terminated iwevent
1595022160 2020-07-17 23:42:40.700 INFO TestAgent Terminated mqtt file
1595022160 2020-07-17 23:42:40.704 INFO TestAgent Closed rssi file
1595022160 2020-07-17 23:42:40.712 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22310).
Exiting ovsdb-server (22297).
1595022161 2020-07-17 23:42:41.118 INFO TestAgent Reset wifi
1595022162 2020-07-17 23:42:42.146 INFO TestAgent iw sta0 connect ap1-train 5260
1595022162 2020-07-17 23:42:42.164 INFO TestAgent Done
1595022204 2020-07-17 23:43:24.490 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022209 2020-07-17 23:43:29.498 INFO TestAgent Got mqtt message: starttest-1595022163
1595022209 2020-07-17 23:43:29.507 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022209 2020-07-17 23:43:29.730 INFO TestAgent Starting Test
1595022209 2020-07-17 23:43:29.733 INFO TestAgent Create: /testdata/1595022163/
1595022216 2020-07-17 23:43:36.118 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.06020621853065}
1595022218 2020-07-17 23:43:38.529 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022239 2020-07-17 23:43:59.662 INFO TestAgent Got mqtt message: stop
1595022239 2020-07-17 23:43:59.666 INFO TestAgent Test finished
1595022239 2020-07-17 23:43:59.670 INFO TestAgent Terminated iwevent
1595022239 2020-07-17 23:43:59.674 INFO TestAgent Terminated mqtt file
1595022239 2020-07-17 23:43:59.678 INFO TestAgent Closed rssi file
1595022239 2020-07-17 23:43:59.686 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22609).
Exiting ovsdb-server (22594).
1595022240 2020-07-17 23:44:00.137 INFO TestAgent Reset wifi
1595022241 2020-07-17 23:44:01.164 INFO TestAgent iw sta0 connect ap1-train 5260
1595022241 2020-07-17 23:44:01.187 INFO TestAgent Done
1595022275 2020-07-17 23:44:35.303 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022280 2020-07-17 23:44:40.308 INFO TestAgent Got mqtt message: starttest--ping-1595022242
1595022280 2020-07-17 23:44:40.311 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022280 2020-07-17 23:44:40.537 INFO TestAgent Starting Test
1595022280 2020-07-17 23:44:40.541 INFO TestAgent Create: /testdata/1595022242/
1595022286 2020-07-17 23:44:46.876 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.72547301675415}
1595022310 2020-07-17 23:45:10.326 INFO TestAgent Got mqtt message: stop
1595022310 2020-07-17 23:45:10.330 INFO TestAgent Test finished
1595022310 2020-07-17 23:45:10.335 INFO TestAgent Terminated iwevent
1595022310 2020-07-17 23:45:10.339 INFO TestAgent Terminated mqtt file
1595022310 2020-07-17 23:45:10.347 INFO TestAgent Closed rssi file
1595022310 2020-07-17 23:45:10.356 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22891).
Exiting ovsdb-server (22878).
1595022310 2020-07-17 23:45:10.787 INFO TestAgent Reset wifi
1595022311 2020-07-17 23:45:11.814 INFO TestAgent iw sta0 connect ap1-train 5260
1595022311 2020-07-17 23:45:11.833 INFO TestAgent Done
1595022346 2020-07-17 23:45:46.178 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022351 2020-07-17 23:45:51.187 INFO TestAgent Got mqtt message: starttest-1595022313
1595022351 2020-07-17 23:45:51.190 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022351 2020-07-17 23:45:51.418 INFO TestAgent Starting Test
1595022351 2020-07-17 23:45:51.423 INFO TestAgent Create: /testdata/1595022313/
1595022357 2020-07-17 23:45:57.748 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.14939348608978}
1595022381 2020-07-17 23:46:21.119 INFO TestAgent Got mqtt message: stop
1595022381 2020-07-17 23:46:21.123 INFO TestAgent Test finished
1595022381 2020-07-17 23:46:21.127 INFO TestAgent Terminated iwevent
1595022381 2020-07-17 23:46:21.131 INFO TestAgent Terminated mqtt file
1595022381 2020-07-17 23:46:21.136 INFO TestAgent Closed rssi file
1595022381 2020-07-17 23:46:21.143 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23171).
Exiting ovsdb-server (23158).
1595022381 2020-07-17 23:46:21.576 INFO TestAgent Reset wifi
1595022382 2020-07-17 23:46:22.602 INFO TestAgent iw sta0 connect ap1-train 5260
1595022382 2020-07-17 23:46:22.637 INFO TestAgent Done
1595022434 2020-07-17 23:47:14.664 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022439 2020-07-17 23:47:19.667 INFO TestAgent Got mqtt message: starttest--ping-1595022383
1595022439 2020-07-17 23:47:19.671 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022439 2020-07-17 23:47:19.894 INFO TestAgent Starting Test
1595022439 2020-07-17 23:47:19.898 INFO TestAgent Create: /testdata/1595022383/
1595022446 2020-07-17 23:47:26.348 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.72774027472681}
1595022448 2020-07-17 23:47:28.764 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022469 2020-07-17 23:47:49.911 INFO TestAgent Got mqtt message: stop
1595022469 2020-07-17 23:47:49.920 INFO TestAgent Test finished
1595022469 2020-07-17 23:47:49.944 INFO TestAgent Terminated iwevent
1595022469 2020-07-17 23:47:49.957 INFO TestAgent Terminated mqtt file
1595022469 2020-07-17 23:47:49.961 INFO TestAgent Closed rssi file
1595022469 2020-07-17 23:47:49.983 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23450).
Exiting ovsdb-server (23435).
1595022470 2020-07-17 23:47:50.381 INFO TestAgent Reset wifi
1595022471 2020-07-17 23:47:51.408 INFO TestAgent iw sta0 connect ap1-train 5260
1595022471 2020-07-17 23:47:51.427 INFO TestAgent Done
1595022513 2020-07-17 23:48:33.500 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022518 2020-07-17 23:48:38.503 INFO TestAgent Got mqtt message: starttest-1595022472
1595022518 2020-07-17 23:48:38.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022518 2020-07-17 23:48:38.771 INFO TestAgent Starting Test
1595022518 2020-07-17 23:48:38.775 INFO TestAgent Create: /testdata/1595022472/
1595022525 2020-07-17 23:48:45.138 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.79495560683814}
1595022527 2020-07-17 23:48:47.533 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022548 2020-07-17 23:49:08.561 INFO TestAgent Got mqtt message: stop
1595022548 2020-07-17 23:49:08.565 INFO TestAgent Test finished
1595022548 2020-07-17 23:49:08.570 INFO TestAgent Terminated iwevent
1595022548 2020-07-17 23:49:08.573 INFO TestAgent Terminated mqtt file
1595022548 2020-07-17 23:49:08.580 INFO TestAgent Closed rssi file
1595022548 2020-07-17 23:49:08.588 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23756).
Exiting ovsdb-server (23741).
1595022548 2020-07-17 23:49:08.991 INFO TestAgent Reset wifi
1595022550 2020-07-17 23:49:10.047 INFO TestAgent iw sta0 connect ap1-train 5260
1595022550 2020-07-17 23:49:10.065 INFO TestAgent Done
1595022584 2020-07-17 23:49:44.162 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022589 2020-07-17 23:49:49.168 INFO TestAgent Got mqtt message: starttest--ping-1595022551
1595022589 2020-07-17 23:49:49.171 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022589 2020-07-17 23:49:49.393 INFO TestAgent Starting Test
1595022589 2020-07-17 23:49:49.404 INFO TestAgent Create: /testdata/1595022551/
1595022595 2020-07-17 23:49:55.790 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.89767284075977}
1595022619 2020-07-17 23:50:19.405 INFO TestAgent Got mqtt message: stop
1595022619 2020-07-17 23:50:19.408 INFO TestAgent Test finished
1595022619 2020-07-17 23:50:19.413 INFO TestAgent Terminated iwevent
1595022619 2020-07-17 23:50:19.418 INFO TestAgent Terminated mqtt file
1595022619 2020-07-17 23:50:19.422 INFO TestAgent Closed rssi file
1595022619 2020-07-17 23:50:19.431 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24039).
Exiting ovsdb-server (24026).
1595022619 2020-07-17 23:50:19.837 INFO TestAgent Reset wifi
1595022620 2020-07-17 23:50:20.877 INFO TestAgent iw sta0 connect ap1-train 5260
1595022620 2020-07-17 23:50:20.895 INFO TestAgent Done
1595022654 2020-07-17 23:50:54.850 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022659 2020-07-17 23:50:59.859 INFO TestAgent Got mqtt message: starttest-1595022622
1595022659 2020-07-17 23:50:59.863 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022660 2020-07-17 23:51:00.083 INFO TestAgent Starting Test
1595022660 2020-07-17 23:51:00.086 INFO TestAgent Create: /testdata/1595022622/
1595022666 2020-07-17 23:51:06.496 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.21327530912916}
1595022689 2020-07-17 23:51:29.976 INFO TestAgent Got mqtt message: stop
1595022689 2020-07-17 23:51:29.980 INFO TestAgent Test finished
1595022689 2020-07-17 23:51:29.985 INFO TestAgent Terminated iwevent
1595022689 2020-07-17 23:51:29.989 INFO TestAgent Terminated mqtt file
1595022689 2020-07-17 23:51:29.993 INFO TestAgent Closed rssi file
1595022690 2020-07-17 23:51:30.000 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24313).
Exiting ovsdb-server (24300).
1595022690 2020-07-17 23:51:30.443 INFO TestAgent Reset wifi
1595022691 2020-07-17 23:51:31.471 INFO TestAgent iw sta0 connect ap1-train 5260
1595022691 2020-07-17 23:51:31.507 INFO TestAgent Done
1595022733 2020-07-17 23:52:13.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022738 2020-07-17 23:52:18.506 INFO TestAgent Got mqtt message: starttest--ping-1595022692
1595022738 2020-07-17 23:52:18.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022738 2020-07-17 23:52:18.735 INFO TestAgent Starting Test
1595022738 2020-07-17 23:52:18.738 INFO TestAgent Create: /testdata/1595022692/
1595022745 2020-07-17 23:52:25.104 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.94998125769972}
1595022747 2020-07-17 23:52:27.514 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022768 2020-07-17 23:52:48.724 INFO TestAgent Got mqtt message: stop
1595022768 2020-07-17 23:52:48.727 INFO TestAgent Test finished
1595022768 2020-07-17 23:52:48.732 INFO TestAgent Terminated iwevent
1595022768 2020-07-17 23:52:48.736 INFO TestAgent Terminated mqtt file
1595022768 2020-07-17 23:52:48.742 INFO TestAgent Closed rssi file
1595022768 2020-07-17 23:52:48.751 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24593).
Exiting ovsdb-server (24578).
1595022769 2020-07-17 23:52:49.213 INFO TestAgent Reset wifi
1595022770 2020-07-17 23:52:50.241 INFO TestAgent iw sta0 connect ap1-train 5260
1595022770 2020-07-17 23:52:50.259 INFO TestAgent Done
1595022812 2020-07-17 23:53:32.502 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022817 2020-07-17 23:53:37.508 INFO TestAgent Got mqtt message: starttest-1595022771
1595022817 2020-07-17 23:53:37.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022817 2020-07-17 23:53:37.768 INFO TestAgent Starting Test
1595022817 2020-07-17 23:53:37.774 INFO TestAgent Create: /testdata/1595022771/
1595022824 2020-07-17 23:53:44.193 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 101.23655605369761}
1595022826 2020-07-17 23:53:46.637 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595022847 2020-07-17 23:54:07.899 INFO TestAgent Got mqtt message: stop
1595022847 2020-07-17 23:54:07.903 INFO TestAgent Test finished
1595022847 2020-07-17 23:54:07.908 INFO TestAgent Terminated iwevent
1595022847 2020-07-17 23:54:07.911 INFO TestAgent Terminated mqtt file
1595022847 2020-07-17 23:54:07.916 INFO TestAgent Closed rssi file
1595022847 2020-07-17 23:54:07.923 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24883).
Exiting ovsdb-server (24868).
1595022848 2020-07-17 23:54:08.364 INFO TestAgent Reset wifi
1595022849 2020-07-17 23:54:09.391 INFO TestAgent iw sta0 connect ap1-train 5260
1595022849 2020-07-17 23:54:09.409 INFO TestAgent Done
1595022883 2020-07-17 23:54:43.394 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022888 2020-07-17 23:54:48.400 INFO TestAgent Got mqtt message: starttest--ping-1595022850
1595022888 2020-07-17 23:54:48.403 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022888 2020-07-17 23:54:48.627 INFO TestAgent Starting Test
1595022888 2020-07-17 23:54:48.630 INFO TestAgent Create: /testdata/1595022850/
1595022895 2020-07-17 23:54:55.029 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.6954896867975}
1595022918 2020-07-17 23:55:18.550 INFO TestAgent Got mqtt message: stop
1595022918 2020-07-17 23:55:18.553 INFO TestAgent Test finished
1595022918 2020-07-17 23:55:18.558 INFO TestAgent Terminated iwevent
1595022918 2020-07-17 23:55:18.564 INFO TestAgent Terminated mqtt file
1595022918 2020-07-17 23:55:18.568 INFO TestAgent Closed rssi file
1595022918 2020-07-17 23:55:18.576 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (25180).
Exiting ovsdb-server (25167).
1595022919 2020-07-17 23:55:19.025 INFO TestAgent Reset wifi
1595022920 2020-07-17 23:55:20.052 INFO TestAgent iw sta0 connect ap1-train 5260
1595022920 2020-07-17 23:55:20.071 INFO TestAgent Done
1595022954 2020-07-17 23:55:54.019 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595022959 2020-07-17 23:55:59.029 INFO TestAgent Got mqtt message: starttest-1595022921
1595022959 2020-07-17 23:55:59.032 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595022959 2020-07-17 23:55:59.254 INFO TestAgent Starting Test
1595022959 2020-07-17 23:55:59.257 INFO TestAgent Create: /testdata/1595022921/
1595022965 2020-07-17 23:56:05.615 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.21479223672209}
1595022989 2020-07-17 23:56:29.088 INFO TestAgent Got mqtt message: stop
1595022989 2020-07-17 23:56:29.092 INFO TestAgent Test finished
1595022989 2020-07-17 23:56:29.096 INFO TestAgent Terminated iwevent
1595022989 2020-07-17 23:56:29.100 INFO TestAgent Terminated mqtt file
1595022989 2020-07-17 23:56:29.104 INFO TestAgent Closed rssi file
1595022989 2020-07-17 23:56:29.112 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (25461).
Exiting ovsdb-server (25446).
1595022989 2020-07-17 23:56:29.637 INFO TestAgent Reset wifi
1595022990 2020-07-17 23:56:30.668 INFO TestAgent iw sta0 connect ap1-train 5260
1595022990 2020-07-17 23:56:30.726 INFO TestAgent Done
1595023032 2020-07-17 23:57:12.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023037 2020-07-17 23:57:17.506 INFO TestAgent Got mqtt message: starttest--ping-1595022991
1595023037 2020-07-17 23:57:17.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023037 2020-07-17 23:57:17.737 INFO TestAgent Starting Test
1595023037 2020-07-17 23:57:17.740 INFO TestAgent Create: /testdata/1595022991/
1595023044 2020-07-17 23:57:24.118 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.18439357280798}
1595023046 2020-07-17 23:57:26.506 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595023067 2020-07-17 23:57:47.586 INFO TestAgent Got mqtt message: stop
1595023067 2020-07-17 23:57:47.590 INFO TestAgent Test finished
1595023067 2020-07-17 23:57:47.595 INFO TestAgent Terminated iwevent
1595023067 2020-07-17 23:57:47.598 INFO TestAgent Terminated mqtt file
1595023067 2020-07-17 23:57:47.603 INFO TestAgent Closed rssi file
1595023067 2020-07-17 23:57:47.610 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (25735).
Exiting ovsdb-server (25720).
1595023068 2020-07-17 23:57:48.131 INFO TestAgent Reset wifi
1595023069 2020-07-17 23:57:49.158 INFO TestAgent iw sta0 connect ap1-train 5260
1595023069 2020-07-17 23:57:49.177 INFO TestAgent Done
1595023111 2020-07-17 23:58:31.492 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023116 2020-07-17 23:58:36.501 INFO TestAgent Got mqtt message: starttest-1595023070
1595023116 2020-07-17 23:58:36.505 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023116 2020-07-17 23:58:36.732 INFO TestAgent Starting Test
1595023116 2020-07-17 23:58:36.735 INFO TestAgent Create: /testdata/1595023070/
1595023123 2020-07-17 23:58:43.176 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.7528405876125}
1595023125 2020-07-17 23:58:45.576 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595023146 2020-07-17 23:59:06.267 INFO TestAgent Got mqtt message: stop
1595023146 2020-07-17 23:59:06.271 INFO TestAgent Test finished
1595023146 2020-07-17 23:59:06.276 INFO TestAgent Terminated iwevent
1595023146 2020-07-17 23:59:06.280 INFO TestAgent Terminated mqtt file
1595023146 2020-07-17 23:59:06.284 INFO TestAgent Closed rssi file
1595023146 2020-07-17 23:59:06.291 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (26021).
Exiting ovsdb-server (26006).
1595023146 2020-07-17 23:59:06.716 INFO TestAgent Reset wifi
1595023147 2020-07-17 23:59:07.742 INFO TestAgent iw sta0 connect ap1-train 5260
1595023147 2020-07-17 23:59:07.777 INFO TestAgent Done
1595023181 2020-07-17 23:59:41.762 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023186 2020-07-17 23:59:46.769 INFO TestAgent Got mqtt message: starttest--ping-1595023148
1595023186 2020-07-17 23:59:46.773 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023187 2020-07-17 23:59:47.000 INFO TestAgent Starting Test
1595023187 2020-07-17 23:59:47.004 INFO TestAgent Create: /testdata/1595023148/
1595023193 2020-07-17 23:59:53.406 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.86441441410476}
1595023216 2020-07-18 00:00:16.529 INFO TestAgent Got mqtt message: stop
1595023216 2020-07-18 00:00:16.532 INFO TestAgent Test finished
1595023216 2020-07-18 00:00:16.537 INFO TestAgent Terminated iwevent
1595023216 2020-07-18 00:00:16.540 INFO TestAgent Terminated mqtt file
1595023216 2020-07-18 00:00:16.544 INFO TestAgent Closed rssi file
1595023216 2020-07-18 00:00:16.553 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (26303).
Exiting ovsdb-server (26288).
1595023217 2020-07-18 00:00:17.095 INFO TestAgent Reset wifi
1595023218 2020-07-18 00:00:18.122 INFO TestAgent iw sta0 connect ap1-train 5260
1595023218 2020-07-18 00:00:18.141 INFO TestAgent Done
1595023252 2020-07-18 00:00:52.065 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023257 2020-07-18 00:00:57.074 INFO TestAgent Got mqtt message: starttest-1595023219
1595023257 2020-07-18 00:00:57.078 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023257 2020-07-18 00:00:57.321 INFO TestAgent Starting Test
1595023257 2020-07-18 00:00:57.326 INFO TestAgent Create: /testdata/1595023219/
1595023263 2020-07-18 00:01:03.664 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.42894630021777}
1595023286 2020-07-18 00:01:26.741 INFO TestAgent Got mqtt message: stop
1595023286 2020-07-18 00:01:26.745 INFO TestAgent Test finished
1595023286 2020-07-18 00:01:26.750 INFO TestAgent Terminated iwevent
1595023286 2020-07-18 00:01:26.756 INFO TestAgent Terminated mqtt file
1595023286 2020-07-18 00:01:26.760 INFO TestAgent Closed rssi file
1595023286 2020-07-18 00:01:26.768 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (26580).
Exiting ovsdb-server (26567).
1595023287 2020-07-18 00:01:27.268 INFO TestAgent Reset wifi
1595023288 2020-07-18 00:01:28.318 INFO TestAgent iw sta0 connect ap1-train 5260
1595023288 2020-07-18 00:01:28.373 INFO TestAgent Done
1595023323 2020-07-18 00:02:03.252 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023328 2020-07-18 00:02:08.252 INFO TestAgent Got mqtt message: starttest--ping-1595023289
1595023328 2020-07-18 00:02:08.263 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023328 2020-07-18 00:02:08.595 INFO TestAgent Starting Test
1595023328 2020-07-18 00:02:08.598 INFO TestAgent Create: /testdata/1595023289/
1595023334 2020-07-18 00:02:14.846 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.49464873600732}
1595023337 2020-07-18 00:02:17.223 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595023358 2020-07-18 00:02:38.387 INFO TestAgent Got mqtt message: stop
1595023358 2020-07-18 00:02:38.391 INFO TestAgent Test finished
1595023358 2020-07-18 00:02:38.395 INFO TestAgent Terminated iwevent
1595023358 2020-07-18 00:02:38.405 INFO TestAgent Terminated mqtt file
1595023358 2020-07-18 00:02:38.409 INFO TestAgent Closed rssi file
1595023358 2020-07-18 00:02:38.417 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (26859).
Exiting ovsdb-server (26844).
1595023358 2020-07-18 00:02:38.816 INFO TestAgent Reset wifi
1595023359 2020-07-18 00:02:39.842 INFO TestAgent iw sta0 connect ap1-train 5260
1595023359 2020-07-18 00:02:39.861 INFO TestAgent Done
1595023401 2020-07-18 00:03:21.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595023406 2020-07-18 00:03:26.505 INFO TestAgent Got mqtt message: starttest-1595023361
1595023406 2020-07-18 00:03:26.508 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595023406 2020-07-18 00:03:26.726 INFO TestAgent Starting Test
1595023406 2020-07-18 00:03:26.730 INFO TestAgent Create: /testdata/1595023361/
1595023413 2020-07-18 00:03:33.120 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.53190531085929}
1595023415 2020-07-18 00:03:35.524 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595023436 2020-07-18 00:03:56.549 INFO TestAgent Got mqtt message: stop
1595023436 2020-07-18 00:03:56.552 INFO TestAgent Test finished
1595023436 2020-07-18 00:03:56.557 INFO TestAgent Terminated iwevent
1595023436 2020-07-18 00:03:56.561 INFO TestAgent Terminated mqtt file
1595023436 2020-07-18 00:03:56.565 INFO TestAgent Closed rssi file
1595023436 2020-07-18 00:03:56.573 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (27137).
Exiting ovsdb-server (27124).
1595023436 2020-07-18 00:03:56.976 INFO TestAgent Reset wifi
1595023438 2020-07-18 00:03:58.002 INFO TestAgent iw sta0 connect ap1-train 5260
1595023438 2020-07-18 00:03:58.037 INFO TestAgent Done
1595023649 2020-07-18 00:07:29.497 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}