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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
|
default -0x16
4.204.50.158.in-addr.arpa
start 939764277.018636
socket type=SOCK_DGRAM
socket=4
+0.000162
fcntl fd=4 cmd=F_GETFL
fcntl=~O_NONBLOCK&...
+0.000052
fcntl fd=4 cmd=F_SETFL O_NONBLOCK|...
fcntl=OK
+0.000042
sendto fd=4 addr=172.18.45.6:53
311f0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
sendto=43
+0.001984
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000131
sendto fd=4 addr=172.18.45.6:53
31200100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
sendto=43
+0.001195
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000092
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.001175
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000096
sendto fd=4 addr=172.18.45.6:53
31220100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
sendto=43
+0.001216
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000098
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.001153
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000095
sendto fd=4 addr=172.18.45.6:53
31240100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0d0001.
sendto=43
+0.001170
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000103
sendto fd=4 addr=172.18.45.6:53
31250100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0f0001.
sendto=43
+0.001162
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000099
sendto fd=4 addr=172.18.45.6:53
31260100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 100001.
sendto=43
+0.001193
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000104
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.001203
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000105
sendto fd=4 addr=172.18.45.6:53
31280100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
sendto=43
+0.001379
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000105
sendto fd=4 addr=172.18.45.6:53
31290100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
sendto=43
+0.001199
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000107
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.001196
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000111
sendto fd=4 addr=172.18.45.6:53
312b0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0f0001.
sendto=43
+0.001229
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000114
sendto fd=4 addr=172.18.45.6:53
312c0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
sendto=43
+0.001187
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000115
sendto fd=4 addr=172.18.45.6:53
312d0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.001165
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000116
select max=5 rfds=[4] wfds=[] efds=[] to=1.979603
select=1 rfds=[4] wfds=[] efds=[]
+1.005569
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31228580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
+0.000287
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000173
select max=5 rfds=[4] wfds=[] efds=[] to=0.973574
select=1 rfds=[4] wfds=[] efds=[]
+0.149373
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31248580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0d0001.
+0.000294
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000119
select max=5 rfds=[4] wfds=[] efds=[] to=0.823788
select=1 rfds=[4] wfds=[] efds=[]
+0.019622
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31258580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0f0001.
+0.000268
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000116
select max=5 rfds=[4] wfds=[] efds=[] to=0.803782
select=1 rfds=[4] wfds=[] efds=[]
+0.019566
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31268580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 100001.
+0.000266
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000116
select max=5 rfds=[4] wfds=[] efds=[] to=0.783834
select=1 rfds=[4] wfds=[] efds=[]
+0.019476
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312b8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0f0001.
+0.000261
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000120
select max=5 rfds=[4] wfds=[] efds=[] to=0.763977
select=1 rfds=[4] wfds=[] efds=[]
+0.189710
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31288580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
+0.000268
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000119
select max=5 rfds=[4] wfds=[] efds=[] to=0.573880
select=1 rfds=[4] wfds=[] efds=[]
+0.019648
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31298580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
+0.000260
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000119
select max=5 rfds=[4] wfds=[] efds=[] to=0.553853
select=1 rfds=[4] wfds=[] efds=[]
+0.019563
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312d8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
+0.000257
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000119
select max=5 rfds=[4] wfds=[] efds=[] to=0.533914
select=0 rfds=[] wfds=[] efds=[]
+1.-463554
sendto fd=4 addr=172.18.45.6:53
311f0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
sendto=43
+0.000546
sendto fd=4 addr=172.18.45.6:53
31200100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
sendto=43
+0.000484
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.000485
select max=5 rfds=[4] wfds=[] efds=[] to=0.002425
select=1 rfds=[4] wfds=[] efds=[]
+0.000119
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
311f8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
+0.000255
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31208180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
+0.000284
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000100
select max=5 rfds=[4] wfds=[] efds=[] to=0.001182
select=0 rfds=[] wfds=[] efds=[]
+0.007693
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000479
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.000465
select max=5 rfds=[4] wfds=[] efds=[] to=0.001722
select=0 rfds=[] wfds=[] efds=[]
+0.009054
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000480
sendto fd=4 addr=172.18.45.6:53
312c0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
sendto=43
+0.000488
select max=5 rfds=[4] wfds=[] efds=[] to=1.980098
select=1 rfds=[4] wfds=[] efds=[]
+0.000131
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312c8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
+0.000231
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000119
select max=5 rfds=[4] wfds=[] efds=[] to=1.979617
select=0 rfds=[] wfds=[] efds=[]
+2.-21402
select max=5 rfds=[4] wfds=[] efds=[] to=0.001019
select=0 rfds=[] wfds=[] efds=[]
+0.009951
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.000505
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000530
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.000468
select max=5 rfds=[4] wfds=[] efds=[] to=0.009497
select=0 rfds=[] wfds=[] efds=[]
+0.008500
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000459
select max=5 rfds=[4] wfds=[] efds=[] to=1.989538
select=0 rfds=[] wfds=[] efds=[]
+2.-10446
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.000537
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000485
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.000487
select max=5 rfds=[4] wfds=[] efds=[] to=0.009450
select=0 rfds=[] wfds=[] efds=[]
+0.008478
select max=5 rfds=[4] wfds=[] efds=[] to=0.000000
select=0 rfds=[] wfds=[] efds=[]
+0.000106
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000456
select max=5 rfds=[4] wfds=[] efds=[] to=1.989451
select=0 rfds=[] wfds=[] efds=[]
+2.-10542
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.000612
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000552
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.000564
select max=5 rfds=[4] wfds=[] efds=[] to=0.009474
select=0 rfds=[] wfds=[] efds=[]
+0.008252
select max=5 rfds=[4] wfds=[] efds=[] to=0.000106
select=0 rfds=[] wfds=[] efds=[]
+0.009994
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000467
select max=5 rfds=[4] wfds=[] efds=[] to=1.979559
select=1 rfds=[4] wfds=[] efds=[]
+0.372703
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312c8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 060001.
+0.000261
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000225
select max=5 rfds=[4] wfds=[] efds=[] to=1.606370
select=1 rfds=[4] wfds=[] efds=[]
+0.039270
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
311f8180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 010001.
+0.000255
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000224
select max=5 rfds=[4] wfds=[] efds=[] to=1.566621
select=1 rfds=[4] wfds=[] efds=[]
+0.149484
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31208180 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 020001.
+0.000261
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000200
select max=5 rfds=[4] wfds=[] efds=[] to=1.416676
select=0 rfds=[] wfds=[] efds=[]
+2.-583334
select max=5 rfds=[4] wfds=[] efds=[] to=0.000010
select=0 rfds=[] wfds=[] efds=[]
+0.010045
sendto fd=4 addr=172.18.45.6:53
31210100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
sendto=43
+0.000504
sendto fd=4 addr=172.18.45.6:53
31230100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000456
sendto fd=4 addr=172.18.45.6:53
31270100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
sendto=43
+0.000499
select max=5 rfds=[4] wfds=[] efds=[] to=0.008480
select=0 rfds=[] wfds=[] efds=[]
+0.008495
sendto fd=4 addr=172.18.45.6:53
312a0100 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.000644
select max=5 rfds=[4] wfds=[] efds=[] to=1.989402
select=1 rfds=[4] wfds=[] efds=[]
+0.490712
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31278580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 110001.
+0.001892
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31238380 00010012 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000000 00000d03 6e733203 61667003
636f6d00 c00c000c 00010000 00000005 026e73c0 3bc00c00 0c000100 00000000
07046e65 7773c03b c00c000c 00010000 0000000c 036e7332 03616670 02667200
c00c000c 00010000 00000005 026e73c0 78c00c00 0c000100 00000000 07046e65
7773c078 c00c000c 00010000 00000019 036e7332 12616765 6e636566 72616e63
65707265 737365c0 3fc00c00 0c000100 00000000 07046e65 7773c0b4 c00c000c
00010000 00000019 036e7332 12616765 6e636566 72616e63 65707265 737365c0
7cc00c00 0c000100 00000000 07046e65 7773c0ec c00c000c 00010000 0000001a
036e7332 13616765 6e636566 72616e63 652d7072 65737365 c03fc00c 000c0001
00000000 0007046e 657773c1 24c00c00 0c000100 00000000 1a036e73 32136167
656e6365 6672616e 63652d70 72657373 65c07cc0 0c000c00 01000000 00000704
6e657773 c15dc00c 000c0001 00000000 0011036e 73320a69 6d616765 666f7275
6dc03fc0 0c000c00 01000000 00000704 6e657773 c196c00c 000c0001 00000000
0014036e 73320a69 6d616765 666f7275 6d02746d c07cc00c 000c0001 00000000
0007046e 657773c1 c6.
+0.003281
socket type=SOCK_STREAM
socket=5
+0.002885
fcntl fd=5 cmd=F_GETFL
fcntl=~O_NONBLOCK&...
+0.000045
fcntl fd=5 cmd=F_SETFL O_NONBLOCK|...
fcntl=OK
+0.000039
connect fd=5 addr=172.18.45.6:53
connect=EINPROGRESS
+0.000565
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31218580 00010000 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 050001.
+0.000249
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312a8380 00010012 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000000 00000d03 6e733203 61667003
636f6d00 c00c000c 00010000 00000005 026e73c0 3bc00c00 0c000100 00000000
07046e65 7773c03b c00c000c 00010000 0000000c 036e7332 03616670 02667200
c00c000c 00010000 00000005 026e73c0 78c00c00 0c000100 00000000 07046e65
7773c078 c00c000c 00010000 00000019 036e7332 12616765 6e636566 72616e63
65707265 737365c0 3fc00c00 0c000100 00000000 07046e65 7773c0b4 c00c000c
00010000 00000019 036e7332 12616765 6e636566 72616e63 65707265 737365c0
7cc00c00 0c000100 00000000 07046e65 7773c0ec c00c000c 00010000 0000001a
036e7332 13616765 6e636566 72616e63 652d7072 65737365 c03fc00c 000c0001
00000000 0007046e 657773c1 24c00c00 0c000100 00000000 1a036e73 32136167
656e6365 6672616e 63652d70 72657373 65c07cc0 0c000c00 01000000 00000704
6e657773 c15dc00c 000c0001 00000000 0011036e 73320a69 6d616765 666f7275
6dc03fc0 0c000c00 01000000 00000704 6e657773 c196c00c 000c0001 00000000
0014036e 73320a69 6d616765 666f7275 6d02746d c07cc00c 000c0001 00000000
0007046e 657773c1 c6.
+0.001704
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312a8380 00010012 00000000 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000000 00000d03 6e733203 61667003
636f6d00 c00c000c 00010000 00000005 026e73c0 3bc00c00 0c000100 00000000
07046e65 7773c03b c00c000c 00010000 0000000c 036e7332 03616670 02667200
c00c000c 00010000 00000005 026e73c0 78c00c00 0c000100 00000000 07046e65
7773c078 c00c000c 00010000 00000019 036e7332 12616765 6e636566 72616e63
65707265 737365c0 3fc00c00 0c000100 00000000 07046e65 7773c0b4 c00c000c
00010000 00000019 036e7332 12616765 6e636566 72616e63 65707265 737365c0
7cc00c00 0c000100 00000000 07046e65 7773c0ec c00c000c 00010000 0000001a
036e7332 13616765 6e636566 72616e63 652d7072 65737365 c03fc00c 000c0001
00000000 0007046e 657773c1 24c00c00 0c000100 00000000 1a036e73 32136167
656e6365 6672616e 63652d70 72657373 65c07cc0 0c000c00 01000000 00000704
6e657773 c15dc00c 000c0001 00000000 0011036e 73320a69 6d616765 666f7275
6dc03fc0 0c000c00 01000000 00000704 6e657773 c196c00c 000c0001 00000000
0014036e 73320a69 6d616765 666f7275 6d02746d c07cc00c 000c0001 00000000
0007046e 657773c1 c6.
+0.001827
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000201
select max=6 rfds=[4] wfds=[5] efds=[] to=13.987312
select=1 rfds=[] wfds=[5] efds=[]
+0.000364
read fd=5 buflen=1
read=EAGAIN
+0.000127
write fd=5
002b3123 01000001 00000000 00000134 03323034 02353003 31353807 696e2d61
64647204 61727061 00000c00 01.
write=45
+0.001692
write fd=5
002b312a 01000001 00000000 00000134 03323034 02353003 31353807 696e2d61
64647204 61727061 00000c00 01.
write=45
+0.001275
select max=6 rfds=[4,5] wfds=[] efds=[5] to=29.983854
select=1 rfds=[5] wfds=[] efds=[]
+0.000150
read fd=5 buflen=2
read=OK
02e1.
+0.000196
read fd=5 buflen=737
read=OK
31238180 00010017 00020002 01340332 30340235 30033135 3807696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000000 00000d03 6e733203 61667003
636f6d00 c00c000c 00010000 00000005 026e73c0 3bc00c00 0c000100 00000000
07046e65 7773c03b c00c000c 00010000 0000000c 036e7332 03616670 02667200
c00c000c 00010000 00000005 026e73c0 78c00c00 0c000100 00000000 07046e65
7773c078 c00c000c 00010000 00000019 036e7332 12616765 6e636566 72616e63
65707265 737365c0 3fc00c00 0c000100 00000000 07046e65 7773c0b4 c00c000c
00010000 00000019 036e7332 12616765 6e636566 72616e63 65707265 737365c0
7cc00c00 0c000100 00000000 07046e65 7773c0ec c00c000c 00010000 0000001a
036e7332 13616765 6e636566 72616e63 652d7072 65737365 c03fc00c 000c0001
00000000 0007046e 657773c1 24c00c00 0c000100 00000000 1a036e73 32136167
656e6365 6672616e 63652d70 72657373 65c07cc0 0c000c00 01000000 00000704
6e657773 c15dc00c 000c0001 00000000 0011036e 73320a69 6d616765 666f7275
6dc03fc0 0c000c00 01000000 00000704 6e657773 c196c00c 000c0001 00000000
0014036e 73320a69 6d616765 666f7275 6d02746d c07cc00c 000c0001 00000000
0007046e 657773c1 c6c00c00 0c000100 00000000 12036e73 320b6f6f 682d6c61
682d6c61 68c03fc0 0c000c00 01000000 00001203 6e73320b 61667073 6369656e
636573c0 3fc00c00 0c000100 00000000 0d036e73 32066166 70646f63 c03fc00c
000c0001 00000000 0010036e 73320961 66702d6e 6f746573 c03fc00c 000c0001
00000000 0011036e 73320a61 66702d64 6f6d696e 6fc03f02 35300331 35380769
6e2d6164 64720461 72706100 00020001 0007e8fe 0002c037 02353003 31353807
696e2d61 64647204 61727061 00000200 010007e8 fe000603 4e5331c0 3bc03700
01000100 02a2fe00 049e32cc 04034e53 31c03b00 01000100 02a2fe00 04d0dfa6
03.
+0.002595
read fd=5 buflen=739
read=OK
02e1312a 81800001 00170002 00020134 03323034 02353003 31353807 696e2d61
64647204 61727061 00000c00 01c00c00 0c000100 00000000 0d036e73 32036166
7003636f 6d00c00c 000c0001 00000000 0005026e 73c03bc0 0c000c00 01000000
00000704 6e657773 c03bc00c 000c0001 00000000 000c036e 73320361 66700266
7200c00c 000c0001 00000000 0005026e 73c078c0 0c000c00 01000000 00000704
6e657773 c078c00c 000c0001 00000000 0019036e 73321261 67656e63 65667261
6e636570 72657373 65c03fc0 0c000c00 01000000 00000704 6e657773 c0b4c00c
000c0001 00000000 0019036e 73321261 67656e63 65667261 6e636570 72657373
65c07cc0 0c000c00 01000000 00000704 6e657773 c0ecc00c 000c0001 00000000
001a036e 73321361 67656e63 65667261 6e63652d 70726573 7365c03f c00c000c
00010000 00000007 046e6577 73c124c0 0c000c00 01000000 00001a03 6e733213
6167656e 63656672 616e6365 2d707265 737365c0 7cc00c00 0c000100 00000000
07046e65 7773c15d c00c000c 00010000 00000011 036e7332 0a696d61 6765666f
72756dc0 3fc00c00 0c000100 00000000 07046e65 7773c196 c00c000c 00010000
00000014 036e7332 0a696d61 6765666f 72756d02 746dc07c c00c000c 00010000
00000007 046e6577 73c1c6c0 0c000c00 01000000 00001203 6e73320b 6f6f682d
6c61682d 6c6168c0 3fc00c00 0c000100 00000000 12036e73 320b6166 70736369
656e6365 73c03fc0 0c000c00 01000000 00000d03 6e733206 61667064 6f63c03f
c00c000c 00010000 00000010 036e7332 09616670 2d6e6f74 6573c03f c00c000c
00010000 00000011 036e7332 0a616670 2d646f6d 696e6fc0 3f023530 03313538
07696e2d 61646472 04617270 61000002 00010007 e8fe0002 c0370235 30033135
3807696e 2d616464 72046172 70610000 02000100 07e8fe00 06034e53 31c03bc0
37000100 010002a2 fe00049e 32cc0403 4e5331c0 3b000100 010002a2 fe0004d0
dfa603.
+0.004644
sendto fd=4 addr=172.18.45.6:53
312e0100 00010000 00000000 036e7332 03616670 03636f6d 00000100 01.
sendto=29
+0.001410
sendto fd=4 addr=172.18.45.6:53
312f0100 00010000 00000000 026e7303 61667003 636f6d00 00010001.
sendto=28
+0.001075
sendto fd=4 addr=172.18.45.6:53
31300100 00010000 00000000 046e6577 73036166 7003636f 6d000001 0001.
sendto=30
+0.001072
sendto fd=4 addr=172.18.45.6:53
31310100 00010000 00000000 036e7332 03616670 02667200 00010001.
sendto=28
+0.001053
sendto fd=4 addr=172.18.45.6:53
31320100 00010000 00000000 026e7303 61667002 66720000 010001.
sendto=27
+0.001065
sendto fd=4 addr=172.18.45.6:53
31330100 00010000 00000000 046e6577 73036166 70026672 00000100 01.
sendto=29
+0.001063
sendto fd=4 addr=172.18.45.6:53
31340100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736503 636f6d00 00010001.
sendto=44
+0.001117
sendto fd=4 addr=172.18.45.6:53
31350100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 03636f6d 00000100 01.
sendto=45
+0.001230
sendto fd=4 addr=172.18.45.6:53
31360100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736502 66720000 010001.
sendto=43
+0.001352
sendto fd=4 addr=172.18.45.6:53
31370100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 02667200 00010001.
sendto=44
+0.001324
sendto fd=4 addr=172.18.45.6:53
31380100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 03636f6d 00000100 01.
sendto=45
+0.001336
sendto fd=4 addr=172.18.45.6:53
31390100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 6503636f 6d000001 0001.
sendto=46
+0.001340
sendto fd=4 addr=172.18.45.6:53
313a0100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 02667200 00010001.
sendto=44
+0.001322
sendto fd=4 addr=172.18.45.6:53
313b0100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 65026672 00000100 01.
sendto=45
+0.001312
sendto fd=4 addr=172.18.45.6:53
313c0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d03 636f6d00
00010001.
sendto=36
+0.001330
sendto fd=4 addr=172.18.45.6:53
313d0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 03636f6d
00000100 01.
sendto=37
+0.001298
sendto fd=4 addr=172.18.45.6:53
313e0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d02 746d0266
72000001 0001.
sendto=38
+0.001326
sendto fd=4 addr=172.18.45.6:53
313f0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 02746d02
66720000 010001.
sendto=39
+0.001310
sendto fd=4 addr=172.18.45.6:53
31400100 00010000 00000000 036e7332 0b6f6f68 2d6c6168 2d6c6168 03636f6d
00000100 01.
sendto=37
+0.001326
sendto fd=4 addr=172.18.45.6:53
31410100 00010000 00000000 036e7332 0b616670 73636965 6e636573 03636f6d
00000100 01.
sendto=37
+0.001329
sendto fd=4 addr=172.18.45.6:53
31420100 00010000 00000000 036e7332 06616670 646f6303 636f6d00 00010001.
sendto=32
+0.001283
sendto fd=4 addr=172.18.45.6:53
31430100 00010000 00000000 036e7332 09616670 2d6e6f74 65730363 6f6d0000
010001.
sendto=35
+0.001386
sendto fd=4 addr=172.18.45.6:53
31440100 00010000 00000000 036e7332 0a616670 2d646f6d 696e6f03 636f6d00
00010001.
sendto=36
+0.001512
read fd=5 buflen=739
read=EAGAIN
+0.000090
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.963304
select=1 rfds=[4] wfds=[] efds=[]
+0.004077
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312e8180 00010001 000d000d 036e7332 03616670 03636f6d 00000100 01c00c00
01000100 02813e00 049e32cc 04000002 00010007 e8df0014 014c0c52 4f4f542d
53455256 45525303 4e455400 00000200 010007e8 df000401 4dc03a00 00020001
0007e8df 00040149 c03a0000 02000100 07e8df00 040145c0 3a000002 00010007
e8df0004 0144c03a 00000200 010007e8 df000401 41c03a00 00020001 0007e8df
00040148 c03a0000 02000100 07e8df00 040143c0 3a000002 00010007 e8df0004
0147c03a 00000200 010007e8 df000401 46c03a00 00020001 0007e8df 00040142
c03a0000 02000100 07e8df00 04014ac0 3a000002 00010007 e8df0004 014bc03a
c0380001 00010009 3a5f0004 c620400c c0570001 00010009 3a5f0004 ca0c1b21
c0660001 00010009 3a5f0004 c0249411 c0750001 00010009 3a5f0004 c0cbe60a
c0840001 00010009 3a5f0004 80080a5a c0930001 00010009 3a5f0004 c6290004
c0a20001 00010009 3a5f0004 803f0235 c0b10001 00010009 3a5f0004 c021040c
c0c00001 00010009 3a5f0004 c0702404 c0cf0001 00010009 3a5f0004 c00505f1
c0de0001 00010009 3a5f0004 8009006b c0ed0001 00010009 3a5f0004 c629000a
c0fc0001 00010009 3a5f0004 c1000e81.
+0.001847
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000277
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.957103
select=0 rfds=[] wfds=[] efds=[]
+2.-40545
sendto fd=4 addr=172.18.45.6:53
312f0100 00010000 00000000 026e7303 61667003 636f6d00 00010001.
sendto=28
+0.000601
sendto fd=4 addr=172.18.45.6:53
31300100 00010000 00000000 046e6577 73036166 7003636f 6d000001 0001.
sendto=30
+0.000404
sendto fd=4 addr=172.18.45.6:53
31310100 00010000 00000000 036e7332 03616670 02667200 00010001.
sendto=28
+0.000424
sendto fd=4 addr=172.18.45.6:53
31320100 00010000 00000000 026e7303 61667002 66720000 010001.
sendto=27
+0.000383
sendto fd=4 addr=172.18.45.6:53
31330100 00010000 00000000 046e6577 73036166 70026672 00000100 01.
sendto=29
+0.000389
sendto fd=4 addr=172.18.45.6:53
31340100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736503 636f6d00 00010001.
sendto=44
+0.000446
sendto fd=4 addr=172.18.45.6:53
31350100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 03636f6d 00000100 01.
sendto=45
+0.000449
sendto fd=4 addr=172.18.45.6:53
31360100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736502 66720000 010001.
sendto=43
+0.000440
sendto fd=4 addr=172.18.45.6:53
31370100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 02667200 00010001.
sendto=44
+0.000441
sendto fd=4 addr=172.18.45.6:53
31380100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 03636f6d 00000100 01.
sendto=45
+0.000474
sendto fd=4 addr=172.18.45.6:53
31390100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 6503636f 6d000001 0001.
sendto=46
+0.000451
sendto fd=4 addr=172.18.45.6:53
313a0100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 02667200 00010001.
sendto=44
+0.000440
sendto fd=4 addr=172.18.45.6:53
313b0100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 65026672 00000100 01.
sendto=45
+0.000439
sendto fd=4 addr=172.18.45.6:53
313c0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d03 636f6d00
00010001.
sendto=36
+0.000413
sendto fd=4 addr=172.18.45.6:53
313d0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 03636f6d
00000100 01.
sendto=37
+0.000416
sendto fd=4 addr=172.18.45.6:53
313e0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d02 746d0266
72000001 0001.
sendto=38
+0.000442
sendto fd=4 addr=172.18.45.6:53
313f0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 02746d02
66720000 010001.
sendto=39
+0.000418
sendto fd=4 addr=172.18.45.6:53
31400100 00010000 00000000 036e7332 0b6f6f68 2d6c6168 2d6c6168 03636f6d
00000100 01.
sendto=37
+0.000412
sendto fd=4 addr=172.18.45.6:53
31410100 00010000 00000000 036e7332 0b616670 73636965 6e636573 03636f6d
00000100 01.
sendto=37
+0.000413
sendto fd=4 addr=172.18.45.6:53
31420100 00010000 00000000 036e7332 06616670 646f6303 636f6d00 00010001.
sendto=32
+0.000394
sendto fd=4 addr=172.18.45.6:53
31430100 00010000 00000000 036e7332 09616670 2d6e6f74 65730363 6f6d0000
010001.
sendto=35
+0.000403
sendto fd=4 addr=172.18.45.6:53
31440100 00010000 00000000 036e7332 0a616670 2d646f6d 696e6f03 636f6d00
00010001.
sendto=36
+0.000407
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.990501
select=0 rfds=[] wfds=[] efds=[]
+2.-09491
sendto fd=4 addr=172.18.45.6:53
312f0100 00010000 00000000 026e7303 61667003 636f6d00 00010001.
sendto=28
+0.000642
sendto fd=4 addr=172.18.45.6:53
31300100 00010000 00000000 046e6577 73036166 7003636f 6d000001 0001.
sendto=30
+0.000399
sendto fd=4 addr=172.18.45.6:53
31310100 00010000 00000000 036e7332 03616670 02667200 00010001.
sendto=28
+0.000385
sendto fd=4 addr=172.18.45.6:53
31320100 00010000 00000000 026e7303 61667002 66720000 010001.
sendto=27
+0.000380
sendto fd=4 addr=172.18.45.6:53
31330100 00010000 00000000 046e6577 73036166 70026672 00000100 01.
sendto=29
+0.000388
sendto fd=4 addr=172.18.45.6:53
31340100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736503 636f6d00 00010001.
sendto=44
+0.000443
sendto fd=4 addr=172.18.45.6:53
31350100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 03636f6d 00000100 01.
sendto=45
+0.000447
sendto fd=4 addr=172.18.45.6:53
31360100 00010000 00000000 036e7332 12616765 6e636566 72616e63 65707265
73736502 66720000 010001.
sendto=43
+0.000456
sendto fd=4 addr=172.18.45.6:53
31370100 00010000 00000000 046e6577 73126167 656e6365 6672616e 63657072
65737365 02667200 00010001.
sendto=44
+0.000438
sendto fd=4 addr=172.18.45.6:53
31380100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 03636f6d 00000100 01.
sendto=45
+0.000445
sendto fd=4 addr=172.18.45.6:53
31390100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 6503636f 6d000001 0001.
sendto=46
+0.000447
sendto fd=4 addr=172.18.45.6:53
313a0100 00010000 00000000 036e7332 13616765 6e636566 72616e63 652d7072
65737365 02667200 00010001.
sendto=44
+0.000437
sendto fd=4 addr=172.18.45.6:53
313b0100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 65026672 00000100 01.
sendto=45
+0.000438
sendto fd=4 addr=172.18.45.6:53
313c0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d03 636f6d00
00010001.
sendto=36
+0.000434
sendto fd=4 addr=172.18.45.6:53
313d0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 03636f6d
00000100 01.
sendto=37
+0.000416
sendto fd=4 addr=172.18.45.6:53
313e0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d02 746d0266
72000001 0001.
sendto=38
+0.000415
sendto fd=4 addr=172.18.45.6:53
313f0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 02746d02
66720000 010001.
sendto=39
+0.000416
sendto fd=4 addr=172.18.45.6:53
31400100 00010000 00000000 036e7332 0b6f6f68 2d6c6168 2d6c6168 03636f6d
00000100 01.
sendto=37
+0.000412
sendto fd=4 addr=172.18.45.6:53
31410100 00010000 00000000 036e7332 0b616670 73636965 6e636573 03636f6d
00000100 01.
sendto=37
+0.000414
sendto fd=4 addr=172.18.45.6:53
31420100 00010000 00000000 036e7332 06616670 646f6303 636f6d00 00010001.
sendto=32
+0.000392
sendto fd=4 addr=172.18.45.6:53
31430100 00010000 00000000 036e7332 09616670 2d6e6f74 65730363 6f6d0000
010001.
sendto=35
+0.000425
sendto fd=4 addr=172.18.45.6:53
31440100 00010000 00000000 036e7332 0a616670 2d646f6d 696e6f03 636f6d00
00010001.
sendto=36
+0.000409
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.990522
select=1 rfds=[4] wfds=[] efds=[]
+1.-235306
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
312f8580 00010001 00020002 026e7303 61667003 636f6d00 00010001 c00c0001
00010001 51800004 9e32cc04 03616670 03636f6d 00000200 01000151 80000603
6e7332c0 2cc02c00 02000100 01518000 06036e73 31c02cc0 3f000100 01000151
8000049e 32cc04c0 51000100 01000151 800004d0 dfa603.
+0.000734
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000269
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.224825
select=1 rfds=[4] wfds=[] efds=[]
+0.179062
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31448580 00010001 00020002 036e7332 0a616670 2d646f6d 696e6f03 636f6d00
00010001 c00c0001 00010001 51800004 9e32cc04 0a616670 2d646f6d 696e6f03
636f6d00 00020001 00015180 0002c00c c0340002 00010001 51800006 036e7331
c034c00c 00010001 00015180 00049e32 cc04c05c 00010001 00015180 0004d0df
a603.
+0.000758
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000284
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.044721
select=1 rfds=[4] wfds=[] efds=[]
+0.038932
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31438580 00010001 00020002 036e7332 09616670 2d6e6f74 65730363 6f6d0000
010001c0 0c000100 01000151 8000049e 32cc0409 6166702d 6e6f7465 7303636f
6d000002 00010001 51800002 c00cc033 00020001 00015180 0006036e 7331c033
c00c0001 00010001 51800004 9e32cc04 c05a0001 00010001 51800004 d0dfa603.
+0.000729
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000258
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.004802
select=1 rfds=[4] wfds=[] efds=[]
+0.399140
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
313a8180 00010001 00020002 036e7332 13616765 6e636566 72616e63 652d7072
65737365 02667200 00010001 c00c0001 00010005 46000004 9e32cc04 13616765
6e636566 72616e63 652d7072 65737365 02667200 00020001 00054600 0002c00c
c03c0002 00010005 46000006 036e7331 c03cc00c 00010001 00054600 00049e32
cc04c06c 00010001 00054600 0004d0df a603.
+0.000770
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000288
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.604604
select=1 rfds=[4] wfds=[] efds=[]
+0.038862
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
313d8580 00010001 00020002 046e6577 730a696d 61676566 6f72756d 03636f6d
00000100 01c00c00 01000100 01518000 049e32cc 040a696d 61676566 6f72756d
03636f6d 00000200 01000151 80000603 6e7332c0 35c03500 02000100 01518000
06036e73 31c035c0 4f000100 01000151 8000049e 32cc04c0 61000100 01000151
800004d0 dfa603.
+0.000714
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000248
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.564780
select=1 rfds=[4] wfds=[] efds=[]
+1.-870685
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31358580 00010001 00020002 046e6577 73126167 656e6365 6672616e 63657072
65737365 03636f6d 00000100 01c00c00 01000100 01518000 049e32cc 04126167
656e6365 6672616e 63657072 65737365 03636f6d 00000200 01000151 80000603
6e7332c0 3dc03d00 02000100 01518000 06036e73 31c03dc0 5f000100 01000151
8000049e 32cc04c0 71000100 01000151 800004d0 dfa603.
+0.000749
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000248
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.434468
select=1 rfds=[4] wfds=[] efds=[]
+0.038661
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31348580 00010001 00020002 036e7332 12616765 6e636566 72616e63 65707265
73736503 636f6d00 00010001 c00c0001 00010001 51800004 9e32cc04 12616765
6e636566 72616e63 65707265 73736503 636f6d00 00020001 00015180 0002c00c
c03c0002 00010001 51800006 036e7331 c03cc00c 00010001 00015180 00049e32
cc04c06c 00010001 00015180 0004d0df a603.
+0.000722
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000266
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.394819
select=1 rfds=[4] wfds=[] efds=[]
+0.049154
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31368180 00010001 00020002 036e7332 12616765 6e636566 72616e63 65707265
73736502 66720000 010001c0 0c000100 01000546 0000049e 32cc0412 6167656e
63656672 616e6365 70726573 73650266 72000002 00010005 46000002 c00cc03b
00020001 00054600 0006036e 7331c03b c00c0001 00010005 46000004 9e32cc04
c06a0001 00010005 46000004 d0dfa603.
+0.000707
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000243
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.344715
select=1 rfds=[4] wfds=[] efds=[]
+0.039336
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31388580 00010001 00020002 036e7332 13616765 6e636566 72616e63 652d7072
65737365 03636f6d 00000100 01c00c00 01000100 01518000 049e32cc 04136167
656e6365 6672616e 63652d70 72657373 6503636f 6d000002 00010001 51800002
c00cc03d 00020001 00015180 0006036e 7331c03d c00c0001 00010001 51800004
9e32cc04 c06e0001 00010001 51800004 d0dfa603.
+0.000695
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000267
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.304417
select=1 rfds=[4] wfds=[] efds=[]
+0.078532
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31308580 00010001 00020002 046e6577 73036166 7003636f 6d000001 0001c00c
00010001 00015180 00049e32 cc040361 66700363 6f6d0000 02000100 01518000
06036e73 32c02ec0 2e000200 01000151 80000603 6e7331c0 2ec04100 01000100
01518000 049e32cc 04c05300 01000100 01518000 04d0dfa6 03.
+0.000600
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000235
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.225050
select=1 rfds=[4] wfds=[] efds=[]
+0.039210
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31318180 00010001 00020002 036e7332 03616670 02667200 00010001 c00c0001
00010005 46000004 9e32cc04 03616670 02667200 00020001 00054600 0002c00c
c02c0002 00010005 46000006 036e7331 c02cc00c 00010001 00054600 00049e32
cc04c04c 00010001 00054600 0004d0df a603.
+0.000589
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000236
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.185015
select=1 rfds=[4] wfds=[] efds=[]
+0.159098
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31378180 00010001 00010001 046e6577 73126167 656e6365 6672616e 63657072
65737365 02667200 00010001 c00c0001 00010000 00000004 9e32cc04 12616765
6e636566 72616e63 65707265 73736502 66720000 02000100 00000000 06036e73
31c03cc0 5d000100 01000000 000004d0 dfa603.
+0.000578
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000253
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.025086
select=0 rfds=[] wfds=[] efds=[]
+0.025066
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.000020
select=0 rfds=[] wfds=[] efds=[]
+0.009997
sendto fd=4 addr=172.18.45.6:53
31320100 00010000 00000000 026e7303 61667002 66720000 010001.
sendto=27
+0.000458
sendto fd=4 addr=172.18.45.6:53
31330100 00010000 00000000 046e6577 73036166 70026672 00000100 01.
sendto=29
+0.000387
sendto fd=4 addr=172.18.45.6:53
31390100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 6503636f 6d000001 0001.
sendto=46
+0.000441
sendto fd=4 addr=172.18.45.6:53
313b0100 00010000 00000000 046e6577 73136167 656e6365 6672616e 63652d70
72657373 65026672 00000100 01.
sendto=45
+0.000438
sendto fd=4 addr=172.18.45.6:53
313c0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d03 636f6d00
00010001.
sendto=36
+0.000561
sendto fd=4 addr=172.18.45.6:53
313e0100 00010000 00000000 036e7332 0a696d61 6765666f 72756d02 746d0266
72000001 0001.
sendto=38
+0.000423
sendto fd=4 addr=172.18.45.6:53
313f0100 00010000 00000000 046e6577 730a696d 61676566 6f72756d 02746d02
66720000 010001.
sendto=39
+0.000446
sendto fd=4 addr=172.18.45.6:53
31400100 00010000 00000000 036e7332 0b6f6f68 2d6c6168 2d6c6168 03636f6d
00000100 01.
sendto=37
+0.000418
sendto fd=4 addr=172.18.45.6:53
31410100 00010000 00000000 036e7332 0b616670 73636965 6e636573 03636f6d
00000100 01.
sendto=37
+0.000584
sendto fd=4 addr=172.18.45.6:53
31420100 00010000 00000000 036e7332 06616670 646f6303 636f6d00 00010001.
sendto=32
+0.000560
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.995284
select=1 rfds=[4] wfds=[] efds=[]
+0.000226
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
313c8180 00010001 00020002 036e7332 0a696d61 6765666f 72756d03 636f6d00
00010001 c00c0001 00010001 409f0004 9e32cc04 0a696d61 6765666f 72756d03
434f4d00 00020001 0001517f 0002c00c c0340002 00010001 517f0006 036e7331
c034c00c 00010001 0001409f 00049e32 cc04c05c 00010001 0001517f 0004d0df
a603.
+0.000582
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000266
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.994210
select=1 rfds=[4] wfds=[] efds=[]
+0.168328
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31328180 00010001 00010001 026e7303 61667002 66720000 010001c0 0c000100
01000000 0000049e 32cc0403 61667002 66720000 02000100 00000000 06036e73
31c02bc0 3d000100 01000000 000004d0 dfa603.
+0.000470
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000252
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.825160
select=1 rfds=[4] wfds=[] efds=[]
+0.229075
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=172.18.45.6:53
31428580 00010000 00010000 036e7332 06616670 646f6303 636f6d00 00010001
06616670 646f6303 636f6d00 00060001 00015180 002c0364 6e730876 6963746f
69726502 66720004 726f6f74 c03a7727 65890000 70800000 1c20004f 1a000001
5180.
+0.000492
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.001505
close fd=4
close=OK
+0.000260
close fd=5
close=OK
+0.000401
|