-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdns_logs.json
More file actions
1200 lines (1200 loc) · 469 KB
/
dns_logs.json
File metadata and controls
1200 lines (1200 loc) · 469 KB
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
{"ts": "2025-04-23T09:21:09.069644Z", "uid": "C447871J6557", "id.orig_h": "192.168.1.12", "id.orig_p": 58167, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30372, "rtt": 0.397165, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1106}
{"ts": "2025-04-23T09:21:09.069691Z", "uid": "C835146Y6630", "id.orig_h": "192.168.1.12", "id.orig_p": 13629, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 46751, "rtt": 0.451793, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.101.14", "ttl": 896}
{"ts": "2025-04-23T09:21:09.069708Z", "uid": "C426366C9101", "id.orig_h": "192.168.1.18", "id.orig_p": 40231, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12081, "rtt": 0.458119, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.40.147", "ttl": 1869}
{"ts": "2025-04-23T09:21:09.069722Z", "uid": "C333769Y1538", "id.orig_h": "192.168.1.17", "id.orig_p": 3446, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57283, "rtt": 0.239468, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 877}
{"ts": "2025-04-23T09:21:09.069735Z", "uid": "C449093C5461", "id.orig_h": "192.168.1.17", "id.orig_p": 25615, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31762, "rtt": 0.300757, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1318}
{"ts": "2025-04-23T09:21:09.069749Z", "uid": "C979777A1362", "id.orig_h": "192.168.1.17", "id.orig_p": 16271, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17196, "rtt": 0.134111, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2041}
{"ts": "2025-04-23T09:21:09.069762Z", "uid": "C911997V2466", "id.orig_h": "192.168.1.16", "id.orig_p": 63770, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57024, "rtt": 0.091741, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.208.219", "ttl": 1964}
{"ts": "2025-04-23T09:21:09.069779Z", "uid": "C480337M9087", "id.orig_h": "192.168.1.10", "id.orig_p": 19707, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54873, "rtt": 0.167656, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.195.9", "ttl": 1587}
{"ts": "2025-04-23T09:21:09.069797Z", "uid": "C501959P1243", "id.orig_h": "192.168.1.14", "id.orig_p": 32719, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12974, "rtt": 0.342488, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 3219}
{"ts": "2025-04-23T09:21:09.069811Z", "uid": "C134877Q7730", "id.orig_h": "192.168.1.12", "id.orig_p": 8592, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 13218, "rtt": 0.448905, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.82.34", "ttl": 2550}
{"ts": "2025-04-23T09:21:09.069824Z", "uid": "C171492M9337", "id.orig_h": "192.168.1.17", "id.orig_p": 29930, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29108, "rtt": 0.319649, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 3238}
{"ts": "2025-04-23T09:21:09.069836Z", "uid": "C502638R4417", "id.orig_h": "192.168.1.21", "id.orig_p": 57366, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 40486, "rtt": 0.411965, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.70.240", "ttl": 72}
{"ts": "2025-04-23T09:21:09.069848Z", "uid": "C704418V7278", "id.orig_h": "192.168.1.10", "id.orig_p": 42128, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53632, "rtt": 0.263052, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 3244}
{"ts": "2025-04-23T09:21:09.069860Z", "uid": "C717206T1807", "id.orig_h": "192.168.1.21", "id.orig_p": 3925, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26667, "rtt": 0.326288, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 733}
{"ts": "2025-04-23T09:21:09.069873Z", "uid": "C831999I9188", "id.orig_h": "192.168.1.16", "id.orig_p": 55819, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50676, "rtt": 0.032243, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 500}
{"ts": "2025-04-23T09:21:09.069885Z", "uid": "C905028R6384", "id.orig_h": "192.168.1.21", "id.orig_p": 46187, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24948, "rtt": 0.024603, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 702}
{"ts": "2025-04-23T09:21:09.069900Z", "uid": "C912739H5681", "id.orig_h": "192.168.1.13", "id.orig_p": 34925, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36205, "rtt": 0.35755, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2444", "ttl": 1405}
{"ts": "2025-04-23T09:21:09.069921Z", "uid": "C126696X3139", "id.orig_h": "192.168.1.12", "id.orig_p": 48176, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19558, "rtt": 0.324602, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.199.61", "ttl": 2414}
{"ts": "2025-04-23T09:21:09.070023Z", "uid": "C483959R4033", "id.orig_h": "192.168.1.21", "id.orig_p": 35806, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38599, "rtt": 0.317502, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.150.10", "ttl": 2107}
{"ts": "2025-04-23T09:21:09.070044Z", "uid": "C393908W4097", "id.orig_h": "192.168.1.14", "id.orig_p": 57566, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52032, "rtt": 0.066507, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.36.21", "ttl": 646}
{"ts": "2025-04-23T09:21:09.070056Z", "uid": "C669029D7452", "id.orig_h": "192.168.1.11", "id.orig_p": 47846, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41757, "rtt": 0.365496, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2655}
{"ts": "2025-04-23T09:21:09.070068Z", "uid": "C794365A5906", "id.orig_h": "192.168.1.21", "id.orig_p": 11751, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51774, "rtt": 0.358765, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 2751}
{"ts": "2025-04-23T09:21:09.070083Z", "uid": "C608977D1314", "id.orig_h": "192.168.1.19", "id.orig_p": 16302, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16415, "rtt": 0.028109, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.238.133", "ttl": 3530}
{"ts": "2025-04-23T09:21:09.070094Z", "uid": "C878721D1888", "id.orig_h": "192.168.1.21", "id.orig_p": 7481, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11519, "rtt": 0.030381, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 185}
{"ts": "2025-04-23T09:21:09.070106Z", "uid": "C841752P9517", "id.orig_h": "192.168.1.19", "id.orig_p": 49789, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39302, "rtt": 0.368223, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3352}
{"ts": "2025-04-23T09:21:09.070118Z", "uid": "C138940F6792", "id.orig_h": "192.168.1.16", "id.orig_p": 42241, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 46874, "rtt": 0.159762, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3464", "ttl": 437}
{"ts": "2025-04-23T09:21:09.070132Z", "uid": "C943016B3774", "id.orig_h": "192.168.1.17", "id.orig_p": 61174, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57888, "rtt": 0.197781, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2489}
{"ts": "2025-04-23T09:21:09.070143Z", "uid": "C658384M1515", "id.orig_h": "192.168.1.20", "id.orig_p": 11700, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 35075, "rtt": 0.02152, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.89.39", "ttl": 92}
{"ts": "2025-04-23T09:21:09.070155Z", "uid": "C856715F3383", "id.orig_h": "192.168.1.19", "id.orig_p": 2817, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30843, "rtt": 0.284111, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 3570}
{"ts": "2025-04-23T09:21:09.070166Z", "uid": "C395149R5056", "id.orig_h": "192.168.1.20", "id.orig_p": 64787, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53961, "rtt": 0.241537, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8286", "ttl": 2361}
{"ts": "2025-04-23T09:21:09.070177Z", "uid": "C435748K4655", "id.orig_h": "192.168.1.14", "id.orig_p": 6270, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44693, "rtt": 0.051351, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4342", "ttl": 2357}
{"ts": "2025-04-23T09:21:09.070191Z", "uid": "C142665A4999", "id.orig_h": "192.168.1.21", "id.orig_p": 18869, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22674, "rtt": 0.142178, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7206", "ttl": 3186}
{"ts": "2025-04-23T09:21:09.070202Z", "uid": "C362237P5500", "id.orig_h": "192.168.1.21", "id.orig_p": 10970, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 34560, "rtt": 0.047059, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.4.228", "ttl": 921}
{"ts": "2025-04-23T09:21:09.070215Z", "uid": "C296520I2306", "id.orig_h": "192.168.1.21", "id.orig_p": 61267, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54003, "rtt": 0.24737, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8701", "ttl": 2002}
{"ts": "2025-04-23T09:21:09.070227Z", "uid": "C808712T7837", "id.orig_h": "192.168.1.20", "id.orig_p": 8009, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19159, "rtt": 0.078936, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 3365}
{"ts": "2025-04-23T09:21:09.070239Z", "uid": "C330498B5821", "id.orig_h": "192.168.1.17", "id.orig_p": 27772, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53506, "rtt": 0.378397, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1087}
{"ts": "2025-04-23T09:21:09.070252Z", "uid": "C142635B7372", "id.orig_h": "192.168.1.21", "id.orig_p": 30968, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 10355, "rtt": 0.340157, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 2506}
{"ts": "2025-04-23T09:21:09.070264Z", "uid": "C491482B7248", "id.orig_h": "192.168.1.20", "id.orig_p": 46673, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14849, "rtt": 0.252484, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.186.205", "ttl": 1069}
{"ts": "2025-04-23T09:21:09.070275Z", "uid": "C486578N2184", "id.orig_h": "192.168.1.10", "id.orig_p": 49300, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15254, "rtt": 0.248844, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.51.255", "ttl": 938}
{"ts": "2025-04-23T09:21:09.070287Z", "uid": "C434380H7350", "id.orig_h": "192.168.1.11", "id.orig_p": 18627, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35869, "rtt": 0.47868, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9369", "ttl": 2358}
{"ts": "2025-04-23T09:21:09.070299Z", "uid": "C821381T1075", "id.orig_h": "192.168.1.14", "id.orig_p": 13775, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25368, "rtt": 0.142406, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.225.244", "ttl": 280}
{"ts": "2025-04-23T09:21:09.070311Z", "uid": "C962828L7663", "id.orig_h": "192.168.1.16", "id.orig_p": 38651, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11153, "rtt": 0.394555, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 3097}
{"ts": "2025-04-23T09:21:09.070323Z", "uid": "C806134U3186", "id.orig_h": "192.168.1.20", "id.orig_p": 47819, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50043, "rtt": 0.125091, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 211}
{"ts": "2025-04-23T09:21:09.070345Z", "uid": "C137900T2836", "id.orig_h": "192.168.1.13", "id.orig_p": 58347, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58581, "rtt": 0.109686, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.21.202", "ttl": 2286}
{"ts": "2025-04-23T09:21:09.070356Z", "uid": "C759783U8144", "id.orig_h": "192.168.1.10", "id.orig_p": 38108, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 56559, "rtt": 0.012571, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.214.251", "ttl": 2552}
{"ts": "2025-04-23T09:21:09.070368Z", "uid": "C857789P4801", "id.orig_h": "192.168.1.18", "id.orig_p": 1917, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23924, "rtt": 0.222597, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 2685}
{"ts": "2025-04-23T09:21:09.070379Z", "uid": "C369312K9270", "id.orig_h": "192.168.1.14", "id.orig_p": 33708, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 55669, "rtt": 0.149664, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5767", "ttl": 1514}
{"ts": "2025-04-23T09:21:09.070391Z", "uid": "C124508A8463", "id.orig_h": "192.168.1.18", "id.orig_p": 12594, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30034, "rtt": 0.226259, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 3186}
{"ts": "2025-04-23T09:21:09.070410Z", "uid": "C428138I4992", "id.orig_h": "192.168.1.18", "id.orig_p": 35308, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13029, "rtt": 0.409122, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.142.9", "ttl": 2659}
{"ts": "2025-04-23T09:21:09.070430Z", "uid": "C908663M9685", "id.orig_h": "192.168.1.21", "id.orig_p": 53989, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58213, "rtt": 0.213766, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1969}
{"ts": "2025-04-23T09:21:09.070444Z", "uid": "C976824C2903", "id.orig_h": "192.168.1.21", "id.orig_p": 64336, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43086, "rtt": 0.17119, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 3400}
{"ts": "2025-04-23T09:21:09.070456Z", "uid": "C304317U3987", "id.orig_h": "192.168.1.14", "id.orig_p": 64335, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 34794, "rtt": 0.248265, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 1375}
{"ts": "2025-04-23T09:21:09.070468Z", "uid": "C267762M7329", "id.orig_h": "192.168.1.13", "id.orig_p": 60814, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 51054, "rtt": 0.3382, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.34.124", "ttl": 2824}
{"ts": "2025-04-23T09:21:09.070480Z", "uid": "C600319I1505", "id.orig_h": "192.168.1.14", "id.orig_p": 46230, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14756, "rtt": 0.191948, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.171.195", "ttl": 3360}
{"ts": "2025-04-23T09:21:09.070492Z", "uid": "C319477E2922", "id.orig_h": "192.168.1.18", "id.orig_p": 4759, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 15633, "rtt": 0.480475, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 2789}
{"ts": "2025-04-23T09:21:09.070505Z", "uid": "C628830I1928", "id.orig_h": "192.168.1.19", "id.orig_p": 50113, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22382, "rtt": 0.055013, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1045}
{"ts": "2025-04-23T09:21:09.070517Z", "uid": "C444075O4296", "id.orig_h": "192.168.1.12", "id.orig_p": 15323, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50046, "rtt": 0.133869, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 2104}
{"ts": "2025-04-23T09:21:09.070528Z", "uid": "C569900M3614", "id.orig_h": "192.168.1.17", "id.orig_p": 58838, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39757, "rtt": 0.283933, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6271", "ttl": 1009}
{"ts": "2025-04-23T09:21:09.070542Z", "uid": "C333176O8523", "id.orig_h": "192.168.1.19", "id.orig_p": 55360, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17273, "rtt": 0.117033, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 3358}
{"ts": "2025-04-23T09:21:09.070554Z", "uid": "C637112Q4490", "id.orig_h": "192.168.1.12", "id.orig_p": 48767, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41730, "rtt": 0.0494, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7428", "ttl": 1398}
{"ts": "2025-04-23T09:21:09.070565Z", "uid": "C836841G8082", "id.orig_h": "192.168.1.11", "id.orig_p": 43583, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38058, "rtt": 0.185824, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 3002}
{"ts": "2025-04-23T09:21:09.070577Z", "uid": "C274959D5145", "id.orig_h": "192.168.1.15", "id.orig_p": 44013, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53501, "rtt": 0.418142, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 2554}
{"ts": "2025-04-23T09:21:09.070589Z", "uid": "C605520V6695", "id.orig_h": "192.168.1.10", "id.orig_p": 52224, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21324, "rtt": 0.238098, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.88.179", "ttl": 2168}
{"ts": "2025-04-23T09:21:09.070600Z", "uid": "C433105Z6960", "id.orig_h": "192.168.1.18", "id.orig_p": 24688, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23192, "rtt": 0.29807, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.43.31", "ttl": 304}
{"ts": "2025-04-23T09:21:09.070612Z", "uid": "C502523F5151", "id.orig_h": "192.168.1.13", "id.orig_p": 46486, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25814, "rtt": 0.066353, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9600", "ttl": 323}
{"ts": "2025-04-23T09:21:09.070624Z", "uid": "C607379S8591", "id.orig_h": "192.168.1.21", "id.orig_p": 54983, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54971, "rtt": 0.30207, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.187.105", "ttl": 2212}
{"ts": "2025-04-23T09:21:09.070636Z", "uid": "C958356G8535", "id.orig_h": "192.168.1.16", "id.orig_p": 46416, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42067, "rtt": 0.275416, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.205.210", "ttl": 706}
{"ts": "2025-04-23T09:21:09.070650Z", "uid": "C740705B6728", "id.orig_h": "192.168.1.10", "id.orig_p": 54120, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44994, "rtt": 0.49188, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1260", "ttl": 1057}
{"ts": "2025-04-23T09:21:09.070663Z", "uid": "C951271M3369", "id.orig_h": "192.168.1.15", "id.orig_p": 37971, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58007, "rtt": 0.378127, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.157.99", "ttl": 1419}
{"ts": "2025-04-23T09:21:09.070675Z", "uid": "C152228K5444", "id.orig_h": "192.168.1.10", "id.orig_p": 63694, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49334, "rtt": 0.305695, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.53.127", "ttl": 2978}
{"ts": "2025-04-23T09:21:09.070687Z", "uid": "C559302D3768", "id.orig_h": "192.168.1.12", "id.orig_p": 31258, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58069, "rtt": 0.464591, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 781}
{"ts": "2025-04-23T09:21:09.070698Z", "uid": "C385916T2470", "id.orig_h": "192.168.1.12", "id.orig_p": 48767, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30353, "rtt": 0.308831, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.21.149", "ttl": 680}
{"ts": "2025-04-23T09:21:09.070709Z", "uid": "C441634P5626", "id.orig_h": "192.168.1.21", "id.orig_p": 55075, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24997, "rtt": 0.451171, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.55.170", "ttl": 2235}
{"ts": "2025-04-23T09:21:09.070721Z", "uid": "C344031L1654", "id.orig_h": "192.168.1.10", "id.orig_p": 17425, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37988, "rtt": 0.2184, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1505}
{"ts": "2025-04-23T09:21:09.070733Z", "uid": "C769611T2559", "id.orig_h": "192.168.1.15", "id.orig_p": 63773, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17932, "rtt": 0.497171, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.6.18", "ttl": 1772}
{"ts": "2025-04-23T09:21:09.070744Z", "uid": "C670032M6535", "id.orig_h": "192.168.1.15", "id.orig_p": 30247, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 46452, "rtt": 0.485531, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 494}
{"ts": "2025-04-23T09:21:09.070761Z", "uid": "C630446Y8239", "id.orig_h": "192.168.1.17", "id.orig_p": 52714, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33225, "rtt": 0.210423, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 897}
{"ts": "2025-04-23T09:21:09.070773Z", "uid": "C289034A7648", "id.orig_h": "192.168.1.10", "id.orig_p": 19168, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47396, "rtt": 0.339694, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.113.128", "ttl": 958}
{"ts": "2025-04-23T09:21:09.070785Z", "uid": "C610681Z6083", "id.orig_h": "192.168.1.13", "id.orig_p": 9454, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19381, "rtt": 0.186068, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2841}
{"ts": "2025-04-23T09:21:09.070796Z", "uid": "C664975S4887", "id.orig_h": "192.168.1.16", "id.orig_p": 11392, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46087, "rtt": 0.143599, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5875", "ttl": 1910}
{"ts": "2025-04-23T09:21:09.070807Z", "uid": "C345707I8254", "id.orig_h": "192.168.1.18", "id.orig_p": 17073, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22288, "rtt": 0.061858, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3903", "ttl": 390}
{"ts": "2025-04-23T09:21:09.070819Z", "uid": "C832004R1947", "id.orig_h": "192.168.1.19", "id.orig_p": 31771, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28660, "rtt": 0.250737, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4008", "ttl": 638}
{"ts": "2025-04-23T09:21:09.070844Z", "uid": "C770412Q6831", "id.orig_h": "192.168.1.17", "id.orig_p": 35731, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45528, "rtt": 0.189887, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.157.253", "ttl": 1272}
{"ts": "2025-04-23T09:21:09.070867Z", "uid": "C400957X6471", "id.orig_h": "192.168.1.10", "id.orig_p": 28258, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37717, "rtt": 0.428671, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1540}
{"ts": "2025-04-23T09:21:09.070881Z", "uid": "C671464R3647", "id.orig_h": "192.168.1.12", "id.orig_p": 20904, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 30154, "rtt": 0.429679, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.63.162", "ttl": 3297}
{"ts": "2025-04-23T09:21:09.070894Z", "uid": "C734307G5263", "id.orig_h": "192.168.1.11", "id.orig_p": 56455, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45804, "rtt": 0.468741, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7588", "ttl": 584}
{"ts": "2025-04-23T09:21:09.070906Z", "uid": "C981456J9920", "id.orig_h": "192.168.1.10", "id.orig_p": 56756, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11919, "rtt": 0.275414, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 3364}
{"ts": "2025-04-23T09:21:09.070918Z", "uid": "C247919Q6883", "id.orig_h": "192.168.1.19", "id.orig_p": 34691, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 14914, "rtt": 0.075673, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1351}
{"ts": "2025-04-23T09:21:09.070929Z", "uid": "C427819H5243", "id.orig_h": "192.168.1.12", "id.orig_p": 64604, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35259, "rtt": 0.436203, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2422}
{"ts": "2025-04-23T09:21:09.070940Z", "uid": "C487459L3021", "id.orig_h": "192.168.1.10", "id.orig_p": 65535, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43728, "rtt": 0.293453, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 73}
{"ts": "2025-04-23T09:21:09.070951Z", "uid": "C383809U6970", "id.orig_h": "192.168.1.16", "id.orig_p": 11819, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38018, "rtt": 0.332626, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.64.72", "ttl": 2802}
{"ts": "2025-04-23T09:21:09.070964Z", "uid": "C774392E3580", "id.orig_h": "192.168.1.17", "id.orig_p": 11222, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54563, "rtt": 0.169441, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 432}
{"ts": "2025-04-23T09:21:09.070975Z", "uid": "C125701B3658", "id.orig_h": "192.168.1.19", "id.orig_p": 10044, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37696, "rtt": 0.396029, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 3185}
{"ts": "2025-04-23T09:21:09.070987Z", "uid": "C393095O6550", "id.orig_h": "192.168.1.20", "id.orig_p": 23042, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 28066, "rtt": 0.365694, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 420}
{"ts": "2025-04-23T09:21:09.071000Z", "uid": "C613146S1002", "id.orig_h": "192.168.1.20", "id.orig_p": 42711, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11580, "rtt": 0.057673, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7936", "ttl": 2636}
{"ts": "2025-04-23T09:21:09.071012Z", "uid": "C733287M5400", "id.orig_h": "192.168.1.17", "id.orig_p": 14202, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53708, "rtt": 0.193373, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4078", "ttl": 1196}
{"ts": "2025-04-23T09:21:09.071023Z", "uid": "C881896M8957", "id.orig_h": "192.168.1.19", "id.orig_p": 3919, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11157, "rtt": 0.276848, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1217}
{"ts": "2025-04-23T09:21:09.071034Z", "uid": "C963178W4125", "id.orig_h": "192.168.1.13", "id.orig_p": 17967, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17861, "rtt": 0.452884, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 645}
{"ts": "2025-04-23T09:21:09.071046Z", "uid": "C969771B3627", "id.orig_h": "192.168.1.10", "id.orig_p": 10569, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 27777, "rtt": 0.49017, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1755", "ttl": 1302}
{"ts": "2025-04-23T09:21:09.071057Z", "uid": "C595310X4618", "id.orig_h": "192.168.1.18", "id.orig_p": 9593, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41833, "rtt": 0.433276, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1389}
{"ts": "2025-04-23T09:21:09.071069Z", "uid": "C869227J7237", "id.orig_h": "192.168.1.16", "id.orig_p": 24880, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31047, "rtt": 0.197828, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2430}
{"ts": "2025-04-23T09:21:09.071080Z", "uid": "C425646G4984", "id.orig_h": "192.168.1.13", "id.orig_p": 15690, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54117, "rtt": 0.294349, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 3502}
{"ts": "2025-04-23T09:21:09.071099Z", "uid": "C442817X6189", "id.orig_h": "192.168.1.20", "id.orig_p": 50512, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53352, "rtt": 0.251892, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 223}
{"ts": "2025-04-23T09:21:09.071119Z", "uid": "C683611N8318", "id.orig_h": "192.168.1.11", "id.orig_p": 21991, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 32070, "rtt": 0.40412, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5299", "ttl": 2360}
{"ts": "2025-04-23T09:21:09.071133Z", "uid": "C423265T4096", "id.orig_h": "192.168.1.10", "id.orig_p": 23587, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16694, "rtt": 0.18496, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.196.128", "ttl": 631}
{"ts": "2025-04-23T09:21:09.071144Z", "uid": "C582695V3132", "id.orig_h": "192.168.1.15", "id.orig_p": 15842, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31931, "rtt": 0.261292, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2939}
{"ts": "2025-04-23T09:21:09.071155Z", "uid": "C953340O1613", "id.orig_h": "192.168.1.21", "id.orig_p": 45592, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33160, "rtt": 0.404994, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6127", "ttl": 632}
{"ts": "2025-04-23T09:21:09.071167Z", "uid": "C545418Z5367", "id.orig_h": "192.168.1.11", "id.orig_p": 39171, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54719, "rtt": 0.227479, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 1261}
{"ts": "2025-04-23T09:21:09.071178Z", "uid": "C323639Y6271", "id.orig_h": "192.168.1.12", "id.orig_p": 21171, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38717, "rtt": 0.010368, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1539}
{"ts": "2025-04-23T09:21:09.071199Z", "uid": "C270132K7279", "id.orig_h": "192.168.1.10", "id.orig_p": 24109, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26584, "rtt": 0.496039, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 2274}
{"ts": "2025-04-23T09:21:09.071215Z", "uid": "C194100N8046", "id.orig_h": "192.168.1.19", "id.orig_p": 37864, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14212, "rtt": 0.20674, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1704}
{"ts": "2025-04-23T09:21:09.071226Z", "uid": "C731311S9400", "id.orig_h": "192.168.1.13", "id.orig_p": 34498, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38119, "rtt": 0.273415, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.123.75", "ttl": 1605}
{"ts": "2025-04-23T09:21:09.071238Z", "uid": "C713841X9166", "id.orig_h": "192.168.1.21", "id.orig_p": 57622, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53025, "rtt": 0.238675, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 1549}
{"ts": "2025-04-23T09:21:09.071250Z", "uid": "C610610I4186", "id.orig_h": "192.168.1.15", "id.orig_p": 39022, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44722, "rtt": 0.225646, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.30.93", "ttl": 66}
{"ts": "2025-04-23T09:21:09.071262Z", "uid": "C534566A7867", "id.orig_h": "192.168.1.12", "id.orig_p": 19542, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30541, "rtt": 0.168034, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1504}
{"ts": "2025-04-23T09:21:09.071274Z", "uid": "C282199M3451", "id.orig_h": "192.168.1.11", "id.orig_p": 31276, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26518, "rtt": 0.157502, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 421}
{"ts": "2025-04-23T09:21:09.071286Z", "uid": "C722108N9330", "id.orig_h": "192.168.1.21", "id.orig_p": 42408, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32120, "rtt": 0.489508, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6709", "ttl": 2856}
{"ts": "2025-04-23T09:21:09.071297Z", "uid": "C582996S4861", "id.orig_h": "192.168.1.15", "id.orig_p": 56208, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32891, "rtt": 0.26538, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1652", "ttl": 2699}
{"ts": "2025-04-23T09:21:09.071308Z", "uid": "C214248C3849", "id.orig_h": "192.168.1.21", "id.orig_p": 44704, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26306, "rtt": 0.044181, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.254.233", "ttl": 2536}
{"ts": "2025-04-23T09:21:09.071320Z", "uid": "C584152S6181", "id.orig_h": "192.168.1.21", "id.orig_p": 31140, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23456, "rtt": 0.151573, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 953}
{"ts": "2025-04-23T09:21:09.071332Z", "uid": "C899142V4448", "id.orig_h": "192.168.1.14", "id.orig_p": 3330, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52090, "rtt": 0.291358, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1335", "ttl": 2447}
{"ts": "2025-04-23T09:21:09.071344Z", "uid": "C315760A3866", "id.orig_h": "192.168.1.17", "id.orig_p": 30546, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22327, "rtt": 0.381287, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2441}
{"ts": "2025-04-23T09:21:09.071356Z", "uid": "C985189K4673", "id.orig_h": "192.168.1.10", "id.orig_p": 46570, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17257, "rtt": 0.239217, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 533}
{"ts": "2025-04-23T09:21:09.071368Z", "uid": "C831574Z1795", "id.orig_h": "192.168.1.12", "id.orig_p": 38342, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 58630, "rtt": 0.136671, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1649}
{"ts": "2025-04-23T09:21:09.071379Z", "uid": "C815344P2442", "id.orig_h": "192.168.1.10", "id.orig_p": 54180, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16675, "rtt": 0.407298, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8396", "ttl": 1087}
{"ts": "2025-04-23T09:21:09.071390Z", "uid": "C759081B4705", "id.orig_h": "192.168.1.18", "id.orig_p": 1060, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 34227, "rtt": 0.210444, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.3.88", "ttl": 269}
{"ts": "2025-04-23T09:21:09.071402Z", "uid": "C151717D7490", "id.orig_h": "192.168.1.16", "id.orig_p": 29881, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50894, "rtt": 0.487492, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 482}
{"ts": "2025-04-23T09:21:09.071413Z", "uid": "C752904A7442", "id.orig_h": "192.168.1.16", "id.orig_p": 58309, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41873, "rtt": 0.49725, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 680}
{"ts": "2025-04-23T09:21:09.071424Z", "uid": "C894697D1526", "id.orig_h": "192.168.1.17", "id.orig_p": 20572, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 58617, "rtt": 0.051357, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1788}
{"ts": "2025-04-23T09:21:09.071436Z", "uid": "C849014N7040", "id.orig_h": "192.168.1.10", "id.orig_p": 64274, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 34901, "rtt": 0.043715, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7813", "ttl": 635}
{"ts": "2025-04-23T09:21:09.071448Z", "uid": "C788919F3739", "id.orig_h": "192.168.1.19", "id.orig_p": 57111, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48746, "rtt": 0.048649, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 628}
{"ts": "2025-04-23T09:21:09.071460Z", "uid": "C549124F8168", "id.orig_h": "192.168.1.17", "id.orig_p": 8324, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33884, "rtt": 0.319847, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 2474}
{"ts": "2025-04-23T09:21:09.071471Z", "uid": "C149336R1193", "id.orig_h": "192.168.1.20", "id.orig_p": 21220, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 37045, "rtt": 0.055445, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 3506}
{"ts": "2025-04-23T09:21:09.071489Z", "uid": "C729456H2219", "id.orig_h": "192.168.1.19", "id.orig_p": 22521, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26514, "rtt": 0.246265, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1251}
{"ts": "2025-04-23T09:21:09.071508Z", "uid": "C951155W9915", "id.orig_h": "192.168.1.13", "id.orig_p": 1686, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23601, "rtt": 0.485943, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.69.18", "ttl": 414}
{"ts": "2025-04-23T09:21:09.071521Z", "uid": "C106835R8070", "id.orig_h": "192.168.1.13", "id.orig_p": 15491, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44044, "rtt": 0.025218, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5517", "ttl": 411}
{"ts": "2025-04-23T09:21:09.071532Z", "uid": "C365827C9154", "id.orig_h": "192.168.1.21", "id.orig_p": 50129, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57391, "rtt": 0.44759, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6834", "ttl": 3364}
{"ts": "2025-04-23T09:21:09.071544Z", "uid": "C288456B9524", "id.orig_h": "192.168.1.16", "id.orig_p": 43151, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 46561, "rtt": 0.287714, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2084", "ttl": 3446}
{"ts": "2025-04-23T09:21:09.071555Z", "uid": "C818695K6433", "id.orig_h": "192.168.1.15", "id.orig_p": 59843, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53684, "rtt": 0.253189, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 902}
{"ts": "2025-04-23T09:21:09.071567Z", "uid": "C286385F4839", "id.orig_h": "192.168.1.20", "id.orig_p": 64545, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53458, "rtt": 0.465542, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2271", "ttl": 2502}
{"ts": "2025-04-23T09:21:09.071578Z", "uid": "C934149M4337", "id.orig_h": "192.168.1.17", "id.orig_p": 14517, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49972, "rtt": 0.478847, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9456", "ttl": 211}
{"ts": "2025-04-23T09:21:09.071589Z", "uid": "C164484J6858", "id.orig_h": "192.168.1.18", "id.orig_p": 59367, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 21606, "rtt": 0.150409, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1345}
{"ts": "2025-04-23T09:21:09.071601Z", "uid": "C314638P2886", "id.orig_h": "192.168.1.21", "id.orig_p": 36704, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19134, "rtt": 0.348181, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.254.150", "ttl": 3414}
{"ts": "2025-04-23T09:21:09.071612Z", "uid": "C312312P6807", "id.orig_h": "192.168.1.18", "id.orig_p": 37006, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12180, "rtt": 0.186375, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.138.29", "ttl": 1993}
{"ts": "2025-04-23T09:21:09.071625Z", "uid": "C227465I2349", "id.orig_h": "192.168.1.12", "id.orig_p": 63960, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 14659, "rtt": 0.027751, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9304", "ttl": 914}
{"ts": "2025-04-23T09:21:09.071636Z", "uid": "C133470Y1780", "id.orig_h": "192.168.1.19", "id.orig_p": 51885, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19871, "rtt": 0.473316, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 3174}
{"ts": "2025-04-23T09:21:09.071649Z", "uid": "C806885S6699", "id.orig_h": "192.168.1.10", "id.orig_p": 36553, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15449, "rtt": 0.427376, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 150}
{"ts": "2025-04-23T09:21:09.071660Z", "uid": "C856169R6317", "id.orig_h": "192.168.1.17", "id.orig_p": 6860, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53711, "rtt": 0.429659, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 218}
{"ts": "2025-04-23T09:21:09.071671Z", "uid": "C316613W1377", "id.orig_h": "192.168.1.19", "id.orig_p": 27461, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 48466, "rtt": 0.451577, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3305", "ttl": 2643}
{"ts": "2025-04-23T09:21:09.071683Z", "uid": "C890613F2573", "id.orig_h": "192.168.1.12", "id.orig_p": 12989, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35962, "rtt": 0.351458, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6398", "ttl": 2801}
{"ts": "2025-04-23T09:21:09.071694Z", "uid": "C380199C3046", "id.orig_h": "192.168.1.21", "id.orig_p": 30206, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42421, "rtt": 0.178825, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.99.48", "ttl": 1728}
{"ts": "2025-04-23T09:21:09.071706Z", "uid": "C441763M4816", "id.orig_h": "192.168.1.17", "id.orig_p": 58089, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42845, "rtt": 0.133054, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8533", "ttl": 2976}
{"ts": "2025-04-23T09:21:09.071717Z", "uid": "C362942Q8230", "id.orig_h": "192.168.1.12", "id.orig_p": 49192, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39497, "rtt": 0.220534, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.51.163", "ttl": 1654}
{"ts": "2025-04-23T09:21:09.071728Z", "uid": "C104398Q3070", "id.orig_h": "192.168.1.20", "id.orig_p": 52363, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 29104, "rtt": 0.350735, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1547}
{"ts": "2025-04-23T09:21:09.071741Z", "uid": "C921827U1592", "id.orig_h": "192.168.1.10", "id.orig_p": 22331, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40097, "rtt": 0.13598, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1986}
{"ts": "2025-04-23T09:21:09.071752Z", "uid": "C926174E7603", "id.orig_h": "192.168.1.13", "id.orig_p": 63643, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33603, "rtt": 0.106272, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 338}
{"ts": "2025-04-23T09:21:09.071764Z", "uid": "C575980F2477", "id.orig_h": "192.168.1.20", "id.orig_p": 63844, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42429, "rtt": 0.378347, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1301}
{"ts": "2025-04-23T09:21:09.071775Z", "uid": "C581371P9761", "id.orig_h": "192.168.1.13", "id.orig_p": 50510, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21377, "rtt": 0.26396, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6565", "ttl": 3531}
{"ts": "2025-04-23T09:21:09.071787Z", "uid": "C416639T6649", "id.orig_h": "192.168.1.11", "id.orig_p": 59788, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32567, "rtt": 0.046369, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 1767}
{"ts": "2025-04-23T09:21:09.071798Z", "uid": "C386048P2934", "id.orig_h": "192.168.1.11", "id.orig_p": 48414, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 34672, "rtt": 0.419583, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5950", "ttl": 1203}
{"ts": "2025-04-23T09:21:09.071809Z", "uid": "C570634Q7757", "id.orig_h": "192.168.1.12", "id.orig_p": 63994, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43942, "rtt": 0.147118, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 199}
{"ts": "2025-04-23T09:21:09.071821Z", "uid": "C754175L1359", "id.orig_h": "192.168.1.20", "id.orig_p": 23090, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45209, "rtt": 0.015862, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 321}
{"ts": "2025-04-23T09:21:09.071832Z", "uid": "C693303Q5310", "id.orig_h": "192.168.1.13", "id.orig_p": 3700, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46098, "rtt": 0.406383, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.96.186", "ttl": 2990}
{"ts": "2025-04-23T09:21:09.071843Z", "uid": "C669688B9915", "id.orig_h": "192.168.1.13", "id.orig_p": 61666, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54828, "rtt": 0.01481, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6382", "ttl": 2686}
{"ts": "2025-04-23T09:21:09.071854Z", "uid": "C189007U5226", "id.orig_h": "192.168.1.12", "id.orig_p": 33897, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57198, "rtt": 0.476715, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1841}
{"ts": "2025-04-23T09:21:09.071866Z", "uid": "C511362E9387", "id.orig_h": "192.168.1.13", "id.orig_p": 50459, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52483, "rtt": 0.381352, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7672", "ttl": 2625}
{"ts": "2025-04-23T09:21:09.071877Z", "uid": "C157512H6196", "id.orig_h": "192.168.1.20", "id.orig_p": 44638, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51525, "rtt": 0.016421, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 2410}
{"ts": "2025-04-23T09:21:09.071889Z", "uid": "C739863I9172", "id.orig_h": "192.168.1.20", "id.orig_p": 24899, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19530, "rtt": 0.025886, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 1514}
{"ts": "2025-04-23T09:21:09.071901Z", "uid": "C936156I6925", "id.orig_h": "192.168.1.14", "id.orig_p": 49598, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40760, "rtt": 0.463695, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 2783}
{"ts": "2025-04-23T09:21:09.071913Z", "uid": "C630253W8811", "id.orig_h": "192.168.1.18", "id.orig_p": 36456, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39542, "rtt": 0.203015, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.39.191", "ttl": 2648}
{"ts": "2025-04-23T09:21:09.071933Z", "uid": "C154844E9624", "id.orig_h": "192.168.1.20", "id.orig_p": 63584, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 54413, "rtt": 0.283605, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.189.113", "ttl": 2859}
{"ts": "2025-04-23T09:21:09.071944Z", "uid": "C483687S6342", "id.orig_h": "192.168.1.17", "id.orig_p": 41567, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33345, "rtt": 0.245926, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.3.211", "ttl": 1954}
{"ts": "2025-04-23T09:21:09.071957Z", "uid": "C474381A1539", "id.orig_h": "192.168.1.19", "id.orig_p": 32729, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 30529, "rtt": 0.330935, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.8.187", "ttl": 320}
{"ts": "2025-04-23T09:21:09.071969Z", "uid": "C288785J7278", "id.orig_h": "192.168.1.12", "id.orig_p": 54172, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 49495, "rtt": 0.24539, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 3144}
{"ts": "2025-04-23T09:21:09.071981Z", "uid": "C325950Z7664", "id.orig_h": "192.168.1.10", "id.orig_p": 63651, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17997, "rtt": 0.226359, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 769}
{"ts": "2025-04-23T09:21:09.071992Z", "uid": "C916708F4236", "id.orig_h": "192.168.1.18", "id.orig_p": 50111, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32578, "rtt": 0.041734, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.241.114", "ttl": 847}
{"ts": "2025-04-23T09:21:09.072003Z", "uid": "C304154M5477", "id.orig_h": "192.168.1.15", "id.orig_p": 10091, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20724, "rtt": 0.149837, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2961}
{"ts": "2025-04-23T09:21:09.072014Z", "uid": "C638205O7851", "id.orig_h": "192.168.1.12", "id.orig_p": 64201, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14224, "rtt": 0.370427, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.111.187", "ttl": 803}
{"ts": "2025-04-23T09:21:09.072025Z", "uid": "C464303Q2666", "id.orig_h": "192.168.1.10", "id.orig_p": 1447, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16189, "rtt": 0.38398, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 2594}
{"ts": "2025-04-23T09:21:09.072037Z", "uid": "C769043L7496", "id.orig_h": "192.168.1.16", "id.orig_p": 47607, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45415, "rtt": 0.455665, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.78.211", "ttl": 1021}
{"ts": "2025-04-23T09:21:09.072206Z", "uid": "C622384S1873", "id.orig_h": "192.168.1.14", "id.orig_p": 13911, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23540, "rtt": 0.373687, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 2895}
{"ts": "2025-04-23T09:21:09.072225Z", "uid": "C422995S1946", "id.orig_h": "192.168.1.11", "id.orig_p": 15423, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26652, "rtt": 0.340111, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.153.111", "ttl": 1170}
{"ts": "2025-04-23T09:21:09.072237Z", "uid": "C901176O6055", "id.orig_h": "192.168.1.12", "id.orig_p": 17149, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58827, "rtt": 0.37011, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6041", "ttl": 2143}
{"ts": "2025-04-23T09:21:09.072248Z", "uid": "C771974R8214", "id.orig_h": "192.168.1.11", "id.orig_p": 17892, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 55913, "rtt": 0.25786, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1702", "ttl": 436}
{"ts": "2025-04-23T09:21:09.072260Z", "uid": "C207357F2287", "id.orig_h": "192.168.1.18", "id.orig_p": 38954, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41282, "rtt": 0.454335, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 763}
{"ts": "2025-04-23T09:21:09.072271Z", "uid": "C678213T6314", "id.orig_h": "192.168.1.10", "id.orig_p": 57938, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47218, "rtt": 0.023271, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3558", "ttl": 981}
{"ts": "2025-04-23T09:21:09.072283Z", "uid": "C156925J2983", "id.orig_h": "192.168.1.15", "id.orig_p": 50069, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19183, "rtt": 0.218631, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 431}
{"ts": "2025-04-23T09:21:09.072295Z", "uid": "C966981G2215", "id.orig_h": "192.168.1.18", "id.orig_p": 31623, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 26324, "rtt": 0.188898, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1282", "ttl": 722}
{"ts": "2025-04-23T09:21:09.072307Z", "uid": "C327685S6125", "id.orig_h": "192.168.1.21", "id.orig_p": 13260, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24963, "rtt": 0.361744, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.177.224", "ttl": 1100}
{"ts": "2025-04-23T09:21:09.072319Z", "uid": "C403279H5899", "id.orig_h": "192.168.1.16", "id.orig_p": 7177, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37424, "rtt": 0.014054, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 970}
{"ts": "2025-04-23T09:21:09.072330Z", "uid": "C320683W5286", "id.orig_h": "192.168.1.18", "id.orig_p": 47621, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 32188, "rtt": 0.05036, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1555}
{"ts": "2025-04-23T09:21:09.072341Z", "uid": "C935564L2402", "id.orig_h": "192.168.1.18", "id.orig_p": 53393, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24954, "rtt": 0.152728, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4211", "ttl": 1392}
{"ts": "2025-04-23T09:21:09.072352Z", "uid": "C257347K2351", "id.orig_h": "192.168.1.20", "id.orig_p": 39004, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22766, "rtt": 0.011281, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 3475}
{"ts": "2025-04-23T09:21:09.072364Z", "uid": "C419959O5307", "id.orig_h": "192.168.1.17", "id.orig_p": 24128, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51069, "rtt": 0.418285, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6789", "ttl": 490}
{"ts": "2025-04-23T09:21:09.072375Z", "uid": "C777807X3849", "id.orig_h": "192.168.1.20", "id.orig_p": 16908, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19479, "rtt": 0.10908, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1555}
{"ts": "2025-04-23T09:21:09.072388Z", "uid": "C114518U4512", "id.orig_h": "192.168.1.11", "id.orig_p": 40348, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35428, "rtt": 0.136129, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.193.107", "ttl": 1177}
{"ts": "2025-04-23T09:21:09.072399Z", "uid": "C625486H2706", "id.orig_h": "192.168.1.10", "id.orig_p": 64190, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12251, "rtt": 0.021261, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4665", "ttl": 1266}
{"ts": "2025-04-23T09:21:09.072411Z", "uid": "C890620B3595", "id.orig_h": "192.168.1.21", "id.orig_p": 32037, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41294, "rtt": 0.335194, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 2429}
{"ts": "2025-04-23T09:21:09.072423Z", "uid": "C442878C3927", "id.orig_h": "192.168.1.14", "id.orig_p": 30439, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31956, "rtt": 0.267402, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3209}
{"ts": "2025-04-23T09:21:09.072434Z", "uid": "C863770S9807", "id.orig_h": "192.168.1.18", "id.orig_p": 64407, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46062, "rtt": 0.229596, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 505}
{"ts": "2025-04-23T09:21:09.072446Z", "uid": "C107228J3876", "id.orig_h": "192.168.1.13", "id.orig_p": 57207, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32194, "rtt": 0.137264, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 3286}
{"ts": "2025-04-23T09:21:09.072459Z", "uid": "C105651H3475", "id.orig_h": "192.168.1.10", "id.orig_p": 48904, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12958, "rtt": 0.325668, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.76.49", "ttl": 2239}
{"ts": "2025-04-23T09:21:09.072471Z", "uid": "C557585I6866", "id.orig_h": "192.168.1.12", "id.orig_p": 39887, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17405, "rtt": 0.253353, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.10.110", "ttl": 1485}
{"ts": "2025-04-23T09:21:09.072482Z", "uid": "C727377W6434", "id.orig_h": "192.168.1.10", "id.orig_p": 11171, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51954, "rtt": 0.431382, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8881", "ttl": 2717}
{"ts": "2025-04-23T09:21:09.072496Z", "uid": "C538325J2937", "id.orig_h": "192.168.1.12", "id.orig_p": 38739, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 27115, "rtt": 0.198869, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6214", "ttl": 2745}
{"ts": "2025-04-23T09:21:09.072507Z", "uid": "C552668J4597", "id.orig_h": "192.168.1.16", "id.orig_p": 11033, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21856, "rtt": 0.094825, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5416", "ttl": 3155}
{"ts": "2025-04-23T09:21:09.072519Z", "uid": "C103910V7828", "id.orig_h": "192.168.1.13", "id.orig_p": 59794, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27350, "rtt": 0.12462, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1866", "ttl": 3062}
{"ts": "2025-04-23T09:21:09.072530Z", "uid": "C378294W7780", "id.orig_h": "192.168.1.10", "id.orig_p": 37607, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13326, "rtt": 0.058473, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 2424}
{"ts": "2025-04-23T09:21:09.072542Z", "uid": "C459956N6978", "id.orig_h": "192.168.1.13", "id.orig_p": 30021, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27269, "rtt": 0.348185, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2945}
{"ts": "2025-04-23T09:21:09.072556Z", "uid": "C561441H9551", "id.orig_h": "192.168.1.18", "id.orig_p": 8374, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40383, "rtt": 0.304958, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1713}
{"ts": "2025-04-23T09:21:09.072577Z", "uid": "C599312L2246", "id.orig_h": "192.168.1.15", "id.orig_p": 27811, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47978, "rtt": 0.371919, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3674", "ttl": 2372}
{"ts": "2025-04-23T09:21:09.072598Z", "uid": "C852373B5036", "id.orig_h": "192.168.1.13", "id.orig_p": 2451, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 35594, "rtt": 0.295956, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1785}
{"ts": "2025-04-23T09:21:09.072610Z", "uid": "C954296V3496", "id.orig_h": "192.168.1.16", "id.orig_p": 57272, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 46414, "rtt": 0.48949, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.195.78", "ttl": 3333}
{"ts": "2025-04-23T09:21:09.072623Z", "uid": "C147820W5623", "id.orig_h": "192.168.1.12", "id.orig_p": 36891, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56039, "rtt": 0.312773, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2414}
{"ts": "2025-04-23T09:21:09.072634Z", "uid": "C904872Q3088", "id.orig_h": "192.168.1.12", "id.orig_p": 60961, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35140, "rtt": 0.281125, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.81.213", "ttl": 1799}
{"ts": "2025-04-23T09:21:09.072646Z", "uid": "C156417R1952", "id.orig_h": "192.168.1.13", "id.orig_p": 44789, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53988, "rtt": 0.116673, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3178", "ttl": 165}
{"ts": "2025-04-23T09:21:09.072657Z", "uid": "C428711K9061", "id.orig_h": "192.168.1.18", "id.orig_p": 58403, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57090, "rtt": 0.491002, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1520}
{"ts": "2025-04-23T09:21:09.072670Z", "uid": "C148004M8152", "id.orig_h": "192.168.1.10", "id.orig_p": 43207, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58213, "rtt": 0.439826, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1173}
{"ts": "2025-04-23T09:21:09.072681Z", "uid": "C555809U9328", "id.orig_h": "192.168.1.17", "id.orig_p": 32971, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16146, "rtt": 0.284449, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1017}
{"ts": "2025-04-23T09:21:09.072692Z", "uid": "C214030Y2508", "id.orig_h": "192.168.1.11", "id.orig_p": 24855, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 10588, "rtt": 0.476567, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4933", "ttl": 1392}
{"ts": "2025-04-23T09:21:09.072705Z", "uid": "C229219U9792", "id.orig_h": "192.168.1.10", "id.orig_p": 53155, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37978, "rtt": 0.33417, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1518}
{"ts": "2025-04-23T09:21:09.072716Z", "uid": "C718968O5942", "id.orig_h": "192.168.1.12", "id.orig_p": 61762, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53548, "rtt": 0.246279, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1114}
{"ts": "2025-04-23T09:21:09.072729Z", "uid": "C340905Q9931", "id.orig_h": "192.168.1.13", "id.orig_p": 13475, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36509, "rtt": 0.059493, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2338}
{"ts": "2025-04-23T09:21:09.072740Z", "uid": "C634679C5191", "id.orig_h": "192.168.1.14", "id.orig_p": 42267, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 10960, "rtt": 0.25422, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.39.223", "ttl": 3481}
{"ts": "2025-04-23T09:21:09.072752Z", "uid": "C871765J6620", "id.orig_h": "192.168.1.21", "id.orig_p": 32889, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53701, "rtt": 0.27395, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 1038}
{"ts": "2025-04-23T09:21:09.072764Z", "uid": "C914074N5922", "id.orig_h": "192.168.1.17", "id.orig_p": 11532, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 52382, "rtt": 0.315306, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2983}
{"ts": "2025-04-23T09:21:09.072776Z", "uid": "C143284H6931", "id.orig_h": "192.168.1.13", "id.orig_p": 42990, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16448, "rtt": 0.01799, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2066}
{"ts": "2025-04-23T09:21:09.072789Z", "uid": "C433561W4221", "id.orig_h": "192.168.1.13", "id.orig_p": 56394, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11705, "rtt": 0.104776, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 391}
{"ts": "2025-04-23T09:21:09.072801Z", "uid": "C974657K4857", "id.orig_h": "192.168.1.20", "id.orig_p": 56958, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25042, "rtt": 0.429717, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2812}
{"ts": "2025-04-23T09:21:09.072812Z", "uid": "C156032A8475", "id.orig_h": "192.168.1.10", "id.orig_p": 58324, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 20531, "rtt": 0.409713, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 2167}
{"ts": "2025-04-23T09:21:09.072823Z", "uid": "C690094B3631", "id.orig_h": "192.168.1.16", "id.orig_p": 47683, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 37374, "rtt": 0.429716, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6837", "ttl": 565}
{"ts": "2025-04-23T09:21:09.072835Z", "uid": "C605027Z3119", "id.orig_h": "192.168.1.11", "id.orig_p": 5181, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 58892, "rtt": 0.298765, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 527}
{"ts": "2025-04-23T09:21:09.072846Z", "uid": "C540826T1608", "id.orig_h": "192.168.1.15", "id.orig_p": 33099, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29180, "rtt": 0.221248, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.211.137", "ttl": 106}
{"ts": "2025-04-23T09:21:09.072859Z", "uid": "C743478V1481", "id.orig_h": "192.168.1.13", "id.orig_p": 42708, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50075, "rtt": 0.271312, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9094", "ttl": 3132}
{"ts": "2025-04-23T09:21:09.072878Z", "uid": "C268350N7612", "id.orig_h": "192.168.1.20", "id.orig_p": 24032, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41105, "rtt": 0.20804, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1373}
{"ts": "2025-04-23T09:21:09.072889Z", "uid": "C382686O6247", "id.orig_h": "192.168.1.21", "id.orig_p": 39327, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23379, "rtt": 0.474788, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7151", "ttl": 2550}
{"ts": "2025-04-23T09:21:09.072901Z", "uid": "C507813N4605", "id.orig_h": "192.168.1.17", "id.orig_p": 60023, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26088, "rtt": 0.450135, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4921", "ttl": 2579}
{"ts": "2025-04-23T09:21:09.072912Z", "uid": "C600671S3421", "id.orig_h": "192.168.1.13", "id.orig_p": 17735, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33831, "rtt": 0.25883, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5530", "ttl": 2454}
{"ts": "2025-04-23T09:21:09.072923Z", "uid": "C626419I5869", "id.orig_h": "192.168.1.19", "id.orig_p": 2255, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33321, "rtt": 0.02667, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.53.92", "ttl": 3105}
{"ts": "2025-04-23T09:21:09.072936Z", "uid": "C562664Q9627", "id.orig_h": "192.168.1.17", "id.orig_p": 34051, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19102, "rtt": 0.46673, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2549}
{"ts": "2025-04-23T09:21:09.072947Z", "uid": "C251501Y1567", "id.orig_h": "192.168.1.21", "id.orig_p": 22693, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11784, "rtt": 0.027776, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9113", "ttl": 2209}
{"ts": "2025-04-23T09:21:09.072958Z", "uid": "C714560O9214", "id.orig_h": "192.168.1.21", "id.orig_p": 25995, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 57034, "rtt": 0.049361, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 1949}
{"ts": "2025-04-23T09:21:09.072969Z", "uid": "C551794J1602", "id.orig_h": "192.168.1.13", "id.orig_p": 15009, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28047, "rtt": 0.088351, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 1761}
{"ts": "2025-04-23T09:21:09.072981Z", "uid": "C835789O1993", "id.orig_h": "192.168.1.12", "id.orig_p": 62428, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31164, "rtt": 0.074277, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 889}
{"ts": "2025-04-23T09:21:09.072992Z", "uid": "C836715Z5421", "id.orig_h": "192.168.1.16", "id.orig_p": 49704, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 54654, "rtt": 0.047619, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2966", "ttl": 945}
{"ts": "2025-04-23T09:21:09.073003Z", "uid": "C968504N9901", "id.orig_h": "192.168.1.11", "id.orig_p": 57117, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15415, "rtt": 0.316408, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 3243}
{"ts": "2025-04-23T09:21:09.073015Z", "uid": "C385234W7735", "id.orig_h": "192.168.1.10", "id.orig_p": 55954, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 35294, "rtt": 0.085598, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 110}
{"ts": "2025-04-23T09:21:09.073029Z", "uid": "C788696Y2200", "id.orig_h": "192.168.1.16", "id.orig_p": 51430, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48760, "rtt": 0.410247, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2187}
{"ts": "2025-04-23T09:21:09.073042Z", "uid": "C506620G4575", "id.orig_h": "192.168.1.14", "id.orig_p": 11610, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43334, "rtt": 0.193822, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6752", "ttl": 493}
{"ts": "2025-04-23T09:21:09.073054Z", "uid": "C264796L5885", "id.orig_h": "192.168.1.21", "id.orig_p": 37719, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 26925, "rtt": 0.375539, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 682}
{"ts": "2025-04-23T09:21:09.073073Z", "uid": "C893149P8622", "id.orig_h": "192.168.1.15", "id.orig_p": 12060, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42485, "rtt": 0.456658, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.245.79", "ttl": 3460}
{"ts": "2025-04-23T09:21:09.073084Z", "uid": "C778074H3607", "id.orig_h": "192.168.1.15", "id.orig_p": 2944, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22997, "rtt": 0.347378, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 444}
{"ts": "2025-04-23T09:21:09.073095Z", "uid": "C745429Z9358", "id.orig_h": "192.168.1.19", "id.orig_p": 12425, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23131, "rtt": 0.469397, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9070", "ttl": 3564}
{"ts": "2025-04-23T09:21:09.073106Z", "uid": "C665390F4884", "id.orig_h": "192.168.1.11", "id.orig_p": 19603, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57224, "rtt": 0.101983, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 460}
{"ts": "2025-04-23T09:21:09.073117Z", "uid": "C666394O9080", "id.orig_h": "192.168.1.13", "id.orig_p": 38125, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35964, "rtt": 0.313937, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 955}
{"ts": "2025-04-23T09:21:09.073129Z", "uid": "C944668D8125", "id.orig_h": "192.168.1.11", "id.orig_p": 43727, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15260, "rtt": 0.388575, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.238.212", "ttl": 943}
{"ts": "2025-04-23T09:21:09.073141Z", "uid": "C365166Y1755", "id.orig_h": "192.168.1.16", "id.orig_p": 60914, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 20760, "rtt": 0.388687, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 644}
{"ts": "2025-04-23T09:21:09.073153Z", "uid": "C603449E2356", "id.orig_h": "192.168.1.10", "id.orig_p": 12122, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58712, "rtt": 0.300223, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 3370}
{"ts": "2025-04-23T09:21:09.073165Z", "uid": "C411871C5285", "id.orig_h": "192.168.1.20", "id.orig_p": 20981, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24606, "rtt": 0.33864, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1134}
{"ts": "2025-04-23T09:21:09.073176Z", "uid": "C608131E6064", "id.orig_h": "192.168.1.17", "id.orig_p": 40520, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31597, "rtt": 0.107595, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2835}
{"ts": "2025-04-23T09:21:09.073188Z", "uid": "C905907L7319", "id.orig_h": "192.168.1.19", "id.orig_p": 33864, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 20094, "rtt": 0.259038, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2108}
{"ts": "2025-04-23T09:21:09.073199Z", "uid": "C172597Y8154", "id.orig_h": "192.168.1.11", "id.orig_p": 9610, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 15856, "rtt": 0.119098, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5075", "ttl": 463}
{"ts": "2025-04-23T09:21:09.073211Z", "uid": "C101781H6850", "id.orig_h": "192.168.1.17", "id.orig_p": 39499, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 58488, "rtt": 0.256922, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.59.224", "ttl": 2650}
{"ts": "2025-04-23T09:21:09.073222Z", "uid": "C861097S1523", "id.orig_h": "192.168.1.18", "id.orig_p": 21926, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57674, "rtt": 0.483316, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1380", "ttl": 336}
{"ts": "2025-04-23T09:21:09.073234Z", "uid": "C771844A2022", "id.orig_h": "192.168.1.13", "id.orig_p": 51700, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58722, "rtt": 0.127244, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9929", "ttl": 997}
{"ts": "2025-04-23T09:21:09.073251Z", "uid": "C535155N6121", "id.orig_h": "192.168.1.15", "id.orig_p": 2987, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 18060, "rtt": 0.431058, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2480}
{"ts": "2025-04-23T09:21:09.073271Z", "uid": "C868194F8659", "id.orig_h": "192.168.1.12", "id.orig_p": 28007, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58773, "rtt": 0.42452, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.4.31", "ttl": 1366}
{"ts": "2025-04-23T09:21:09.073285Z", "uid": "C340654Q1529", "id.orig_h": "192.168.1.10", "id.orig_p": 41650, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55746, "rtt": 0.037955, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 3057}
{"ts": "2025-04-23T09:21:09.073297Z", "uid": "C429503A7703", "id.orig_h": "192.168.1.10", "id.orig_p": 39012, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50740, "rtt": 0.482185, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 295}
{"ts": "2025-04-23T09:21:09.073308Z", "uid": "C731697K3930", "id.orig_h": "192.168.1.17", "id.orig_p": 47966, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22227, "rtt": 0.282402, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 3130}
{"ts": "2025-04-23T09:21:09.073323Z", "uid": "C201565C5022", "id.orig_h": "192.168.1.11", "id.orig_p": 44181, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41516, "rtt": 0.244828, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 2678}
{"ts": "2025-04-23T09:21:09.073336Z", "uid": "C625750Z3937", "id.orig_h": "192.168.1.20", "id.orig_p": 1631, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 55601, "rtt": 0.065599, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4585", "ttl": 2733}
{"ts": "2025-04-23T09:21:09.073348Z", "uid": "C956845S4259", "id.orig_h": "192.168.1.18", "id.orig_p": 10100, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21808, "rtt": 0.21214, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2622}
{"ts": "2025-04-23T09:21:09.073359Z", "uid": "C409823D6349", "id.orig_h": "192.168.1.16", "id.orig_p": 28344, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23926, "rtt": 0.427878, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 1009}
{"ts": "2025-04-23T09:21:09.073378Z", "uid": "C639436Q8940", "id.orig_h": "192.168.1.18", "id.orig_p": 34322, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51865, "rtt": 0.296719, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.10.129", "ttl": 3498}
{"ts": "2025-04-23T09:21:09.073397Z", "uid": "C763582G5892", "id.orig_h": "192.168.1.15", "id.orig_p": 27825, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58652, "rtt": 0.07523, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 3378}
{"ts": "2025-04-23T09:21:09.073408Z", "uid": "C976510Q4238", "id.orig_h": "192.168.1.14", "id.orig_p": 63723, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24582, "rtt": 0.039297, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.48.37", "ttl": 720}
{"ts": "2025-04-23T09:21:09.073426Z", "uid": "C914139T5438", "id.orig_h": "192.168.1.14", "id.orig_p": 44106, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23474, "rtt": 0.459912, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3377}
{"ts": "2025-04-23T09:21:09.073437Z", "uid": "C316272Y3562", "id.orig_h": "192.168.1.20", "id.orig_p": 49660, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53455, "rtt": 0.471363, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1482", "ttl": 179}
{"ts": "2025-04-23T09:21:09.073448Z", "uid": "C736045E3955", "id.orig_h": "192.168.1.15", "id.orig_p": 4946, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42866, "rtt": 0.358481, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 1308}
{"ts": "2025-04-23T09:21:09.073473Z", "uid": "C921635R4232", "id.orig_h": "192.168.1.10", "id.orig_p": 40993, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33530, "rtt": 0.145866, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9399", "ttl": 459}
{"ts": "2025-04-23T09:21:09.073487Z", "uid": "C100310Q5799", "id.orig_h": "192.168.1.18", "id.orig_p": 20550, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 52571, "rtt": 0.388674, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2680}
{"ts": "2025-04-23T09:21:09.073500Z", "uid": "C205564Z7564", "id.orig_h": "192.168.1.13", "id.orig_p": 30237, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39828, "rtt": 0.174977, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 3189}
{"ts": "2025-04-23T09:21:09.073511Z", "uid": "C420672W1306", "id.orig_h": "192.168.1.14", "id.orig_p": 60770, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22989, "rtt": 0.192198, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 2992}
{"ts": "2025-04-23T09:21:09.073524Z", "uid": "C140041Z2508", "id.orig_h": "192.168.1.15", "id.orig_p": 57013, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22674, "rtt": 0.467071, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5970", "ttl": 1049}
{"ts": "2025-04-23T09:21:09.073538Z", "uid": "C695226A6354", "id.orig_h": "192.168.1.12", "id.orig_p": 54963, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 16215, "rtt": 0.440785, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2344}
{"ts": "2025-04-23T09:21:09.073561Z", "uid": "C180224F6203", "id.orig_h": "192.168.1.10", "id.orig_p": 11486, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 10933, "rtt": 0.3734, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.8.53", "ttl": 3481}
{"ts": "2025-04-23T09:21:09.073572Z", "uid": "C173540Y9097", "id.orig_h": "192.168.1.16", "id.orig_p": 49416, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21208, "rtt": 0.394436, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.31.180", "ttl": 1286}
{"ts": "2025-04-23T09:21:09.073583Z", "uid": "C475897B7843", "id.orig_h": "192.168.1.18", "id.orig_p": 36422, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 33354, "rtt": 0.321997, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.117.24", "ttl": 2426}
{"ts": "2025-04-23T09:21:09.073599Z", "uid": "C789578A7829", "id.orig_h": "192.168.1.11", "id.orig_p": 45179, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33564, "rtt": 0.102708, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2491}
{"ts": "2025-04-23T09:21:09.073611Z", "uid": "C817069Q2475", "id.orig_h": "192.168.1.14", "id.orig_p": 18343, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58314, "rtt": 0.01167, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7255", "ttl": 2619}
{"ts": "2025-04-23T09:21:09.073696Z", "uid": "C583373G7000", "id.orig_h": "192.168.1.14", "id.orig_p": 30821, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 12751, "rtt": 0.187303, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1325", "ttl": 514}
{"ts": "2025-04-23T09:21:09.073714Z", "uid": "C838175K8829", "id.orig_h": "192.168.1.13", "id.orig_p": 49525, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28299, "rtt": 0.086205, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5458", "ttl": 112}
{"ts": "2025-04-23T09:21:09.073733Z", "uid": "C298649H5829", "id.orig_h": "192.168.1.11", "id.orig_p": 65116, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19398, "rtt": 0.064213, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 3192}
{"ts": "2025-04-23T09:21:09.073744Z", "uid": "C441165U5777", "id.orig_h": "192.168.1.18", "id.orig_p": 1488, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39382, "rtt": 0.317717, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 260}
{"ts": "2025-04-23T09:21:09.073755Z", "uid": "C614299Z6833", "id.orig_h": "192.168.1.11", "id.orig_p": 12061, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 33446, "rtt": 0.440298, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 1951}
{"ts": "2025-04-23T09:21:09.073768Z", "uid": "C950289G2626", "id.orig_h": "192.168.1.16", "id.orig_p": 26576, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41275, "rtt": 0.083478, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9451", "ttl": 2972}
{"ts": "2025-04-23T09:21:09.073779Z", "uid": "C424630E5866", "id.orig_h": "192.168.1.20", "id.orig_p": 12030, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38540, "rtt": 0.213243, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9249", "ttl": 1946}
{"ts": "2025-04-23T09:21:09.073798Z", "uid": "C637039S6658", "id.orig_h": "192.168.1.20", "id.orig_p": 61016, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16871, "rtt": 0.392306, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 922}
{"ts": "2025-04-23T09:21:09.073825Z", "uid": "C784930K5740", "id.orig_h": "192.168.1.19", "id.orig_p": 10377, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26831, "rtt": 0.46004, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 436}
{"ts": "2025-04-23T09:21:09.073836Z", "uid": "C165462O2360", "id.orig_h": "192.168.1.13", "id.orig_p": 17812, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 30912, "rtt": 0.274441, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4483", "ttl": 2661}
{"ts": "2025-04-23T09:21:09.073847Z", "uid": "C256337S6783", "id.orig_h": "192.168.1.13", "id.orig_p": 20964, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31527, "rtt": 0.140291, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 1811}
{"ts": "2025-04-23T09:21:09.073859Z", "uid": "C862010M7455", "id.orig_h": "192.168.1.21", "id.orig_p": 15107, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52412, "rtt": 0.17168, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.183.69", "ttl": 3330}
{"ts": "2025-04-23T09:21:09.073870Z", "uid": "C315413M2740", "id.orig_h": "192.168.1.11", "id.orig_p": 11378, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25115, "rtt": 0.460817, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.96.163", "ttl": 3065}
{"ts": "2025-04-23T09:21:09.073889Z", "uid": "C925456G3717", "id.orig_h": "192.168.1.20", "id.orig_p": 28655, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25365, "rtt": 0.195952, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.21.31", "ttl": 238}
{"ts": "2025-04-23T09:21:09.073906Z", "uid": "C575042I9513", "id.orig_h": "192.168.1.11", "id.orig_p": 64710, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46437, "rtt": 0.162423, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.234.166", "ttl": 2225}
{"ts": "2025-04-23T09:21:09.073922Z", "uid": "C703808H8054", "id.orig_h": "192.168.1.16", "id.orig_p": 34072, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53098, "rtt": 0.268447, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1298}
{"ts": "2025-04-23T09:21:09.073946Z", "uid": "C797361M5587", "id.orig_h": "192.168.1.15", "id.orig_p": 33264, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25297, "rtt": 0.458353, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.30.185", "ttl": 3021}
{"ts": "2025-04-23T09:21:09.073959Z", "uid": "C237957H6398", "id.orig_h": "192.168.1.19", "id.orig_p": 22497, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41819, "rtt": 0.332532, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1308}
{"ts": "2025-04-23T09:21:09.073984Z", "uid": "C209283C1723", "id.orig_h": "192.168.1.12", "id.orig_p": 63955, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11583, "rtt": 0.123807, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 771}
{"ts": "2025-04-23T09:21:09.073996Z", "uid": "C572704B9358", "id.orig_h": "192.168.1.14", "id.orig_p": 57129, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 54433, "rtt": 0.370259, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 890}
{"ts": "2025-04-23T09:21:09.074008Z", "uid": "C714203D6193", "id.orig_h": "192.168.1.21", "id.orig_p": 11006, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42797, "rtt": 0.246146, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 706}
{"ts": "2025-04-23T09:21:09.074020Z", "uid": "C702995K5993", "id.orig_h": "192.168.1.19", "id.orig_p": 14485, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36244, "rtt": 0.352263, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6917", "ttl": 95}
{"ts": "2025-04-23T09:21:09.074032Z", "uid": "C592562X1430", "id.orig_h": "192.168.1.10", "id.orig_p": 6949, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25151, "rtt": 0.443597, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7093", "ttl": 2066}
{"ts": "2025-04-23T09:21:09.074045Z", "uid": "C901823R8401", "id.orig_h": "192.168.1.16", "id.orig_p": 22410, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38172, "rtt": 0.23863, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7956", "ttl": 391}
{"ts": "2025-04-23T09:21:09.074067Z", "uid": "C537626Q7778", "id.orig_h": "192.168.1.12", "id.orig_p": 6545, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22225, "rtt": 0.375673, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2993}
{"ts": "2025-04-23T09:21:09.074082Z", "uid": "C464463O2544", "id.orig_h": "192.168.1.21", "id.orig_p": 45495, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49488, "rtt": 0.046141, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1536", "ttl": 211}
{"ts": "2025-04-23T09:21:09.074094Z", "uid": "C334077V8719", "id.orig_h": "192.168.1.14", "id.orig_p": 51051, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17258, "rtt": 0.019494, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 1537}
{"ts": "2025-04-23T09:21:09.074106Z", "uid": "C153032S3748", "id.orig_h": "192.168.1.20", "id.orig_p": 64950, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 56654, "rtt": 0.303566, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1551}
{"ts": "2025-04-23T09:21:09.074117Z", "uid": "C321818Y9871", "id.orig_h": "192.168.1.21", "id.orig_p": 17774, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25600, "rtt": 0.027947, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 1022}
{"ts": "2025-04-23T09:21:09.074131Z", "uid": "C643141F4024", "id.orig_h": "192.168.1.21", "id.orig_p": 63019, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44237, "rtt": 0.309726, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 3159}
{"ts": "2025-04-23T09:21:09.074160Z", "uid": "C578089O1211", "id.orig_h": "192.168.1.18", "id.orig_p": 16622, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 10610, "rtt": 0.022584, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 541}
{"ts": "2025-04-23T09:21:09.074172Z", "uid": "C498916M6571", "id.orig_h": "192.168.1.10", "id.orig_p": 3603, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41159, "rtt": 0.111138, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.65.175", "ttl": 895}
{"ts": "2025-04-23T09:21:09.074184Z", "uid": "C648859P6427", "id.orig_h": "192.168.1.15", "id.orig_p": 63737, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36880, "rtt": 0.079521, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1480}
{"ts": "2025-04-23T09:21:09.074196Z", "uid": "C672440J5202", "id.orig_h": "192.168.1.14", "id.orig_p": 1653, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38176, "rtt": 0.084276, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 99}
{"ts": "2025-04-23T09:21:09.074212Z", "uid": "C452346W8101", "id.orig_h": "192.168.1.16", "id.orig_p": 51941, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16736, "rtt": 0.140868, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 2635}
{"ts": "2025-04-23T09:21:09.074239Z", "uid": "C939484X3911", "id.orig_h": "192.168.1.17", "id.orig_p": 20768, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55001, "rtt": 0.250303, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1153}
{"ts": "2025-04-23T09:21:09.074250Z", "uid": "C397532I6579", "id.orig_h": "192.168.1.17", "id.orig_p": 50207, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29461, "rtt": 0.147075, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1663}
{"ts": "2025-04-23T09:21:09.074262Z", "uid": "C729988N7763", "id.orig_h": "192.168.1.18", "id.orig_p": 20179, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18580, "rtt": 0.300077, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8695", "ttl": 3580}
{"ts": "2025-04-23T09:21:09.074273Z", "uid": "C987338U1689", "id.orig_h": "192.168.1.19", "id.orig_p": 41208, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25106, "rtt": 0.142444, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.81.22", "ttl": 1353}
{"ts": "2025-04-23T09:21:09.074285Z", "uid": "C275592V3316", "id.orig_h": "192.168.1.11", "id.orig_p": 32387, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12194, "rtt": 0.200291, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 847}
{"ts": "2025-04-23T09:21:09.074306Z", "uid": "C940612L7932", "id.orig_h": "192.168.1.14", "id.orig_p": 52201, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56592, "rtt": 0.418812, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.165.138", "ttl": 1164}
{"ts": "2025-04-23T09:21:09.074320Z", "uid": "C597247H9141", "id.orig_h": "192.168.1.13", "id.orig_p": 20950, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 40906, "rtt": 0.108244, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 753}
{"ts": "2025-04-23T09:21:09.074341Z", "uid": "C204553T8496", "id.orig_h": "192.168.1.20", "id.orig_p": 53161, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30364, "rtt": 0.196034, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.126.22", "ttl": 2289}
{"ts": "2025-04-23T09:21:09.074367Z", "uid": "C980446S3937", "id.orig_h": "192.168.1.11", "id.orig_p": 13882, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18318, "rtt": 0.462808, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6093", "ttl": 3273}
{"ts": "2025-04-23T09:21:09.074382Z", "uid": "C577744Q4147", "id.orig_h": "192.168.1.20", "id.orig_p": 10528, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35810, "rtt": 0.423758, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1925}
{"ts": "2025-04-23T09:21:09.074394Z", "uid": "C371363J5288", "id.orig_h": "192.168.1.19", "id.orig_p": 25634, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56330, "rtt": 0.362209, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 777}
{"ts": "2025-04-23T09:21:09.074414Z", "uid": "C674503N2523", "id.orig_h": "192.168.1.21", "id.orig_p": 22129, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28610, "rtt": 0.149698, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7817", "ttl": 3342}
{"ts": "2025-04-23T09:21:09.074428Z", "uid": "C447397A6330", "id.orig_h": "192.168.1.21", "id.orig_p": 56329, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52962, "rtt": 0.162608, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 1260}
{"ts": "2025-04-23T09:21:09.074444Z", "uid": "C393672I1057", "id.orig_h": "192.168.1.15", "id.orig_p": 38369, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44824, "rtt": 0.421397, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.146.29", "ttl": 1446}
{"ts": "2025-04-23T09:21:09.074456Z", "uid": "C596741N4408", "id.orig_h": "192.168.1.10", "id.orig_p": 35875, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13769, "rtt": 0.34528, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 568}
{"ts": "2025-04-23T09:21:09.074469Z", "uid": "C225662N5648", "id.orig_h": "192.168.1.17", "id.orig_p": 54020, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 16966, "rtt": 0.340572, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9450", "ttl": 2871}
{"ts": "2025-04-23T09:21:09.074480Z", "uid": "C496845A7940", "id.orig_h": "192.168.1.10", "id.orig_p": 21453, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51514, "rtt": 0.043259, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9009", "ttl": 374}
{"ts": "2025-04-23T09:21:09.074492Z", "uid": "C405169B2667", "id.orig_h": "192.168.1.18", "id.orig_p": 62661, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22673, "rtt": 0.017634, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.125.63", "ttl": 859}
{"ts": "2025-04-23T09:21:09.074506Z", "uid": "C793429I2786", "id.orig_h": "192.168.1.20", "id.orig_p": 25079, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22830, "rtt": 0.373659, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2158}
{"ts": "2025-04-23T09:21:09.074518Z", "uid": "C351866O6380", "id.orig_h": "192.168.1.17", "id.orig_p": 29592, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 29123, "rtt": 0.334633, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 933}
{"ts": "2025-04-23T09:21:09.074529Z", "uid": "C735286W8208", "id.orig_h": "192.168.1.20", "id.orig_p": 34012, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43397, "rtt": 0.153054, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 197}
{"ts": "2025-04-23T09:21:09.074543Z", "uid": "C927022P7870", "id.orig_h": "192.168.1.17", "id.orig_p": 58742, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32758, "rtt": 0.218501, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4649", "ttl": 3004}
{"ts": "2025-04-23T09:21:09.074554Z", "uid": "C789233A8064", "id.orig_h": "192.168.1.12", "id.orig_p": 64776, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38925, "rtt": 0.380515, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1976}
{"ts": "2025-04-23T09:21:09.074565Z", "uid": "C393501P6695", "id.orig_h": "192.168.1.13", "id.orig_p": 42159, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58141, "rtt": 0.335154, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.166.205", "ttl": 536}
{"ts": "2025-04-23T09:21:09.074577Z", "uid": "C680548D4907", "id.orig_h": "192.168.1.15", "id.orig_p": 6836, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19455, "rtt": 0.093937, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2409", "ttl": 1720}
{"ts": "2025-04-23T09:21:09.074588Z", "uid": "C531011Y6203", "id.orig_h": "192.168.1.20", "id.orig_p": 60960, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26606, "rtt": 0.151681, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.25.128", "ttl": 2129}
{"ts": "2025-04-23T09:21:09.074600Z", "uid": "C427505L2546", "id.orig_h": "192.168.1.21", "id.orig_p": 63754, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 10427, "rtt": 0.371187, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.169.60", "ttl": 3420}
{"ts": "2025-04-23T09:21:09.074769Z", "uid": "C626373L3043", "id.orig_h": "192.168.1.15", "id.orig_p": 20912, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44745, "rtt": 0.35951, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2593}
{"ts": "2025-04-23T09:21:09.074818Z", "uid": "C550010A1629", "id.orig_h": "192.168.1.17", "id.orig_p": 54315, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 32658, "rtt": 0.198402, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.176.65", "ttl": 1939}
{"ts": "2025-04-23T09:21:09.074844Z", "uid": "C429379I2182", "id.orig_h": "192.168.1.12", "id.orig_p": 56271, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45153, "rtt": 0.315287, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5564", "ttl": 3057}
{"ts": "2025-04-23T09:21:09.074867Z", "uid": "C770733I5855", "id.orig_h": "192.168.1.21", "id.orig_p": 34137, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13256, "rtt": 0.13948, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3257", "ttl": 3600}
{"ts": "2025-04-23T09:21:09.074891Z", "uid": "C250892M7140", "id.orig_h": "192.168.1.11", "id.orig_p": 60908, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41748, "rtt": 0.496205, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1713", "ttl": 2428}
{"ts": "2025-04-23T09:21:09.074918Z", "uid": "C101626U8275", "id.orig_h": "192.168.1.12", "id.orig_p": 34826, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58950, "rtt": 0.013733, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2625}
{"ts": "2025-04-23T09:21:09.074941Z", "uid": "C879808C5538", "id.orig_h": "192.168.1.20", "id.orig_p": 18238, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28852, "rtt": 0.145967, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.208.172", "ttl": 920}
{"ts": "2025-04-23T09:21:09.074964Z", "uid": "C942559S9080", "id.orig_h": "192.168.1.19", "id.orig_p": 24785, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13240, "rtt": 0.130579, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 794}
{"ts": "2025-04-23T09:21:09.074988Z", "uid": "C490305L7788", "id.orig_h": "192.168.1.11", "id.orig_p": 2089, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 10297, "rtt": 0.430205, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 3132}
{"ts": "2025-04-23T09:21:09.075015Z", "uid": "C892896V1139", "id.orig_h": "192.168.1.15", "id.orig_p": 32595, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38322, "rtt": 0.418516, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.2.126", "ttl": 2870}
{"ts": "2025-04-23T09:21:09.075037Z", "uid": "C747791D2299", "id.orig_h": "192.168.1.16", "id.orig_p": 49938, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31574, "rtt": 0.25082, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.189.103", "ttl": 3067}
{"ts": "2025-04-23T09:21:09.075059Z", "uid": "C910728Q2350", "id.orig_h": "192.168.1.16", "id.orig_p": 26276, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33083, "rtt": 0.066024, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.72.38", "ttl": 616}
{"ts": "2025-04-23T09:21:09.075100Z", "uid": "C212269H8445", "id.orig_h": "192.168.1.21", "id.orig_p": 13221, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 36023, "rtt": 0.042305, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 2066}
{"ts": "2025-04-23T09:21:09.075123Z", "uid": "C385761X4767", "id.orig_h": "192.168.1.17", "id.orig_p": 5443, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 32437, "rtt": 0.404115, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8201", "ttl": 1743}
{"ts": "2025-04-23T09:21:09.075146Z", "uid": "C480966H5443", "id.orig_h": "192.168.1.20", "id.orig_p": 12765, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23827, "rtt": 0.124636, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 1180}
{"ts": "2025-04-23T09:21:09.075168Z", "uid": "C975130N7504", "id.orig_h": "192.168.1.13", "id.orig_p": 7969, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 33515, "rtt": 0.424001, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.178.90", "ttl": 2612}
{"ts": "2025-04-23T09:21:09.075197Z", "uid": "C627179V4831", "id.orig_h": "192.168.1.19", "id.orig_p": 51689, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41181, "rtt": 0.299928, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1243}
{"ts": "2025-04-23T09:21:09.075221Z", "uid": "C977991G7433", "id.orig_h": "192.168.1.18", "id.orig_p": 46405, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 48343, "rtt": 0.321918, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.105.193", "ttl": 3212}
{"ts": "2025-04-23T09:21:09.075260Z", "uid": "C586864M2490", "id.orig_h": "192.168.1.18", "id.orig_p": 41289, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 14305, "rtt": 0.068141, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1863}
{"ts": "2025-04-23T09:21:09.075285Z", "uid": "C908207V2040", "id.orig_h": "192.168.1.12", "id.orig_p": 17985, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22070, "rtt": 0.372913, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.77.124", "ttl": 1581}
{"ts": "2025-04-23T09:21:09.075308Z", "uid": "C747956I4771", "id.orig_h": "192.168.1.16", "id.orig_p": 13463, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48427, "rtt": 0.126478, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 1931}
{"ts": "2025-04-23T09:21:09.075332Z", "uid": "C825895R8374", "id.orig_h": "192.168.1.10", "id.orig_p": 9085, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19903, "rtt": 0.341888, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4985", "ttl": 2056}
{"ts": "2025-04-23T09:21:09.075355Z", "uid": "C922969B1575", "id.orig_h": "192.168.1.19", "id.orig_p": 2777, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29024, "rtt": 0.217526, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9297", "ttl": 1081}
{"ts": "2025-04-23T09:21:09.075377Z", "uid": "C991506J6883", "id.orig_h": "192.168.1.16", "id.orig_p": 36173, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26983, "rtt": 0.168262, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2353", "ttl": 904}
{"ts": "2025-04-23T09:21:09.075401Z", "uid": "C647457U8537", "id.orig_h": "192.168.1.12", "id.orig_p": 40170, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12364, "rtt": 0.125498, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1625}
{"ts": "2025-04-23T09:21:09.075424Z", "uid": "C277000A7424", "id.orig_h": "192.168.1.20", "id.orig_p": 52372, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48127, "rtt": 0.248598, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2826}
{"ts": "2025-04-23T09:21:09.075451Z", "uid": "C244364L2044", "id.orig_h": "192.168.1.11", "id.orig_p": 49860, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31186, "rtt": 0.495038, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 690}
{"ts": "2025-04-23T09:21:09.075480Z", "uid": "C640938F8701", "id.orig_h": "192.168.1.14", "id.orig_p": 32352, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45043, "rtt": 0.362648, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8938", "ttl": 1433}
{"ts": "2025-04-23T09:21:09.075503Z", "uid": "C656812A3323", "id.orig_h": "192.168.1.19", "id.orig_p": 63840, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21209, "rtt": 0.43258, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 783}
{"ts": "2025-04-23T09:21:09.075526Z", "uid": "C209028H6822", "id.orig_h": "192.168.1.19", "id.orig_p": 57682, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17732, "rtt": 0.192792, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.140.221", "ttl": 558}
{"ts": "2025-04-23T09:21:09.075548Z", "uid": "C637501G3454", "id.orig_h": "192.168.1.12", "id.orig_p": 62857, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52231, "rtt": 0.210373, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4033", "ttl": 553}
{"ts": "2025-04-23T09:21:09.075571Z", "uid": "C315313C1875", "id.orig_h": "192.168.1.13", "id.orig_p": 8937, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22846, "rtt": 0.332388, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2234}
{"ts": "2025-04-23T09:21:09.075595Z", "uid": "C217580F3131", "id.orig_h": "192.168.1.17", "id.orig_p": 38549, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36725, "rtt": 0.108261, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4064", "ttl": 2211}
{"ts": "2025-04-23T09:21:09.075618Z", "uid": "C936717L5851", "id.orig_h": "192.168.1.13", "id.orig_p": 28389, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 59934, "rtt": 0.456368, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3698", "ttl": 3348}
{"ts": "2025-04-23T09:21:09.075641Z", "uid": "C824023V4640", "id.orig_h": "192.168.1.13", "id.orig_p": 8738, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43998, "rtt": 0.437423, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7306", "ttl": 2389}
{"ts": "2025-04-23T09:21:09.075664Z", "uid": "C145225Y6292", "id.orig_h": "192.168.1.19", "id.orig_p": 24860, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32872, "rtt": 0.271216, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9581", "ttl": 98}
{"ts": "2025-04-23T09:21:09.075692Z", "uid": "C121923T4387", "id.orig_h": "192.168.1.15", "id.orig_p": 35832, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30868, "rtt": 0.318326, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.166.133", "ttl": 551}
{"ts": "2025-04-23T09:21:09.075715Z", "uid": "C123921J7671", "id.orig_h": "192.168.1.18", "id.orig_p": 1456, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42369, "rtt": 0.210105, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 424}
{"ts": "2025-04-23T09:21:09.075736Z", "uid": "C470518Y7521", "id.orig_h": "192.168.1.11", "id.orig_p": 26796, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44526, "rtt": 0.234676, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 2333}
{"ts": "2025-04-23T09:21:09.075758Z", "uid": "C167368Y2219", "id.orig_h": "192.168.1.15", "id.orig_p": 54788, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 56558, "rtt": 0.450514, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2730}
{"ts": "2025-04-23T09:21:09.075781Z", "uid": "C804046V2034", "id.orig_h": "192.168.1.11", "id.orig_p": 3410, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28910, "rtt": 0.134007, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 2981}
{"ts": "2025-04-23T09:21:09.075804Z", "uid": "C371200C7302", "id.orig_h": "192.168.1.13", "id.orig_p": 62996, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58501, "rtt": 0.300842, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 3328}
{"ts": "2025-04-23T09:21:09.075832Z", "uid": "C460225O7060", "id.orig_h": "192.168.1.20", "id.orig_p": 16084, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 33486, "rtt": 0.254499, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 244}
{"ts": "2025-04-23T09:21:09.075854Z", "uid": "C310365B7478", "id.orig_h": "192.168.1.17", "id.orig_p": 6062, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16904, "rtt": 0.183848, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9650", "ttl": 1624}
{"ts": "2025-04-23T09:21:09.075877Z", "uid": "C870433K7866", "id.orig_h": "192.168.1.13", "id.orig_p": 21452, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19679, "rtt": 0.42289, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1064", "ttl": 1810}
{"ts": "2025-04-23T09:21:09.075908Z", "uid": "C544477H8326", "id.orig_h": "192.168.1.10", "id.orig_p": 7789, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41344, "rtt": 0.250751, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1609}
{"ts": "2025-04-23T09:21:09.075931Z", "uid": "C467193N3226", "id.orig_h": "192.168.1.18", "id.orig_p": 9273, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35507, "rtt": 0.281824, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.133.138", "ttl": 1007}
{"ts": "2025-04-23T09:21:09.075953Z", "uid": "C748984B1663", "id.orig_h": "192.168.1.16", "id.orig_p": 38510, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51496, "rtt": 0.240163, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1223}
{"ts": "2025-04-23T09:21:09.076095Z", "uid": "C550864F8160", "id.orig_h": "192.168.1.12", "id.orig_p": 28434, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43708, "rtt": 0.452958, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 3441}
{"ts": "2025-04-23T09:21:09.076161Z", "uid": "C609970U2407", "id.orig_h": "192.168.1.12", "id.orig_p": 46444, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37207, "rtt": 0.137137, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.32", "ttl": 1151}
{"ts": "2025-04-23T09:21:09.076177Z", "uid": "C486525C3112", "id.orig_h": "192.168.1.10", "id.orig_p": 3295, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 33420, "rtt": 0.286597, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.101.135", "ttl": 3378}
{"ts": "2025-04-23T09:21:09.076197Z", "uid": "C531143L4231", "id.orig_h": "192.168.1.20", "id.orig_p": 9528, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46708, "rtt": 0.025534, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6272", "ttl": 1860}
{"ts": "2025-04-23T09:21:09.076210Z", "uid": "C546262F1132", "id.orig_h": "192.168.1.17", "id.orig_p": 15821, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22889, "rtt": 0.063354, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1372", "ttl": 2811}
{"ts": "2025-04-23T09:21:09.076223Z", "uid": "C357495R7511", "id.orig_h": "192.168.1.16", "id.orig_p": 23008, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12519, "rtt": 0.046264, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.75.162", "ttl": 1400}
{"ts": "2025-04-23T09:21:09.076235Z", "uid": "C990043H3340", "id.orig_h": "192.168.1.19", "id.orig_p": 16288, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 59581, "rtt": 0.422308, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2042}
{"ts": "2025-04-23T09:21:09.076360Z", "uid": "C225950W1273", "id.orig_h": "192.168.1.17", "id.orig_p": 12007, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45313, "rtt": 0.27973, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6988", "ttl": 1172}
{"ts": "2025-04-23T09:21:09.076396Z", "uid": "C810370C7663", "id.orig_h": "192.168.1.15", "id.orig_p": 42871, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38507, "rtt": 0.120602, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2705}
{"ts": "2025-04-23T09:21:09.076410Z", "uid": "C624424X8832", "id.orig_h": "192.168.1.13", "id.orig_p": 63416, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19154, "rtt": 0.433531, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 1010}
{"ts": "2025-04-23T09:21:09.076422Z", "uid": "C744393G3119", "id.orig_h": "192.168.1.15", "id.orig_p": 17362, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47856, "rtt": 0.178771, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 3455}
{"ts": "2025-04-23T09:21:09.076435Z", "uid": "C167576T3724", "id.orig_h": "192.168.1.16", "id.orig_p": 8275, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41956, "rtt": 0.137985, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.188.204", "ttl": 1193}
{"ts": "2025-04-23T09:21:09.076448Z", "uid": "C931512G2241", "id.orig_h": "192.168.1.11", "id.orig_p": 22873, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28879, "rtt": 0.328627, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1483", "ttl": 492}
{"ts": "2025-04-23T09:21:09.076460Z", "uid": "C412415Y2466", "id.orig_h": "192.168.1.12", "id.orig_p": 29595, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15734, "rtt": 0.208035, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 1780}
{"ts": "2025-04-23T09:21:09.076471Z", "uid": "C309826D7282", "id.orig_h": "192.168.1.21", "id.orig_p": 3618, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 52357, "rtt": 0.220956, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.101.172", "ttl": 1104}
{"ts": "2025-04-23T09:21:09.076483Z", "uid": "C599253H1562", "id.orig_h": "192.168.1.18", "id.orig_p": 39004, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25124, "rtt": 0.272527, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1226}
{"ts": "2025-04-23T09:21:09.076498Z", "uid": "C170606Z6413", "id.orig_h": "192.168.1.20", "id.orig_p": 14382, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 10621, "rtt": 0.374692, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1186}
{"ts": "2025-04-23T09:21:09.076512Z", "uid": "C234906M6360", "id.orig_h": "192.168.1.13", "id.orig_p": 55042, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27004, "rtt": 0.246259, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 1643}
{"ts": "2025-04-23T09:21:09.076533Z", "uid": "C278452V6975", "id.orig_h": "192.168.1.20", "id.orig_p": 55163, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44981, "rtt": 0.257917, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.88.30", "ttl": 2434}
{"ts": "2025-04-23T09:21:09.076546Z", "uid": "C535817K6216", "id.orig_h": "192.168.1.14", "id.orig_p": 60009, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24406, "rtt": 0.156141, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 1400}
{"ts": "2025-04-23T09:21:09.076557Z", "uid": "C525416O3769", "id.orig_h": "192.168.1.13", "id.orig_p": 41978, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20704, "rtt": 0.211337, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 388}
{"ts": "2025-04-23T09:21:09.076569Z", "uid": "C157624C6402", "id.orig_h": "192.168.1.16", "id.orig_p": 11249, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27398, "rtt": 0.251428, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.202.87", "ttl": 369}
{"ts": "2025-04-23T09:21:09.076586Z", "uid": "C400371B6098", "id.orig_h": "192.168.1.13", "id.orig_p": 62600, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23301, "rtt": 0.454016, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2958", "ttl": 568}
{"ts": "2025-04-23T09:21:09.076598Z", "uid": "C460361S6200", "id.orig_h": "192.168.1.15", "id.orig_p": 33665, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 40227, "rtt": 0.239911, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2327}
{"ts": "2025-04-23T09:21:09.076614Z", "uid": "C725720Q1924", "id.orig_h": "192.168.1.11", "id.orig_p": 20582, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58423, "rtt": 0.394543, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6891", "ttl": 2919}
{"ts": "2025-04-23T09:21:09.076647Z", "uid": "C432787N1445", "id.orig_h": "192.168.1.10", "id.orig_p": 29331, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57502, "rtt": 0.207335, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3091", "ttl": 2787}
{"ts": "2025-04-23T09:21:09.076671Z", "uid": "C857000N7840", "id.orig_h": "192.168.1.19", "id.orig_p": 27806, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 39155, "rtt": 0.337422, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 342}
{"ts": "2025-04-23T09:21:09.076683Z", "uid": "C626399A5919", "id.orig_h": "192.168.1.16", "id.orig_p": 54322, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57673, "rtt": 0.409534, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.31.115", "ttl": 2171}
{"ts": "2025-04-23T09:21:09.076694Z", "uid": "C936827N4452", "id.orig_h": "192.168.1.20", "id.orig_p": 55449, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21297, "rtt": 0.274214, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 882}
{"ts": "2025-04-23T09:21:09.076706Z", "uid": "C315222Q7375", "id.orig_h": "192.168.1.14", "id.orig_p": 20105, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55085, "rtt": 0.388089, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6956", "ttl": 3133}
{"ts": "2025-04-23T09:21:09.076717Z", "uid": "C763188T5498", "id.orig_h": "192.168.1.14", "id.orig_p": 34231, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23947, "rtt": 0.465739, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.36.129", "ttl": 1840}
{"ts": "2025-04-23T09:21:09.076728Z", "uid": "C714929L8588", "id.orig_h": "192.168.1.13", "id.orig_p": 55909, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30551, "rtt": 0.332747, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 3498}
{"ts": "2025-04-23T09:21:09.076740Z", "uid": "C103755L8278", "id.orig_h": "192.168.1.19", "id.orig_p": 44484, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39952, "rtt": 0.46107, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 864}
{"ts": "2025-04-23T09:21:09.076751Z", "uid": "C667832M7713", "id.orig_h": "192.168.1.19", "id.orig_p": 46831, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25488, "rtt": 0.162299, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9227", "ttl": 2277}
{"ts": "2025-04-23T09:21:09.076766Z", "uid": "C282596F9513", "id.orig_h": "192.168.1.19", "id.orig_p": 56162, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58167, "rtt": 0.157211, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.131.104", "ttl": 1307}
{"ts": "2025-04-23T09:21:09.076782Z", "uid": "C106640A4785", "id.orig_h": "192.168.1.12", "id.orig_p": 38420, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41095, "rtt": 0.176927, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1992}
{"ts": "2025-04-23T09:21:09.076803Z", "uid": "C308422D6778", "id.orig_h": "192.168.1.20", "id.orig_p": 40888, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40690, "rtt": 0.481362, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2901}
{"ts": "2025-04-23T09:21:09.076818Z", "uid": "C337561F7907", "id.orig_h": "192.168.1.15", "id.orig_p": 50805, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45465, "rtt": 0.328439, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 498}
{"ts": "2025-04-23T09:21:09.076829Z", "uid": "C981341V8556", "id.orig_h": "192.168.1.11", "id.orig_p": 13139, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42854, "rtt": 0.317009, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1473", "ttl": 3581}
{"ts": "2025-04-23T09:21:09.076841Z", "uid": "C631545B6380", "id.orig_h": "192.168.1.20", "id.orig_p": 61202, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53030, "rtt": 0.075206, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1413}
{"ts": "2025-04-23T09:21:09.076853Z", "uid": "C686388V2348", "id.orig_h": "192.168.1.11", "id.orig_p": 14260, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29674, "rtt": 0.14694, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 957}
{"ts": "2025-04-23T09:21:09.076864Z", "uid": "C183640F1952", "id.orig_h": "192.168.1.16", "id.orig_p": 59755, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37688, "rtt": 0.290625, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2785}
{"ts": "2025-04-23T09:21:09.076876Z", "uid": "C142255I7972", "id.orig_h": "192.168.1.16", "id.orig_p": 33214, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 27345, "rtt": 0.479917, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 552}
{"ts": "2025-04-23T09:21:09.076893Z", "uid": "C555626G3483", "id.orig_h": "192.168.1.11", "id.orig_p": 63754, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 59379, "rtt": 0.427971, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 345}
{"ts": "2025-04-23T09:21:09.076912Z", "uid": "C617481O2211", "id.orig_h": "192.168.1.17", "id.orig_p": 15558, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 55754, "rtt": 0.354658, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6238", "ttl": 2580}
{"ts": "2025-04-23T09:21:09.076924Z", "uid": "C212713R8774", "id.orig_h": "192.168.1.16", "id.orig_p": 63751, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42675, "rtt": 0.094216, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8303", "ttl": 2752}
{"ts": "2025-04-23T09:21:09.076935Z", "uid": "C850695I2420", "id.orig_h": "192.168.1.20", "id.orig_p": 1257, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24454, "rtt": 0.421946, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8547", "ttl": 1226}
{"ts": "2025-04-23T09:21:09.076949Z", "uid": "C866941A7252", "id.orig_h": "192.168.1.19", "id.orig_p": 41984, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 35792, "rtt": 0.284457, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 3038}
{"ts": "2025-04-23T09:21:09.076960Z", "uid": "C409246L6280", "id.orig_h": "192.168.1.13", "id.orig_p": 29245, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 30039, "rtt": 0.265078, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2595}
{"ts": "2025-04-23T09:21:09.076972Z", "uid": "C923081C8024", "id.orig_h": "192.168.1.16", "id.orig_p": 52376, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57185, "rtt": 0.159566, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 969}
{"ts": "2025-04-23T09:21:09.076983Z", "uid": "C396732U1334", "id.orig_h": "192.168.1.16", "id.orig_p": 33920, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46420, "rtt": 0.250418, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2940", "ttl": 1796}
{"ts": "2025-04-23T09:21:09.076998Z", "uid": "C315033J5859", "id.orig_h": "192.168.1.10", "id.orig_p": 9282, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44956, "rtt": 0.458628, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.77.123", "ttl": 3027}
{"ts": "2025-04-23T09:21:09.077013Z", "uid": "C533059H5339", "id.orig_h": "192.168.1.14", "id.orig_p": 61102, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39775, "rtt": 0.454324, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8866", "ttl": 1777}
{"ts": "2025-04-23T09:21:09.077025Z", "uid": "C839611D2307", "id.orig_h": "192.168.1.13", "id.orig_p": 60928, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36771, "rtt": 0.462561, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 802}
{"ts": "2025-04-23T09:21:09.077038Z", "uid": "C615787D2128", "id.orig_h": "192.168.1.18", "id.orig_p": 39799, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20853, "rtt": 0.411985, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3065}
{"ts": "2025-04-23T09:21:09.077050Z", "uid": "C633632L4765", "id.orig_h": "192.168.1.20", "id.orig_p": 53251, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38408, "rtt": 0.374144, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4178", "ttl": 2421}
{"ts": "2025-04-23T09:21:09.077065Z", "uid": "C450720C9126", "id.orig_h": "192.168.1.13", "id.orig_p": 62169, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31319, "rtt": 0.362388, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2962}
{"ts": "2025-04-23T09:21:09.077076Z", "uid": "C166528E7949", "id.orig_h": "192.168.1.20", "id.orig_p": 27840, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41590, "rtt": 0.315082, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 3274}
{"ts": "2025-04-23T09:21:09.077096Z", "uid": "C406765A4611", "id.orig_h": "192.168.1.20", "id.orig_p": 8900, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41538, "rtt": 0.380306, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.2.105", "ttl": 941}
{"ts": "2025-04-23T09:21:09.077108Z", "uid": "C757972G5647", "id.orig_h": "192.168.1.15", "id.orig_p": 35244, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47301, "rtt": 0.477875, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.2.62", "ttl": 1948}
{"ts": "2025-04-23T09:21:09.077127Z", "uid": "C718080L8417", "id.orig_h": "192.168.1.12", "id.orig_p": 62000, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42727, "rtt": 0.46185, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1356}
{"ts": "2025-04-23T09:21:09.077149Z", "uid": "C387257R5688", "id.orig_h": "192.168.1.10", "id.orig_p": 57405, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37343, "rtt": 0.384594, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.86.73", "ttl": 853}
{"ts": "2025-04-23T09:21:09.077168Z", "uid": "C490334U8884", "id.orig_h": "192.168.1.18", "id.orig_p": 20212, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 43550, "rtt": 0.357606, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.136.250", "ttl": 1832}
{"ts": "2025-04-23T09:21:09.077197Z", "uid": "C109850T4568", "id.orig_h": "192.168.1.10", "id.orig_p": 23120, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20069, "rtt": 0.120486, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7438", "ttl": 515}
{"ts": "2025-04-23T09:21:09.077210Z", "uid": "C747647K8943", "id.orig_h": "192.168.1.13", "id.orig_p": 29298, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 35305, "rtt": 0.349758, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7224", "ttl": 158}
{"ts": "2025-04-23T09:21:09.077233Z", "uid": "C798747C5753", "id.orig_h": "192.168.1.21", "id.orig_p": 62737, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51620, "rtt": 0.29112, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.22.35", "ttl": 2169}
{"ts": "2025-04-23T09:21:09.077245Z", "uid": "C903644M8702", "id.orig_h": "192.168.1.16", "id.orig_p": 3505, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31830, "rtt": 0.125572, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2268}
{"ts": "2025-04-23T09:21:09.077444Z", "uid": "C863111G2954", "id.orig_h": "192.168.1.11", "id.orig_p": 19931, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16297, "rtt": 0.493572, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 940}
{"ts": "2025-04-23T09:21:09.077473Z", "uid": "C339667S4546", "id.orig_h": "192.168.1.10", "id.orig_p": 45657, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32528, "rtt": 0.186223, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 3025}
{"ts": "2025-04-23T09:21:09.077487Z", "uid": "C961693A1933", "id.orig_h": "192.168.1.15", "id.orig_p": 45182, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38224, "rtt": 0.164907, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2021}
{"ts": "2025-04-23T09:21:09.077501Z", "uid": "C176219Z8646", "id.orig_h": "192.168.1.17", "id.orig_p": 35197, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 13129, "rtt": 0.041469, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9323", "ttl": 3556}
{"ts": "2025-04-23T09:21:09.077518Z", "uid": "C114292R6510", "id.orig_h": "192.168.1.13", "id.orig_p": 9873, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18440, "rtt": 0.179828, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.203.218", "ttl": 2403}
{"ts": "2025-04-23T09:21:09.077533Z", "uid": "C342389I1120", "id.orig_h": "192.168.1.19", "id.orig_p": 46476, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22099, "rtt": 0.064169, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7795", "ttl": 584}
{"ts": "2025-04-23T09:21:09.077547Z", "uid": "C585451X4120", "id.orig_h": "192.168.1.20", "id.orig_p": 14251, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31105, "rtt": 0.113409, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1233}
{"ts": "2025-04-23T09:21:09.077559Z", "uid": "C289861X4576", "id.orig_h": "192.168.1.13", "id.orig_p": 32405, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52533, "rtt": 0.299296, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 179}
{"ts": "2025-04-23T09:21:09.077573Z", "uid": "C263642M2891", "id.orig_h": "192.168.1.21", "id.orig_p": 18463, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47581, "rtt": 0.261733, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 3378}
{"ts": "2025-04-23T09:21:09.077584Z", "uid": "C547637O6825", "id.orig_h": "192.168.1.11", "id.orig_p": 46573, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12283, "rtt": 0.462198, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 524}
{"ts": "2025-04-23T09:21:09.077596Z", "uid": "C985130R2393", "id.orig_h": "192.168.1.16", "id.orig_p": 64480, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16961, "rtt": 0.199654, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8613", "ttl": 501}
{"ts": "2025-04-23T09:21:09.077616Z", "uid": "C774215O2704", "id.orig_h": "192.168.1.15", "id.orig_p": 50364, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24212, "rtt": 0.309156, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2374}
{"ts": "2025-04-23T09:21:09.077628Z", "uid": "C483421N6060", "id.orig_h": "192.168.1.21", "id.orig_p": 65043, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40877, "rtt": 0.209223, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 2012}
{"ts": "2025-04-23T09:21:09.077646Z", "uid": "C799265V5392", "id.orig_h": "192.168.1.13", "id.orig_p": 37187, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 51297, "rtt": 0.474623, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9574", "ttl": 402}
{"ts": "2025-04-23T09:21:09.077658Z", "uid": "C982050L5777", "id.orig_h": "192.168.1.15", "id.orig_p": 7667, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 18747, "rtt": 0.191992, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.142.57", "ttl": 1983}
{"ts": "2025-04-23T09:21:09.077669Z", "uid": "C733294F9317", "id.orig_h": "192.168.1.13", "id.orig_p": 61951, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 57044, "rtt": 0.463277, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.155.37", "ttl": 1532}
{"ts": "2025-04-23T09:21:09.077684Z", "uid": "C676475Z7064", "id.orig_h": "192.168.1.14", "id.orig_p": 59943, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53343, "rtt": 0.237376, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 2267}
{"ts": "2025-04-23T09:21:09.077695Z", "uid": "C655664C3057", "id.orig_h": "192.168.1.21", "id.orig_p": 22374, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36049, "rtt": 0.346702, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.6.235", "ttl": 274}
{"ts": "2025-04-23T09:21:09.077707Z", "uid": "C159159G9579", "id.orig_h": "192.168.1.21", "id.orig_p": 6635, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41951, "rtt": 0.028906, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.171.241", "ttl": 686}
{"ts": "2025-04-23T09:21:09.077718Z", "uid": "C229470F7359", "id.orig_h": "192.168.1.10", "id.orig_p": 44866, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41757, "rtt": 0.267756, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 943}
{"ts": "2025-04-23T09:21:09.077731Z", "uid": "C218072X1046", "id.orig_h": "192.168.1.12", "id.orig_p": 17187, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25599, "rtt": 0.280493, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1531}
{"ts": "2025-04-23T09:21:09.077754Z", "uid": "C129002I6129", "id.orig_h": "192.168.1.12", "id.orig_p": 43982, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36059, "rtt": 0.28149, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.80.182", "ttl": 918}
{"ts": "2025-04-23T09:21:09.077778Z", "uid": "C100996U6595", "id.orig_h": "192.168.1.18", "id.orig_p": 14344, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26749, "rtt": 0.320858, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.83.9", "ttl": 860}
{"ts": "2025-04-23T09:21:09.077798Z", "uid": "C510966H6080", "id.orig_h": "192.168.1.20", "id.orig_p": 1742, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 49226, "rtt": 0.043573, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.56.226", "ttl": 411}
{"ts": "2025-04-23T09:21:09.077822Z", "uid": "C317027P5739", "id.orig_h": "192.168.1.19", "id.orig_p": 55473, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 43788, "rtt": 0.404937, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1909}
{"ts": "2025-04-23T09:21:09.077834Z", "uid": "C786562L3708", "id.orig_h": "192.168.1.12", "id.orig_p": 24526, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53350, "rtt": 0.381626, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1669", "ttl": 1744}
{"ts": "2025-04-23T09:21:09.077845Z", "uid": "C112371S6394", "id.orig_h": "192.168.1.21", "id.orig_p": 5305, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52856, "rtt": 0.360484, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9710", "ttl": 77}
{"ts": "2025-04-23T09:21:09.077857Z", "uid": "C440430W7751", "id.orig_h": "192.168.1.18", "id.orig_p": 12954, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 47055, "rtt": 0.192686, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1675}
{"ts": "2025-04-23T09:21:09.077869Z", "uid": "C938256W7296", "id.orig_h": "192.168.1.18", "id.orig_p": 32742, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40719, "rtt": 0.261767, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1884}
{"ts": "2025-04-23T09:21:09.077889Z", "uid": "C690452Y3873", "id.orig_h": "192.168.1.20", "id.orig_p": 5898, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 18955, "rtt": 0.310798, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2249}
{"ts": "2025-04-23T09:21:09.077917Z", "uid": "C526711N9976", "id.orig_h": "192.168.1.19", "id.orig_p": 4139, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 34175, "rtt": 0.412965, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 286}
{"ts": "2025-04-23T09:21:09.078036Z", "uid": "C178934Q8350", "id.orig_h": "192.168.1.19", "id.orig_p": 23267, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43646, "rtt": 0.046477, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.62.29", "ttl": 2704}
{"ts": "2025-04-23T09:21:09.078056Z", "uid": "C319339B2261", "id.orig_h": "192.168.1.10", "id.orig_p": 36640, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35930, "rtt": 0.170607, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.8.49", "ttl": 1000}
{"ts": "2025-04-23T09:21:09.078079Z", "uid": "C798502Y3582", "id.orig_h": "192.168.1.16", "id.orig_p": 25726, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 20184, "rtt": 0.088511, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1676}
{"ts": "2025-04-23T09:21:09.078099Z", "uid": "C565604T5146", "id.orig_h": "192.168.1.20", "id.orig_p": 35676, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47739, "rtt": 0.312053, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2143", "ttl": 1126}
{"ts": "2025-04-23T09:21:09.078118Z", "uid": "C601715W8294", "id.orig_h": "192.168.1.20", "id.orig_p": 32670, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58267, "rtt": 0.340776, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 2381}
{"ts": "2025-04-23T09:21:09.078147Z", "uid": "C508730A2325", "id.orig_h": "192.168.1.14", "id.orig_p": 58567, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44085, "rtt": 0.102646, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2102", "ttl": 2250}
{"ts": "2025-04-23T09:21:09.078159Z", "uid": "C692038X5077", "id.orig_h": "192.168.1.17", "id.orig_p": 8758, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 30034, "rtt": 0.335576, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 2911}
{"ts": "2025-04-23T09:21:09.078171Z", "uid": "C499839D3212", "id.orig_h": "192.168.1.10", "id.orig_p": 50760, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44338, "rtt": 0.365559, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1000}
{"ts": "2025-04-23T09:21:09.078182Z", "uid": "C134910Y3153", "id.orig_h": "192.168.1.21", "id.orig_p": 22817, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 52837, "rtt": 0.496863, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 2846}
{"ts": "2025-04-23T09:21:09.078200Z", "uid": "C943832A9282", "id.orig_h": "192.168.1.21", "id.orig_p": 46067, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52392, "rtt": 0.429261, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 3309}
{"ts": "2025-04-23T09:21:09.078213Z", "uid": "C831231R4395", "id.orig_h": "192.168.1.20", "id.orig_p": 50437, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23986, "rtt": 0.141616, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3644", "ttl": 704}
{"ts": "2025-04-23T09:21:09.078225Z", "uid": "C630866T9200", "id.orig_h": "192.168.1.20", "id.orig_p": 45029, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55652, "rtt": 0.062452, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3300", "ttl": 2894}
{"ts": "2025-04-23T09:21:09.078240Z", "uid": "C654210B2940", "id.orig_h": "192.168.1.14", "id.orig_p": 56343, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53769, "rtt": 0.422132, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 3534}
{"ts": "2025-04-23T09:21:09.078256Z", "uid": "C427958S3403", "id.orig_h": "192.168.1.20", "id.orig_p": 64647, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31098, "rtt": 0.019869, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3151", "ttl": 1328}
{"ts": "2025-04-23T09:21:09.078275Z", "uid": "C660810L4970", "id.orig_h": "192.168.1.11", "id.orig_p": 49260, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 50204, "rtt": 0.377568, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1340}
{"ts": "2025-04-23T09:21:09.078287Z", "uid": "C993355T8879", "id.orig_h": "192.168.1.12", "id.orig_p": 60580, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55537, "rtt": 0.482386, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.199.79", "ttl": 1670}
{"ts": "2025-04-23T09:21:09.078298Z", "uid": "C747735B2155", "id.orig_h": "192.168.1.12", "id.orig_p": 21007, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40829, "rtt": 0.356205, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8639", "ttl": 3176}
{"ts": "2025-04-23T09:21:09.078310Z", "uid": "C821425N1678", "id.orig_h": "192.168.1.14", "id.orig_p": 61347, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48657, "rtt": 0.191681, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7478", "ttl": 2647}
{"ts": "2025-04-23T09:21:09.078324Z", "uid": "C485289X4777", "id.orig_h": "192.168.1.19", "id.orig_p": 55141, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25369, "rtt": 0.226938, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5030", "ttl": 2861}
{"ts": "2025-04-23T09:21:09.078335Z", "uid": "C792074X4434", "id.orig_h": "192.168.1.10", "id.orig_p": 21475, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 50844, "rtt": 0.095645, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6425", "ttl": 908}
{"ts": "2025-04-23T09:21:09.078347Z", "uid": "C237235F9588", "id.orig_h": "192.168.1.17", "id.orig_p": 59519, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19140, "rtt": 0.110918, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7687", "ttl": 692}
{"ts": "2025-04-23T09:21:09.078359Z", "uid": "C408993A3125", "id.orig_h": "192.168.1.17", "id.orig_p": 40577, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41339, "rtt": 0.095521, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1088", "ttl": 284}
{"ts": "2025-04-23T09:21:09.078371Z", "uid": "C238290X6389", "id.orig_h": "192.168.1.20", "id.orig_p": 31390, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 46300, "rtt": 0.12124, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 3191}
{"ts": "2025-04-23T09:21:09.078383Z", "uid": "C903507N1522", "id.orig_h": "192.168.1.10", "id.orig_p": 16304, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 12453, "rtt": 0.201267, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.162.185", "ttl": 1129}
{"ts": "2025-04-23T09:21:09.078398Z", "uid": "C120912M6626", "id.orig_h": "192.168.1.14", "id.orig_p": 41356, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31996, "rtt": 0.450932, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.72.249", "ttl": 3149}
{"ts": "2025-04-23T09:21:09.078412Z", "uid": "C878485I4487", "id.orig_h": "192.168.1.20", "id.orig_p": 54263, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13547, "rtt": 0.413595, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2181", "ttl": 828}
{"ts": "2025-04-23T09:21:09.078423Z", "uid": "C954861D1182", "id.orig_h": "192.168.1.10", "id.orig_p": 19306, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57622, "rtt": 0.227629, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4301", "ttl": 304}
{"ts": "2025-04-23T09:21:09.078438Z", "uid": "C540557Y2173", "id.orig_h": "192.168.1.11", "id.orig_p": 43211, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26271, "rtt": 0.338914, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1057}
{"ts": "2025-04-23T09:21:09.078449Z", "uid": "C473950N1622", "id.orig_h": "192.168.1.11", "id.orig_p": 13414, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57751, "rtt": 0.33597, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.144.61", "ttl": 1188}
{"ts": "2025-04-23T09:21:09.078461Z", "uid": "C682900T8851", "id.orig_h": "192.168.1.16", "id.orig_p": 31179, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52674, "rtt": 0.35502, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.246.21", "ttl": 1876}
{"ts": "2025-04-23T09:21:09.078473Z", "uid": "C618286D8636", "id.orig_h": "192.168.1.17", "id.orig_p": 28805, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43232, "rtt": 0.48568, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9497", "ttl": 1322}
{"ts": "2025-04-23T09:21:09.078486Z", "uid": "C210916W3779", "id.orig_h": "192.168.1.19", "id.orig_p": 10555, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24884, "rtt": 0.158311, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 759}
{"ts": "2025-04-23T09:21:09.078497Z", "uid": "C628628C6680", "id.orig_h": "192.168.1.16", "id.orig_p": 8577, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 15347, "rtt": 0.309377, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 3054}
{"ts": "2025-04-23T09:21:09.078509Z", "uid": "C306178S3257", "id.orig_h": "192.168.1.19", "id.orig_p": 6633, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51391, "rtt": 0.423803, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8260", "ttl": 2878}
{"ts": "2025-04-23T09:21:09.078523Z", "uid": "C206660C7336", "id.orig_h": "192.168.1.16", "id.orig_p": 47195, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31241, "rtt": 0.045392, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.128.34", "ttl": 297}
{"ts": "2025-04-23T09:21:09.078535Z", "uid": "C716653M1742", "id.orig_h": "192.168.1.18", "id.orig_p": 62143, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 15790, "rtt": 0.320308, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8297", "ttl": 2484}
{"ts": "2025-04-23T09:21:09.078546Z", "uid": "C665483Q1697", "id.orig_h": "192.168.1.10", "id.orig_p": 45904, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11664, "rtt": 0.095282, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1661}
{"ts": "2025-04-23T09:21:09.078561Z", "uid": "C809719V1429", "id.orig_h": "192.168.1.15", "id.orig_p": 18146, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50959, "rtt": 0.470828, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.10.243", "ttl": 2486}
{"ts": "2025-04-23T09:21:09.078572Z", "uid": "C221993L5461", "id.orig_h": "192.168.1.17", "id.orig_p": 21381, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48416, "rtt": 0.258352, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 687}
{"ts": "2025-04-23T09:21:09.078584Z", "uid": "C730627Y2962", "id.orig_h": "192.168.1.14", "id.orig_p": 55433, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58228, "rtt": 0.249388, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3109}
{"ts": "2025-04-23T09:21:09.078598Z", "uid": "C708485F5664", "id.orig_h": "192.168.1.15", "id.orig_p": 1669, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30439, "rtt": 0.398161, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 599}
{"ts": "2025-04-23T09:21:09.078610Z", "uid": "C114501B2382", "id.orig_h": "192.168.1.10", "id.orig_p": 59882, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48959, "rtt": 0.141808, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4487", "ttl": 887}
{"ts": "2025-04-23T09:21:09.078626Z", "uid": "C576270O2859", "id.orig_h": "192.168.1.10", "id.orig_p": 38109, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13393, "rtt": 0.15932, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7321", "ttl": 2346}
{"ts": "2025-04-23T09:21:09.078638Z", "uid": "C949846V5060", "id.orig_h": "192.168.1.20", "id.orig_p": 58475, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 20404, "rtt": 0.392308, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.205.29", "ttl": 1038}
{"ts": "2025-04-23T09:21:09.078649Z", "uid": "C390509S5469", "id.orig_h": "192.168.1.19", "id.orig_p": 63885, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17840, "rtt": 0.065015, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.131.16", "ttl": 1847}
{"ts": "2025-04-23T09:21:09.078661Z", "uid": "C943119Z4981", "id.orig_h": "192.168.1.21", "id.orig_p": 29280, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48506, "rtt": 0.343836, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 1526}
{"ts": "2025-04-23T09:21:09.078675Z", "uid": "C116551O1086", "id.orig_h": "192.168.1.14", "id.orig_p": 16848, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58042, "rtt": 0.235666, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5114", "ttl": 1952}
{"ts": "2025-04-23T09:21:09.078686Z", "uid": "C585745P9290", "id.orig_h": "192.168.1.19", "id.orig_p": 48452, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15110, "rtt": 0.380819, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 935}
{"ts": "2025-04-23T09:21:09.078698Z", "uid": "C677499Q3020", "id.orig_h": "192.168.1.12", "id.orig_p": 46660, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36227, "rtt": 0.467943, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3089}
{"ts": "2025-04-23T09:21:09.078709Z", "uid": "C871648D1147", "id.orig_h": "192.168.1.18", "id.orig_p": 33243, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 21278, "rtt": 0.117153, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4580", "ttl": 1293}
{"ts": "2025-04-23T09:21:09.078721Z", "uid": "C616382L7550", "id.orig_h": "192.168.1.16", "id.orig_p": 7336, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58394, "rtt": 0.376096, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 1068}
{"ts": "2025-04-23T09:21:09.078733Z", "uid": "C363791C4284", "id.orig_h": "192.168.1.11", "id.orig_p": 27525, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48717, "rtt": 0.108363, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 3475}
{"ts": "2025-04-23T09:21:09.078748Z", "uid": "C297738N9431", "id.orig_h": "192.168.1.12", "id.orig_p": 55565, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30561, "rtt": 0.117028, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1713}
{"ts": "2025-04-23T09:21:09.078759Z", "uid": "C537140H8505", "id.orig_h": "192.168.1.13", "id.orig_p": 21916, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 47828, "rtt": 0.211744, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 3314}
{"ts": "2025-04-23T09:21:09.078771Z", "uid": "C937670H5103", "id.orig_h": "192.168.1.21", "id.orig_p": 34469, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44486, "rtt": 0.326237, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2060}
{"ts": "2025-04-23T09:21:09.078785Z", "uid": "C332236H6438", "id.orig_h": "192.168.1.20", "id.orig_p": 62382, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32295, "rtt": 0.389574, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9336", "ttl": 2549}
{"ts": "2025-04-23T09:21:09.078797Z", "uid": "C465064F7537", "id.orig_h": "192.168.1.15", "id.orig_p": 62190, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 59321, "rtt": 0.237794, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8621", "ttl": 2838}
{"ts": "2025-04-23T09:21:09.078808Z", "uid": "C725647J5874", "id.orig_h": "192.168.1.12", "id.orig_p": 14671, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24407, "rtt": 0.263635, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.7", "ttl": 857}
{"ts": "2025-04-23T09:21:09.078826Z", "uid": "C425288U3002", "id.orig_h": "192.168.1.17", "id.orig_p": 3217, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49870, "rtt": 0.250214, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.168.103", "ttl": 2921}
{"ts": "2025-04-23T09:21:09.078846Z", "uid": "C806418X1163", "id.orig_h": "192.168.1.15", "id.orig_p": 38313, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 34092, "rtt": 0.087587, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7701", "ttl": 2585}
{"ts": "2025-04-23T09:21:09.078860Z", "uid": "C924472R5931", "id.orig_h": "192.168.1.17", "id.orig_p": 33608, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58357, "rtt": 0.314468, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 531}
{"ts": "2025-04-23T09:21:09.078871Z", "uid": "C305548J5714", "id.orig_h": "192.168.1.10", "id.orig_p": 24896, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45108, "rtt": 0.23786, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.58.30", "ttl": 2062}
{"ts": "2025-04-23T09:21:09.078883Z", "uid": "C781325F2093", "id.orig_h": "192.168.1.10", "id.orig_p": 31723, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45791, "rtt": 0.258946, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2630", "ttl": 297}
{"ts": "2025-04-23T09:21:09.078903Z", "uid": "C361374T6129", "id.orig_h": "192.168.1.21", "id.orig_p": 15464, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36107, "rtt": 0.486312, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.187.244", "ttl": 1452}
{"ts": "2025-04-23T09:21:09.078923Z", "uid": "C188697K6119", "id.orig_h": "192.168.1.18", "id.orig_p": 10410, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 56479, "rtt": 0.461564, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 1523}
{"ts": "2025-04-23T09:21:09.078935Z", "uid": "C269717P3163", "id.orig_h": "192.168.1.10", "id.orig_p": 30322, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28144, "rtt": 0.049607, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1985}
{"ts": "2025-04-23T09:21:09.078964Z", "uid": "C709501N6265", "id.orig_h": "192.168.1.13", "id.orig_p": 10466, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 50346, "rtt": 0.461374, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.93.143", "ttl": 3212}
{"ts": "2025-04-23T09:21:09.078976Z", "uid": "C541376E2456", "id.orig_h": "192.168.1.21", "id.orig_p": 42267, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22245, "rtt": 0.028209, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 131}
{"ts": "2025-04-23T09:21:09.078989Z", "uid": "C726324T5390", "id.orig_h": "192.168.1.21", "id.orig_p": 38026, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50946, "rtt": 0.259223, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.122.14", "ttl": 636}
{"ts": "2025-04-23T09:21:09.079001Z", "uid": "C669321G4543", "id.orig_h": "192.168.1.15", "id.orig_p": 13208, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20713, "rtt": 0.272107, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1911", "ttl": 1889}
{"ts": "2025-04-23T09:21:09.079012Z", "uid": "C779090L2670", "id.orig_h": "192.168.1.20", "id.orig_p": 36585, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52736, "rtt": 0.099622, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2590}
{"ts": "2025-04-23T09:21:09.079024Z", "uid": "C544378K1607", "id.orig_h": "192.168.1.17", "id.orig_p": 20265, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31394, "rtt": 0.275597, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3340", "ttl": 312}
{"ts": "2025-04-23T09:21:09.079040Z", "uid": "C877554N4979", "id.orig_h": "192.168.1.21", "id.orig_p": 14105, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45386, "rtt": 0.355062, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7334", "ttl": 3438}
{"ts": "2025-04-23T09:21:09.079055Z", "uid": "C487984E1680", "id.orig_h": "192.168.1.20", "id.orig_p": 3580, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56423, "rtt": 0.040129, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.230.211", "ttl": 2846}
{"ts": "2025-04-23T09:21:09.079067Z", "uid": "C157113L1480", "id.orig_h": "192.168.1.16", "id.orig_p": 7363, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38765, "rtt": 0.033678, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.87.207", "ttl": 2936}
{"ts": "2025-04-23T09:21:09.079080Z", "uid": "C412793K3133", "id.orig_h": "192.168.1.13", "id.orig_p": 9415, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 18928, "rtt": 0.208143, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1968", "ttl": 1878}
{"ts": "2025-04-23T09:21:09.079092Z", "uid": "C333939U1108", "id.orig_h": "192.168.1.14", "id.orig_p": 24092, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24227, "rtt": 0.085193, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2649}
{"ts": "2025-04-23T09:21:09.079103Z", "uid": "C973183N6022", "id.orig_h": "192.168.1.11", "id.orig_p": 29884, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22935, "rtt": 0.326007, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1458", "ttl": 82}
{"ts": "2025-04-23T09:21:09.079114Z", "uid": "C525396R4079", "id.orig_h": "192.168.1.21", "id.orig_p": 35662, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 38455, "rtt": 0.245326, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.167.148", "ttl": 138}
{"ts": "2025-04-23T09:21:09.079129Z", "uid": "C503719H4807", "id.orig_h": "192.168.1.13", "id.orig_p": 13860, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50198, "rtt": 0.095118, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3821", "ttl": 2663}
{"ts": "2025-04-23T09:21:09.079145Z", "uid": "C915170P1878", "id.orig_h": "192.168.1.15", "id.orig_p": 26293, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31402, "rtt": 0.33604, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2513}
{"ts": "2025-04-23T09:21:09.079384Z", "uid": "C875953C3176", "id.orig_h": "192.168.1.21", "id.orig_p": 62821, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 55854, "rtt": 0.119807, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5992", "ttl": 2565}
{"ts": "2025-04-23T09:21:09.079421Z", "uid": "C644016D1704", "id.orig_h": "192.168.1.14", "id.orig_p": 63636, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54708, "rtt": 0.484221, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 1923}
{"ts": "2025-04-23T09:21:09.079434Z", "uid": "C610334B9397", "id.orig_h": "192.168.1.11", "id.orig_p": 1045, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53291, "rtt": 0.121072, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 639}
{"ts": "2025-04-23T09:21:09.079446Z", "uid": "C605321Y8481", "id.orig_h": "192.168.1.20", "id.orig_p": 29498, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33826, "rtt": 0.05999, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 751}
{"ts": "2025-04-23T09:21:09.079458Z", "uid": "C305602O3987", "id.orig_h": "192.168.1.16", "id.orig_p": 36413, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12454, "rtt": 0.492628, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8594", "ttl": 316}
{"ts": "2025-04-23T09:21:09.079469Z", "uid": "C448752F4742", "id.orig_h": "192.168.1.18", "id.orig_p": 46761, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45121, "rtt": 0.19558, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9812", "ttl": 577}
{"ts": "2025-04-23T09:21:09.079480Z", "uid": "C778384P3166", "id.orig_h": "192.168.1.15", "id.orig_p": 29009, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 49834, "rtt": 0.203589, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 188}
{"ts": "2025-04-23T09:21:09.079492Z", "uid": "C757459N1219", "id.orig_h": "192.168.1.10", "id.orig_p": 45752, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12682, "rtt": 0.334035, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.162.198", "ttl": 3417}
{"ts": "2025-04-23T09:21:09.079504Z", "uid": "C945826T5718", "id.orig_h": "192.168.1.14", "id.orig_p": 54486, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39327, "rtt": 0.386487, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.211.184", "ttl": 1216}
{"ts": "2025-04-23T09:21:09.079515Z", "uid": "C284126G5292", "id.orig_h": "192.168.1.16", "id.orig_p": 54712, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 47462, "rtt": 0.087319, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.93.153", "ttl": 2707}
{"ts": "2025-04-23T09:21:09.079530Z", "uid": "C739208L1674", "id.orig_h": "192.168.1.18", "id.orig_p": 41294, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 57777, "rtt": 0.355425, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1137}
{"ts": "2025-04-23T09:21:09.079542Z", "uid": "C557197Z1867", "id.orig_h": "192.168.1.21", "id.orig_p": 49475, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44503, "rtt": 0.497066, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 443}
{"ts": "2025-04-23T09:21:09.079554Z", "uid": "C717795O3781", "id.orig_h": "192.168.1.20", "id.orig_p": 40990, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42079, "rtt": 0.193295, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 1786}
{"ts": "2025-04-23T09:21:09.079575Z", "uid": "C819106N5914", "id.orig_h": "192.168.1.16", "id.orig_p": 31420, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 27180, "rtt": 0.431993, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2393}
{"ts": "2025-04-23T09:21:09.079590Z", "uid": "C447723A4230", "id.orig_h": "192.168.1.10", "id.orig_p": 53858, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 53921, "rtt": 0.260871, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1402}
{"ts": "2025-04-23T09:21:09.079603Z", "uid": "C941589J6035", "id.orig_h": "192.168.1.18", "id.orig_p": 30112, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18527, "rtt": 0.433403, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.233.32", "ttl": 272}
{"ts": "2025-04-23T09:21:09.079615Z", "uid": "C273739X8876", "id.orig_h": "192.168.1.20", "id.orig_p": 29741, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17887, "rtt": 0.301754, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3006", "ttl": 3148}
{"ts": "2025-04-23T09:21:09.079626Z", "uid": "C324251A3805", "id.orig_h": "192.168.1.19", "id.orig_p": 33305, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52767, "rtt": 0.426113, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2054", "ttl": 2085}
{"ts": "2025-04-23T09:21:09.079643Z", "uid": "C565574F1386", "id.orig_h": "192.168.1.12", "id.orig_p": 65270, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44159, "rtt": 0.48959, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3859", "ttl": 1002}
{"ts": "2025-04-23T09:21:09.079655Z", "uid": "C578272W7315", "id.orig_h": "192.168.1.19", "id.orig_p": 14842, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40434, "rtt": 0.202797, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9260", "ttl": 2704}
{"ts": "2025-04-23T09:21:09.079673Z", "uid": "C750187C4831", "id.orig_h": "192.168.1.20", "id.orig_p": 23630, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30804, "rtt": 0.426468, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8386", "ttl": 784}
{"ts": "2025-04-23T09:21:09.079685Z", "uid": "C938148B4841", "id.orig_h": "192.168.1.17", "id.orig_p": 30343, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24346, "rtt": 0.028259, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.187.161", "ttl": 3345}
{"ts": "2025-04-23T09:21:09.079696Z", "uid": "C847952B2736", "id.orig_h": "192.168.1.13", "id.orig_p": 25207, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55781, "rtt": 0.461252, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3250", "ttl": 1555}
{"ts": "2025-04-23T09:21:09.079707Z", "uid": "C918076U4206", "id.orig_h": "192.168.1.18", "id.orig_p": 3435, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57875, "rtt": 0.172458, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1817}
{"ts": "2025-04-23T09:21:09.079719Z", "uid": "C215321C6790", "id.orig_h": "192.168.1.18", "id.orig_p": 64178, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27088, "rtt": 0.326576, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3548", "ttl": 2974}
{"ts": "2025-04-23T09:21:09.079732Z", "uid": "C871380Z7602", "id.orig_h": "192.168.1.19", "id.orig_p": 39980, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41455, "rtt": 0.147033, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 1620}
{"ts": "2025-04-23T09:21:09.079750Z", "uid": "C834752S9484", "id.orig_h": "192.168.1.18", "id.orig_p": 10875, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18500, "rtt": 0.317248, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1065}
{"ts": "2025-04-23T09:21:09.079765Z", "uid": "C476290P5885", "id.orig_h": "192.168.1.20", "id.orig_p": 61502, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26045, "rtt": 0.092836, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2528}
{"ts": "2025-04-23T09:21:09.079777Z", "uid": "C394504V8500", "id.orig_h": "192.168.1.20", "id.orig_p": 61838, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29548, "rtt": 0.267489, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.184.151", "ttl": 3134}
{"ts": "2025-04-23T09:21:09.079792Z", "uid": "C834204L1420", "id.orig_h": "192.168.1.21", "id.orig_p": 3537, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 59464, "rtt": 0.259567, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.163.79", "ttl": 591}
{"ts": "2025-04-23T09:21:09.079803Z", "uid": "C334555M5178", "id.orig_h": "192.168.1.19", "id.orig_p": 29933, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 35176, "rtt": 0.015912, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9482", "ttl": 1625}
{"ts": "2025-04-23T09:21:09.079815Z", "uid": "C288017T5647", "id.orig_h": "192.168.1.15", "id.orig_p": 20733, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 58519, "rtt": 0.427028, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5529", "ttl": 152}
{"ts": "2025-04-23T09:21:09.079826Z", "uid": "C764271F3173", "id.orig_h": "192.168.1.11", "id.orig_p": 52033, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 18915, "rtt": 0.128859, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.183.242", "ttl": 432}
{"ts": "2025-04-23T09:21:09.079838Z", "uid": "C912667H9139", "id.orig_h": "192.168.1.20", "id.orig_p": 19396, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54368, "rtt": 0.458313, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2902}
{"ts": "2025-04-23T09:21:09.079849Z", "uid": "C519705X9963", "id.orig_h": "192.168.1.14", "id.orig_p": 14973, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20064, "rtt": 0.228674, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.11.235", "ttl": 145}
{"ts": "2025-04-23T09:21:09.079860Z", "uid": "C498490D5039", "id.orig_h": "192.168.1.18", "id.orig_p": 24577, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11392, "rtt": 0.063234, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 2038}
{"ts": "2025-04-23T09:21:09.079871Z", "uid": "C878882Q3290", "id.orig_h": "192.168.1.11", "id.orig_p": 57568, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19324, "rtt": 0.175985, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.201.231", "ttl": 1096}
{"ts": "2025-04-23T09:21:09.079882Z", "uid": "C570901J1533", "id.orig_h": "192.168.1.10", "id.orig_p": 54439, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11906, "rtt": 0.029885, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.75.230", "ttl": 1985}
{"ts": "2025-04-23T09:21:09.079897Z", "uid": "C309161P5943", "id.orig_h": "192.168.1.11", "id.orig_p": 29465, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12498, "rtt": 0.494435, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 916}
{"ts": "2025-04-23T09:21:09.079908Z", "uid": "C528448I5876", "id.orig_h": "192.168.1.13", "id.orig_p": 29492, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50081, "rtt": 0.114916, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 3199}
{"ts": "2025-04-23T09:21:09.079920Z", "uid": "C975346F4713", "id.orig_h": "192.168.1.11", "id.orig_p": 39767, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 18580, "rtt": 0.166166, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.255.73", "ttl": 2722}
{"ts": "2025-04-23T09:21:09.079931Z", "uid": "C770959A7397", "id.orig_h": "192.168.1.17", "id.orig_p": 44983, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23790, "rtt": 0.022402, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 187}
{"ts": "2025-04-23T09:21:09.079942Z", "uid": "C233534K6237", "id.orig_h": "192.168.1.14", "id.orig_p": 56777, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 12813, "rtt": 0.492657, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3322}
{"ts": "2025-04-23T09:21:09.079955Z", "uid": "C940591X5381", "id.orig_h": "192.168.1.12", "id.orig_p": 7087, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 46587, "rtt": 0.164923, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3226}
{"ts": "2025-04-23T09:21:09.079967Z", "uid": "C699738V5908", "id.orig_h": "192.168.1.11", "id.orig_p": 37570, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39813, "rtt": 0.415977, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 2212}
{"ts": "2025-04-23T09:21:09.079980Z", "uid": "C951224U9613", "id.orig_h": "192.168.1.17", "id.orig_p": 55084, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45802, "rtt": 0.026382, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1916", "ttl": 1307}
{"ts": "2025-04-23T09:21:09.079999Z", "uid": "C597551V3640", "id.orig_h": "192.168.1.18", "id.orig_p": 3092, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49903, "rtt": 0.09425, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1309", "ttl": 2854}
{"ts": "2025-04-23T09:21:09.080016Z", "uid": "C754929Y5031", "id.orig_h": "192.168.1.11", "id.orig_p": 10928, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45940, "rtt": 0.209379, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3230", "ttl": 2284}
{"ts": "2025-04-23T09:21:09.080028Z", "uid": "C558889M2599", "id.orig_h": "192.168.1.15", "id.orig_p": 47173, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 18773, "rtt": 0.358198, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.232.103", "ttl": 1835}
{"ts": "2025-04-23T09:21:09.080039Z", "uid": "C960278H1425", "id.orig_h": "192.168.1.15", "id.orig_p": 52055, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17665, "rtt": 0.347721, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.136.86", "ttl": 1742}
{"ts": "2025-04-23T09:21:09.080056Z", "uid": "C298013Q2748", "id.orig_h": "192.168.1.18", "id.orig_p": 53060, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22707, "rtt": 0.439789, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2962}
{"ts": "2025-04-23T09:21:09.080068Z", "uid": "C959545B5117", "id.orig_h": "192.168.1.16", "id.orig_p": 3424, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40461, "rtt": 0.491344, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3230", "ttl": 2787}
{"ts": "2025-04-23T09:21:09.080080Z", "uid": "C153283N4674", "id.orig_h": "192.168.1.17", "id.orig_p": 36329, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51238, "rtt": 0.170392, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.83.129", "ttl": 468}
{"ts": "2025-04-23T09:21:09.080092Z", "uid": "C542883K3605", "id.orig_h": "192.168.1.11", "id.orig_p": 48584, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47695, "rtt": 0.499854, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 595}
{"ts": "2025-04-23T09:21:09.080106Z", "uid": "C791839N6793", "id.orig_h": "192.168.1.17", "id.orig_p": 46311, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42479, "rtt": 0.123739, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2005}
{"ts": "2025-04-23T09:21:09.080117Z", "uid": "C737596Q4232", "id.orig_h": "192.168.1.16", "id.orig_p": 51722, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 27348, "rtt": 0.371058, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.127.198", "ttl": 1111}
{"ts": "2025-04-23T09:21:09.080133Z", "uid": "C645190B2405", "id.orig_h": "192.168.1.20", "id.orig_p": 28835, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11128, "rtt": 0.455839, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 1645}
{"ts": "2025-04-23T09:21:09.080144Z", "uid": "C233526C3803", "id.orig_h": "192.168.1.19", "id.orig_p": 52467, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17435, "rtt": 0.194072, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9173", "ttl": 1379}
{"ts": "2025-04-23T09:21:09.080156Z", "uid": "C616778D9516", "id.orig_h": "192.168.1.15", "id.orig_p": 20285, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31492, "rtt": 0.311762, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7099", "ttl": 1533}
{"ts": "2025-04-23T09:21:09.080167Z", "uid": "C111003D7297", "id.orig_h": "192.168.1.16", "id.orig_p": 58672, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58982, "rtt": 0.015197, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 909}
{"ts": "2025-04-23T09:21:09.080178Z", "uid": "C746071W2950", "id.orig_h": "192.168.1.17", "id.orig_p": 52345, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32493, "rtt": 0.212063, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.51.74", "ttl": 2913}
{"ts": "2025-04-23T09:21:09.080190Z", "uid": "C952804D4088", "id.orig_h": "192.168.1.17", "id.orig_p": 23139, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42831, "rtt": 0.423591, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 988}
{"ts": "2025-04-23T09:21:09.080201Z", "uid": "C261448O8485", "id.orig_h": "192.168.1.21", "id.orig_p": 56615, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 51387, "rtt": 0.39689, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.180.223", "ttl": 1251}
{"ts": "2025-04-23T09:21:09.080213Z", "uid": "C727040Z3107", "id.orig_h": "192.168.1.16", "id.orig_p": 33941, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28698, "rtt": 0.116705, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 1077}
{"ts": "2025-04-23T09:21:09.080224Z", "uid": "C809942I3917", "id.orig_h": "192.168.1.15", "id.orig_p": 36220, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 58849, "rtt": 0.149637, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.4.95", "ttl": 1299}
{"ts": "2025-04-23T09:21:09.080238Z", "uid": "C458386Y5517", "id.orig_h": "192.168.1.13", "id.orig_p": 52933, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44169, "rtt": 0.129999, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 3179}
{"ts": "2025-04-23T09:21:09.080250Z", "uid": "C151335B2889", "id.orig_h": "192.168.1.12", "id.orig_p": 22652, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36280, "rtt": 0.306401, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8053", "ttl": 975}
{"ts": "2025-04-23T09:21:09.080262Z", "uid": "C665742E8392", "id.orig_h": "192.168.1.10", "id.orig_p": 51390, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 21823, "rtt": 0.365279, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 2538}
{"ts": "2025-04-23T09:21:09.080273Z", "uid": "C938714Y7667", "id.orig_h": "192.168.1.19", "id.orig_p": 50601, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 21727, "rtt": 0.47173, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1070", "ttl": 596}
{"ts": "2025-04-23T09:21:09.080285Z", "uid": "C919544B3669", "id.orig_h": "192.168.1.18", "id.orig_p": 21984, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47242, "rtt": 0.429389, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 2155}
{"ts": "2025-04-23T09:21:09.080297Z", "uid": "C477570E5967", "id.orig_h": "192.168.1.16", "id.orig_p": 31854, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15837, "rtt": 0.239797, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2745}
{"ts": "2025-04-23T09:21:09.080309Z", "uid": "C553967H1905", "id.orig_h": "192.168.1.12", "id.orig_p": 25220, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41955, "rtt": 0.046889, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3675", "ttl": 166}
{"ts": "2025-04-23T09:21:09.080321Z", "uid": "C918396E4798", "id.orig_h": "192.168.1.15", "id.orig_p": 45235, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 59356, "rtt": 0.472446, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 2341}
{"ts": "2025-04-23T09:21:09.080333Z", "uid": "C738547Y1851", "id.orig_h": "192.168.1.17", "id.orig_p": 4700, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26867, "rtt": 0.392418, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3354", "ttl": 3224}
{"ts": "2025-04-23T09:21:09.080347Z", "uid": "C456687A6776", "id.orig_h": "192.168.1.18", "id.orig_p": 2769, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41473, "rtt": 0.430049, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9634", "ttl": 1503}
{"ts": "2025-04-23T09:21:09.080358Z", "uid": "C159318R4228", "id.orig_h": "192.168.1.15", "id.orig_p": 43474, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48543, "rtt": 0.014524, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 755}
{"ts": "2025-04-23T09:21:09.080370Z", "uid": "C920572W5413", "id.orig_h": "192.168.1.20", "id.orig_p": 47730, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 55259, "rtt": 0.285964, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2233}
{"ts": "2025-04-23T09:21:09.080381Z", "uid": "C508974A5783", "id.orig_h": "192.168.1.11", "id.orig_p": 41674, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26219, "rtt": 0.368839, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5211", "ttl": 2558}
{"ts": "2025-04-23T09:21:09.080393Z", "uid": "C778634A3647", "id.orig_h": "192.168.1.19", "id.orig_p": 65386, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47013, "rtt": 0.335141, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 3136}
{"ts": "2025-04-23T09:21:09.080408Z", "uid": "C819820G3523", "id.orig_h": "192.168.1.10", "id.orig_p": 34540, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23974, "rtt": 0.443788, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 96}
{"ts": "2025-04-23T09:21:09.080419Z", "uid": "C191866P7145", "id.orig_h": "192.168.1.17", "id.orig_p": 23666, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54130, "rtt": 0.078865, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.155.51", "ttl": 1989}
{"ts": "2025-04-23T09:21:09.080431Z", "uid": "C581458L5441", "id.orig_h": "192.168.1.16", "id.orig_p": 52796, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17519, "rtt": 0.072795, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2881}
{"ts": "2025-04-23T09:21:09.080442Z", "uid": "C271593M7137", "id.orig_h": "192.168.1.15", "id.orig_p": 19400, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40933, "rtt": 0.40303, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 1078}
{"ts": "2025-04-23T09:21:09.080460Z", "uid": "C761875O7421", "id.orig_h": "192.168.1.18", "id.orig_p": 41732, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 38903, "rtt": 0.422871, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.254.211", "ttl": 1667}
{"ts": "2025-04-23T09:21:09.080475Z", "uid": "C895532J8168", "id.orig_h": "192.168.1.12", "id.orig_p": 20779, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42229, "rtt": 0.294754, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3426}
{"ts": "2025-04-23T09:21:09.080486Z", "uid": "C910653Q4587", "id.orig_h": "192.168.1.19", "id.orig_p": 30942, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42030, "rtt": 0.412403, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 169}
{"ts": "2025-04-23T09:21:09.080497Z", "uid": "C920217B6149", "id.orig_h": "192.168.1.15", "id.orig_p": 35793, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37789, "rtt": 0.366975, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1296", "ttl": 3017}
{"ts": "2025-04-23T09:21:09.080508Z", "uid": "C129814T1890", "id.orig_h": "192.168.1.16", "id.orig_p": 40763, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12653, "rtt": 0.420382, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 3180}
{"ts": "2025-04-23T09:21:09.080520Z", "uid": "C215883F7743", "id.orig_h": "192.168.1.10", "id.orig_p": 64934, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 54128, "rtt": 0.221301, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 2895}
{"ts": "2025-04-23T09:21:09.080532Z", "uid": "C940350A4199", "id.orig_h": "192.168.1.14", "id.orig_p": 51783, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20065, "rtt": 0.290683, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7117", "ttl": 953}
{"ts": "2025-04-23T09:21:09.080543Z", "uid": "C685569N1898", "id.orig_h": "192.168.1.18", "id.orig_p": 15795, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47626, "rtt": 0.399786, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2646", "ttl": 2535}
{"ts": "2025-04-23T09:21:09.080554Z", "uid": "C337963J5263", "id.orig_h": "192.168.1.14", "id.orig_p": 14084, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57283, "rtt": 0.174158, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.241.229", "ttl": 3119}
{"ts": "2025-04-23T09:21:09.080566Z", "uid": "C152363L5089", "id.orig_h": "192.168.1.12", "id.orig_p": 5979, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37465, "rtt": 0.368307, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5219", "ttl": 1158}
{"ts": "2025-04-23T09:21:09.080581Z", "uid": "C209365W7601", "id.orig_h": "192.168.1.18", "id.orig_p": 39683, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22279, "rtt": 0.450299, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 3029}
{"ts": "2025-04-23T09:21:09.080594Z", "uid": "C757472U8895", "id.orig_h": "192.168.1.12", "id.orig_p": 34195, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19581, "rtt": 0.417358, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3435", "ttl": 3322}
{"ts": "2025-04-23T09:21:09.080606Z", "uid": "C210420L2225", "id.orig_h": "192.168.1.14", "id.orig_p": 58247, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29619, "rtt": 0.098774, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4912", "ttl": 991}
{"ts": "2025-04-23T09:21:09.080619Z", "uid": "C368968N3418", "id.orig_h": "192.168.1.15", "id.orig_p": 2907, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 50640, "rtt": 0.289035, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2294}
{"ts": "2025-04-23T09:21:09.080630Z", "uid": "C652459N8804", "id.orig_h": "192.168.1.20", "id.orig_p": 8436, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37442, "rtt": 0.055711, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 202}
{"ts": "2025-04-23T09:21:09.080641Z", "uid": "C719762B1250", "id.orig_h": "192.168.1.12", "id.orig_p": 13507, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20759, "rtt": 0.281594, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3521}
{"ts": "2025-04-23T09:21:09.080652Z", "uid": "C500553A8082", "id.orig_h": "192.168.1.19", "id.orig_p": 5945, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30200, "rtt": 0.483713, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.73.225", "ttl": 1827}
{"ts": "2025-04-23T09:21:09.080664Z", "uid": "C558824Z5445", "id.orig_h": "192.168.1.19", "id.orig_p": 52955, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29888, "rtt": 0.250263, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 481}
{"ts": "2025-04-23T09:21:09.080676Z", "uid": "C719670V6215", "id.orig_h": "192.168.1.19", "id.orig_p": 26617, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 28460, "rtt": 0.308729, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1567}
{"ts": "2025-04-23T09:21:09.080691Z", "uid": "C476822D8125", "id.orig_h": "192.168.1.15", "id.orig_p": 29862, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53517, "rtt": 0.091257, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 606}
{"ts": "2025-04-23T09:21:09.080704Z", "uid": "C926421R2368", "id.orig_h": "192.168.1.17", "id.orig_p": 14921, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 35144, "rtt": 0.089781, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.73.255", "ttl": 716}
{"ts": "2025-04-23T09:21:09.080715Z", "uid": "C241720Q7939", "id.orig_h": "192.168.1.19", "id.orig_p": 36624, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45661, "rtt": 0.175407, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8178", "ttl": 2197}
{"ts": "2025-04-23T09:21:09.080727Z", "uid": "C985009D6982", "id.orig_h": "192.168.1.14", "id.orig_p": 13703, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44705, "rtt": 0.164655, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7492", "ttl": 2103}
{"ts": "2025-04-23T09:21:09.080738Z", "uid": "C991497Q8362", "id.orig_h": "192.168.1.11", "id.orig_p": 39502, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31180, "rtt": 0.150554, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8273", "ttl": 2155}
{"ts": "2025-04-23T09:21:09.080750Z", "uid": "C766567L9204", "id.orig_h": "192.168.1.21", "id.orig_p": 45280, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17720, "rtt": 0.058565, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 908}
{"ts": "2025-04-23T09:21:09.080765Z", "uid": "C572777T8406", "id.orig_h": "192.168.1.17", "id.orig_p": 50077, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 30263, "rtt": 0.450424, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6539", "ttl": 2498}
{"ts": "2025-04-23T09:21:09.080776Z", "uid": "C875033K3022", "id.orig_h": "192.168.1.16", "id.orig_p": 34304, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23678, "rtt": 0.383896, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 1230}
{"ts": "2025-04-23T09:21:09.080789Z", "uid": "C494861Y4116", "id.orig_h": "192.168.1.17", "id.orig_p": 5589, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 43400, "rtt": 0.076856, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2930}
{"ts": "2025-04-23T09:21:09.080804Z", "uid": "C434670G3792", "id.orig_h": "192.168.1.21", "id.orig_p": 45325, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 19723, "rtt": 0.216737, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.145.97", "ttl": 2758}
{"ts": "2025-04-23T09:21:09.080816Z", "uid": "C593902Y2170", "id.orig_h": "192.168.1.17", "id.orig_p": 15598, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23920, "rtt": 0.485171, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 523}
{"ts": "2025-04-23T09:21:09.080831Z", "uid": "C622726O8976", "id.orig_h": "192.168.1.21", "id.orig_p": 7773, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 27883, "rtt": 0.453686, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 1298}
{"ts": "2025-04-23T09:21:09.080843Z", "uid": "C639213I4755", "id.orig_h": "192.168.1.13", "id.orig_p": 24540, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 24641, "rtt": 0.142128, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2328}
{"ts": "2025-04-23T09:21:09.080857Z", "uid": "C188327F3464", "id.orig_h": "192.168.1.16", "id.orig_p": 56765, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19030, "rtt": 0.196422, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7223", "ttl": 883}
{"ts": "2025-04-23T09:21:09.080869Z", "uid": "C742464T9685", "id.orig_h": "192.168.1.21", "id.orig_p": 47842, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31483, "rtt": 0.313955, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 579}
{"ts": "2025-04-23T09:21:09.080880Z", "uid": "C463137S3349", "id.orig_h": "192.168.1.17", "id.orig_p": 23049, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31816, "rtt": 0.405743, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2981", "ttl": 266}
{"ts": "2025-04-23T09:21:09.080892Z", "uid": "C899076B3861", "id.orig_h": "192.168.1.14", "id.orig_p": 23751, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44818, "rtt": 0.12601, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.84.149", "ttl": 508}
{"ts": "2025-04-23T09:21:09.080904Z", "uid": "C431527K9042", "id.orig_h": "192.168.1.15", "id.orig_p": 13700, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21081, "rtt": 0.166796, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4499", "ttl": 1476}
{"ts": "2025-04-23T09:21:09.080918Z", "uid": "C233407G6631", "id.orig_h": "192.168.1.13", "id.orig_p": 45684, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 54468, "rtt": 0.405894, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 512}
{"ts": "2025-04-23T09:21:09.080929Z", "uid": "C332602Q9976", "id.orig_h": "192.168.1.13", "id.orig_p": 36295, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13531, "rtt": 0.282074, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3315", "ttl": 378}
{"ts": "2025-04-23T09:21:09.080941Z", "uid": "C936686T5670", "id.orig_h": "192.168.1.10", "id.orig_p": 2819, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 38569, "rtt": 0.326498, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.197.32", "ttl": 2061}
{"ts": "2025-04-23T09:21:09.080952Z", "uid": "C612351D8087", "id.orig_h": "192.168.1.13", "id.orig_p": 46079, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45333, "rtt": 0.252845, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6729", "ttl": 2299}
{"ts": "2025-04-23T09:21:09.080963Z", "uid": "C252146D8452", "id.orig_h": "192.168.1.12", "id.orig_p": 4762, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16477, "rtt": 0.288497, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.182.164", "ttl": 827}
{"ts": "2025-04-23T09:21:09.080975Z", "uid": "C681150Z3423", "id.orig_h": "192.168.1.10", "id.orig_p": 59268, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17711, "rtt": 0.225784, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.22.188", "ttl": 510}
{"ts": "2025-04-23T09:21:09.080987Z", "uid": "C599865J6896", "id.orig_h": "192.168.1.19", "id.orig_p": 48948, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 59690, "rtt": 0.370178, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.241.115", "ttl": 1130}
{"ts": "2025-04-23T09:21:09.080998Z", "uid": "C384959Y8200", "id.orig_h": "192.168.1.11", "id.orig_p": 20792, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52882, "rtt": 0.189535, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 1852}
{"ts": "2025-04-23T09:21:09.081010Z", "uid": "C765304K6420", "id.orig_h": "192.168.1.17", "id.orig_p": 44245, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28769, "rtt": 0.150679, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2739}
{"ts": "2025-04-23T09:21:09.081025Z", "uid": "C470758P9240", "id.orig_h": "192.168.1.13", "id.orig_p": 36431, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 59156, "rtt": 0.340818, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.196.19", "ttl": 110}
{"ts": "2025-04-23T09:21:09.081037Z", "uid": "C154061L9258", "id.orig_h": "192.168.1.19", "id.orig_p": 54484, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25285, "rtt": 0.41667, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.164.9", "ttl": 261}
{"ts": "2025-04-23T09:21:09.081048Z", "uid": "C482329P5584", "id.orig_h": "192.168.1.18", "id.orig_p": 8399, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47448, "rtt": 0.130241, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.130.205", "ttl": 2305}
{"ts": "2025-04-23T09:21:09.081060Z", "uid": "C840740F3796", "id.orig_h": "192.168.1.15", "id.orig_p": 63493, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30617, "rtt": 0.248245, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.246.173", "ttl": 1978}
{"ts": "2025-04-23T09:21:09.081071Z", "uid": "C799149Z1259", "id.orig_h": "192.168.1.10", "id.orig_p": 50768, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50247, "rtt": 0.345881, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 963}
{"ts": "2025-04-23T09:21:09.081082Z", "uid": "C405156O4704", "id.orig_h": "192.168.1.12", "id.orig_p": 53662, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11839, "rtt": 0.485831, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2003}
{"ts": "2025-04-23T09:21:09.081093Z", "uid": "C468255F3436", "id.orig_h": "192.168.1.12", "id.orig_p": 18998, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26949, "rtt": 0.333565, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9385", "ttl": 2323}
{"ts": "2025-04-23T09:21:09.081105Z", "uid": "C812817P1557", "id.orig_h": "192.168.1.21", "id.orig_p": 12868, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58986, "rtt": 0.267913, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.186.120", "ttl": 401}
{"ts": "2025-04-23T09:21:09.081116Z", "uid": "C282529Z4929", "id.orig_h": "192.168.1.21", "id.orig_p": 41273, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11290, "rtt": 0.440962, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4579", "ttl": 159}
{"ts": "2025-04-23T09:21:09.081131Z", "uid": "C356880W4799", "id.orig_h": "192.168.1.14", "id.orig_p": 45695, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21711, "rtt": 0.223085, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.15.121", "ttl": 2574}
{"ts": "2025-04-23T09:21:09.081145Z", "uid": "C338541P6320", "id.orig_h": "192.168.1.21", "id.orig_p": 51413, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 49902, "rtt": 0.396167, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 3368}
{"ts": "2025-04-23T09:21:09.081160Z", "uid": "C554683A5287", "id.orig_h": "192.168.1.16", "id.orig_p": 34560, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51314, "rtt": 0.252254, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.14.42", "ttl": 2561}
{"ts": "2025-04-23T09:21:09.081171Z", "uid": "C884360Z8241", "id.orig_h": "192.168.1.10", "id.orig_p": 26828, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24406, "rtt": 0.314522, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5918", "ttl": 3095}
{"ts": "2025-04-23T09:21:09.081183Z", "uid": "C583848X7304", "id.orig_h": "192.168.1.11", "id.orig_p": 55173, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35530, "rtt": 0.121879, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 368}
{"ts": "2025-04-23T09:21:09.081194Z", "uid": "C461365F9539", "id.orig_h": "192.168.1.16", "id.orig_p": 16250, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29518, "rtt": 0.358402, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9271", "ttl": 431}
{"ts": "2025-04-23T09:21:09.081206Z", "uid": "C762653F9454", "id.orig_h": "192.168.1.16", "id.orig_p": 15599, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 35213, "rtt": 0.204891, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 1461}
{"ts": "2025-04-23T09:21:09.081217Z", "uid": "C638557P1662", "id.orig_h": "192.168.1.17", "id.orig_p": 58981, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22129, "rtt": 0.311714, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2968}
{"ts": "2025-04-23T09:21:09.081228Z", "uid": "C991929U6400", "id.orig_h": "192.168.1.10", "id.orig_p": 43181, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48065, "rtt": 0.170804, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7969", "ttl": 2602}
{"ts": "2025-04-23T09:21:09.081241Z", "uid": "C824305M2980", "id.orig_h": "192.168.1.19", "id.orig_p": 65158, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 45084, "rtt": 0.360263, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 2457}
{"ts": "2025-04-23T09:21:09.081257Z", "uid": "C902853J6920", "id.orig_h": "192.168.1.19", "id.orig_p": 24225, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53937, "rtt": 0.046365, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.227.183", "ttl": 1576}
{"ts": "2025-04-23T09:21:09.081269Z", "uid": "C184708W7737", "id.orig_h": "192.168.1.14", "id.orig_p": 27445, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56083, "rtt": 0.45831, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1726}
{"ts": "2025-04-23T09:21:09.081281Z", "uid": "C594070J3788", "id.orig_h": "192.168.1.14", "id.orig_p": 38446, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23633, "rtt": 0.119626, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 2114}
{"ts": "2025-04-23T09:21:09.081293Z", "uid": "C823993X4648", "id.orig_h": "192.168.1.11", "id.orig_p": 21842, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43951, "rtt": 0.048901, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 237}
{"ts": "2025-04-23T09:21:09.081304Z", "uid": "C104445V6859", "id.orig_h": "192.168.1.20", "id.orig_p": 3367, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12857, "rtt": 0.263455, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.209.172", "ttl": 575}
{"ts": "2025-04-23T09:21:09.081315Z", "uid": "C473213W5598", "id.orig_h": "192.168.1.17", "id.orig_p": 46605, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 18190, "rtt": 0.176299, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2177}
{"ts": "2025-04-23T09:21:09.081326Z", "uid": "C482103J6012", "id.orig_h": "192.168.1.21", "id.orig_p": 31746, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24610, "rtt": 0.417771, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.0.102", "ttl": 572}
{"ts": "2025-04-23T09:21:09.081337Z", "uid": "C923994H8537", "id.orig_h": "192.168.1.18", "id.orig_p": 12819, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 37047, "rtt": 0.431143, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.163.94", "ttl": 1293}
{"ts": "2025-04-23T09:21:09.081350Z", "uid": "C193110O5572", "id.orig_h": "192.168.1.16", "id.orig_p": 59455, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 48040, "rtt": 0.462329, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 116}
{"ts": "2025-04-23T09:21:09.081364Z", "uid": "C529915E5570", "id.orig_h": "192.168.1.18", "id.orig_p": 8457, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 29301, "rtt": 0.168739, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.80.59", "ttl": 1053}
{"ts": "2025-04-23T09:21:09.081376Z", "uid": "C339031A5345", "id.orig_h": "192.168.1.13", "id.orig_p": 57186, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 48360, "rtt": 0.199687, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4211", "ttl": 671}
{"ts": "2025-04-23T09:21:09.081387Z", "uid": "C432389L3575", "id.orig_h": "192.168.1.18", "id.orig_p": 65383, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42416, "rtt": 0.110491, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4194", "ttl": 77}
{"ts": "2025-04-23T09:21:09.081398Z", "uid": "C148737C7186", "id.orig_h": "192.168.1.15", "id.orig_p": 44455, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 16753, "rtt": 0.226801, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.243.210", "ttl": 2179}
{"ts": "2025-04-23T09:21:09.081409Z", "uid": "C760850V8487", "id.orig_h": "192.168.1.11", "id.orig_p": 3567, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52814, "rtt": 0.387978, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.76.203", "ttl": 2354}
{"ts": "2025-04-23T09:21:09.081421Z", "uid": "C413680I1922", "id.orig_h": "192.168.1.12", "id.orig_p": 47151, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 51503, "rtt": 0.284002, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.226.122", "ttl": 2496}
{"ts": "2025-04-23T09:21:09.081433Z", "uid": "C181475V2929", "id.orig_h": "192.168.1.17", "id.orig_p": 22953, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22254, "rtt": 0.113674, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2728}
{"ts": "2025-04-23T09:21:09.081445Z", "uid": "C190422F7104", "id.orig_h": "192.168.1.11", "id.orig_p": 62406, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39102, "rtt": 0.024658, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.46.152", "ttl": 844}
{"ts": "2025-04-23T09:21:09.081460Z", "uid": "C162998R9293", "id.orig_h": "192.168.1.10", "id.orig_p": 32191, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15837, "rtt": 0.391239, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.204.245", "ttl": 3278}
{"ts": "2025-04-23T09:21:09.081474Z", "uid": "C843240D1373", "id.orig_h": "192.168.1.18", "id.orig_p": 5531, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 59647, "rtt": 0.081825, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6668", "ttl": 2829}
{"ts": "2025-04-23T09:21:09.081486Z", "uid": "C723180U4682", "id.orig_h": "192.168.1.21", "id.orig_p": 13134, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25765, "rtt": 0.44685, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2444", "ttl": 837}
{"ts": "2025-04-23T09:21:09.081497Z", "uid": "C800981J6788", "id.orig_h": "192.168.1.18", "id.orig_p": 41647, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31563, "rtt": 0.10487, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3930", "ttl": 831}
{"ts": "2025-04-23T09:21:09.081509Z", "uid": "C729062V8935", "id.orig_h": "192.168.1.17", "id.orig_p": 49117, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25122, "rtt": 0.423627, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.57.69", "ttl": 609}
{"ts": "2025-04-23T09:21:09.081520Z", "uid": "C703838D5951", "id.orig_h": "192.168.1.11", "id.orig_p": 28982, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 23835, "rtt": 0.238742, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 986}
{"ts": "2025-04-23T09:21:09.081531Z", "uid": "C289956H3093", "id.orig_h": "192.168.1.17", "id.orig_p": 18113, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 20562, "rtt": 0.185851, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5601", "ttl": 3320}
{"ts": "2025-04-23T09:21:09.081545Z", "uid": "C258500Z3504", "id.orig_h": "192.168.1.14", "id.orig_p": 49264, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11823, "rtt": 0.039518, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.49.210", "ttl": 2380}
{"ts": "2025-04-23T09:21:09.081558Z", "uid": "C781534A9807", "id.orig_h": "192.168.1.13", "id.orig_p": 8039, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24350, "rtt": 0.475374, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1027", "ttl": 1134}
{"ts": "2025-04-23T09:21:09.081571Z", "uid": "C943475J9141", "id.orig_h": "192.168.1.15", "id.orig_p": 15240, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17226, "rtt": 0.488207, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2690", "ttl": 1507}
{"ts": "2025-04-23T09:21:09.081585Z", "uid": "C707868R2241", "id.orig_h": "192.168.1.16", "id.orig_p": 7169, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32767, "rtt": 0.103983, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6380", "ttl": 2593}
{"ts": "2025-04-23T09:21:09.081597Z", "uid": "C588145I1265", "id.orig_h": "192.168.1.20", "id.orig_p": 37300, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 46709, "rtt": 0.208412, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.251.191", "ttl": 1613}
{"ts": "2025-04-23T09:21:09.081609Z", "uid": "C595948R5684", "id.orig_h": "192.168.1.21", "id.orig_p": 1369, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 31905, "rtt": 0.158186, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1480}
{"ts": "2025-04-23T09:21:09.081621Z", "uid": "C463964T9159", "id.orig_h": "192.168.1.19", "id.orig_p": 24493, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11038, "rtt": 0.121217, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 600}
{"ts": "2025-04-23T09:21:09.081632Z", "uid": "C952263F3017", "id.orig_h": "192.168.1.19", "id.orig_p": 4594, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 12324, "rtt": 0.36018, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1679", "ttl": 905}
{"ts": "2025-04-23T09:21:09.081643Z", "uid": "C329552E3752", "id.orig_h": "192.168.1.10", "id.orig_p": 6365, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17159, "rtt": 0.353237, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.5.201", "ttl": 1959}
{"ts": "2025-04-23T09:21:09.081659Z", "uid": "C267718B8531", "id.orig_h": "192.168.1.17", "id.orig_p": 37396, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44053, "rtt": 0.437591, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5284", "ttl": 2604}
{"ts": "2025-04-23T09:21:09.081672Z", "uid": "C111704D9038", "id.orig_h": "192.168.1.11", "id.orig_p": 42195, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46296, "rtt": 0.473692, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.31.230", "ttl": 3463}
{"ts": "2025-04-23T09:21:09.081684Z", "uid": "C700935A2434", "id.orig_h": "192.168.1.11", "id.orig_p": 37147, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 10997, "rtt": 0.211006, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 3471}
{"ts": "2025-04-23T09:21:09.081700Z", "uid": "C163690A6778", "id.orig_h": "192.168.1.20", "id.orig_p": 22854, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 14256, "rtt": 0.352649, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 3128}
{"ts": "2025-04-23T09:21:09.081711Z", "uid": "C116061O3709", "id.orig_h": "192.168.1.13", "id.orig_p": 17362, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28616, "rtt": 0.166862, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.197.101", "ttl": 2684}
{"ts": "2025-04-23T09:21:09.081723Z", "uid": "C592161C7972", "id.orig_h": "192.168.1.11", "id.orig_p": 29619, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 47297, "rtt": 0.473771, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 2077}
{"ts": "2025-04-23T09:21:09.081734Z", "uid": "C718533H9915", "id.orig_h": "192.168.1.17", "id.orig_p": 54793, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 38129, "rtt": 0.299957, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2170", "ttl": 1605}
{"ts": "2025-04-23T09:21:09.081745Z", "uid": "C144891K7925", "id.orig_h": "192.168.1.18", "id.orig_p": 26200, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42004, "rtt": 0.336931, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6189", "ttl": 564}
{"ts": "2025-04-23T09:21:09.081757Z", "uid": "C400405O8001", "id.orig_h": "192.168.1.21", "id.orig_p": 19685, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 19710, "rtt": 0.010946, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 2399}
{"ts": "2025-04-23T09:21:09.081768Z", "uid": "C414937S9867", "id.orig_h": "192.168.1.19", "id.orig_p": 14818, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45127, "rtt": 0.149539, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 3479}
{"ts": "2025-04-23T09:21:09.081780Z", "uid": "C761595Q1456", "id.orig_h": "192.168.1.19", "id.orig_p": 30733, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 34389, "rtt": 0.120168, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 122}
{"ts": "2025-04-23T09:21:09.081792Z", "uid": "C118482W7519", "id.orig_h": "192.168.1.12", "id.orig_p": 24295, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22820, "rtt": 0.445773, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5525", "ttl": 352}
{"ts": "2025-04-23T09:21:09.081809Z", "uid": "C154726J6011", "id.orig_h": "192.168.1.12", "id.orig_p": 11043, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30823, "rtt": 0.362018, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2374}
{"ts": "2025-04-23T09:21:09.081820Z", "uid": "C303760T7641", "id.orig_h": "192.168.1.19", "id.orig_p": 30926, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 26028, "rtt": 0.447614, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1352}
{"ts": "2025-04-23T09:21:09.081832Z", "uid": "C426381Y4400", "id.orig_h": "192.168.1.14", "id.orig_p": 11409, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23655, "rtt": 0.477368, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6292", "ttl": 3476}
{"ts": "2025-04-23T09:21:09.081843Z", "uid": "C749813U9019", "id.orig_h": "192.168.1.16", "id.orig_p": 21060, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31604, "rtt": 0.357749, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.200.150", "ttl": 2236}
{"ts": "2025-04-23T09:21:09.081855Z", "uid": "C116715G6538", "id.orig_h": "192.168.1.11", "id.orig_p": 13482, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45859, "rtt": 0.060492, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.176.83", "ttl": 789}
{"ts": "2025-04-23T09:21:09.081868Z", "uid": "C518222Y6422", "id.orig_h": "192.168.1.14", "id.orig_p": 44607, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 20296, "rtt": 0.176361, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.117.38", "ttl": 2254}
{"ts": "2025-04-23T09:21:09.081879Z", "uid": "C492313G1559", "id.orig_h": "192.168.1.14", "id.orig_p": 31290, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58954, "rtt": 0.187303, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 1485}
{"ts": "2025-04-23T09:21:09.081890Z", "uid": "C330010F2006", "id.orig_h": "192.168.1.18", "id.orig_p": 24200, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 25463, "rtt": 0.365369, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9417", "ttl": 362}
{"ts": "2025-04-23T09:21:09.081902Z", "uid": "C231090V1710", "id.orig_h": "192.168.1.10", "id.orig_p": 59326, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13968, "rtt": 0.326623, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7428", "ttl": 1777}
{"ts": "2025-04-23T09:21:09.081918Z", "uid": "C165074Z3491", "id.orig_h": "192.168.1.20", "id.orig_p": 17118, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32136, "rtt": 0.055157, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3448}
{"ts": "2025-04-23T09:21:09.082007Z", "uid": "C500479J1841", "id.orig_h": "192.168.1.12", "id.orig_p": 12452, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22072, "rtt": 0.293086, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3404}
{"ts": "2025-04-23T09:21:09.082019Z", "uid": "C933948C3217", "id.orig_h": "192.168.1.21", "id.orig_p": 7574, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31872, "rtt": 0.427323, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 818}
{"ts": "2025-04-23T09:21:09.082030Z", "uid": "C817855W2426", "id.orig_h": "192.168.1.10", "id.orig_p": 32722, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50599, "rtt": 0.405673, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4907", "ttl": 1231}
{"ts": "2025-04-23T09:21:09.082042Z", "uid": "C982158B8654", "id.orig_h": "192.168.1.15", "id.orig_p": 36175, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 47775, "rtt": 0.217153, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 339}
{"ts": "2025-04-23T09:21:09.082053Z", "uid": "C418802O5977", "id.orig_h": "192.168.1.16", "id.orig_p": 42399, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22148, "rtt": 0.29804, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6075", "ttl": 1159}
{"ts": "2025-04-23T09:21:09.082064Z", "uid": "C173853W1698", "id.orig_h": "192.168.1.18", "id.orig_p": 64059, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42154, "rtt": 0.24924, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 2639}
{"ts": "2025-04-23T09:21:09.082076Z", "uid": "C624703E6030", "id.orig_h": "192.168.1.12", "id.orig_p": 4741, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 46359, "rtt": 0.014883, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 3599}
{"ts": "2025-04-23T09:21:09.082087Z", "uid": "C276477A1433", "id.orig_h": "192.168.1.21", "id.orig_p": 35526, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33441, "rtt": 0.454217, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7760", "ttl": 2655}
{"ts": "2025-04-23T09:21:09.082100Z", "uid": "C619374G5587", "id.orig_h": "192.168.1.13", "id.orig_p": 46299, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 49942, "rtt": 0.34268, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 584}
{"ts": "2025-04-23T09:21:09.082117Z", "uid": "C551679B3152", "id.orig_h": "192.168.1.19", "id.orig_p": 20357, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 37178, "rtt": 0.261977, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2775", "ttl": 971}
{"ts": "2025-04-23T09:21:09.082132Z", "uid": "C841185M6578", "id.orig_h": "192.168.1.17", "id.orig_p": 57247, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 10482, "rtt": 0.255342, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2387}
{"ts": "2025-04-23T09:21:09.082144Z", "uid": "C347767K4279", "id.orig_h": "192.168.1.19", "id.orig_p": 2699, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 17606, "rtt": 0.381987, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.223.223", "ttl": 2287}
{"ts": "2025-04-23T09:21:09.082155Z", "uid": "C731519W3787", "id.orig_h": "192.168.1.14", "id.orig_p": 11056, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22530, "rtt": 0.161156, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 376}
{"ts": "2025-04-23T09:21:09.082167Z", "uid": "C659760I6801", "id.orig_h": "192.168.1.18", "id.orig_p": 19577, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55479, "rtt": 0.231951, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.190.236", "ttl": 1263}
{"ts": "2025-04-23T09:21:09.082178Z", "uid": "C202139P9961", "id.orig_h": "192.168.1.15", "id.orig_p": 64746, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 15943, "rtt": 0.081075, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 2805}
{"ts": "2025-04-23T09:21:09.082190Z", "uid": "C828416I7706", "id.orig_h": "192.168.1.21", "id.orig_p": 12735, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 31887, "rtt": 0.211418, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 3481}
{"ts": "2025-04-23T09:21:09.082201Z", "uid": "C589977X7869", "id.orig_h": "192.168.1.11", "id.orig_p": 23105, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31919, "rtt": 0.47954, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 942}
{"ts": "2025-04-23T09:21:09.082213Z", "uid": "C496256V9020", "id.orig_h": "192.168.1.12", "id.orig_p": 48266, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 20924, "rtt": 0.145445, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 655}
{"ts": "2025-04-23T09:21:09.082227Z", "uid": "C256805L9950", "id.orig_h": "192.168.1.15", "id.orig_p": 20109, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50281, "rtt": 0.451296, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.189.202", "ttl": 139}
{"ts": "2025-04-23T09:21:09.082243Z", "uid": "C585811Y8671", "id.orig_h": "192.168.1.20", "id.orig_p": 12595, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48001, "rtt": 0.42124, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1896", "ttl": 1069}
{"ts": "2025-04-23T09:21:09.082258Z", "uid": "C912328C7331", "id.orig_h": "192.168.1.13", "id.orig_p": 31941, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20924, "rtt": 0.348189, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.36.26", "ttl": 1626}
{"ts": "2025-04-23T09:21:09.082278Z", "uid": "C710996S9339", "id.orig_h": "192.168.1.11", "id.orig_p": 27349, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44288, "rtt": 0.136291, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4859", "ttl": 2315}
{"ts": "2025-04-23T09:21:09.082291Z", "uid": "C703429E5537", "id.orig_h": "192.168.1.19", "id.orig_p": 29834, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 10788, "rtt": 0.096896, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 978}
{"ts": "2025-04-23T09:21:09.082302Z", "uid": "C372454U3911", "id.orig_h": "192.168.1.16", "id.orig_p": 13396, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51521, "rtt": 0.082604, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8919", "ttl": 1619}
{"ts": "2025-04-23T09:21:09.082314Z", "uid": "C217191Z9159", "id.orig_h": "192.168.1.20", "id.orig_p": 12742, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51860, "rtt": 0.057939, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2431}
{"ts": "2025-04-23T09:21:09.082326Z", "uid": "C416973Z6442", "id.orig_h": "192.168.1.17", "id.orig_p": 41255, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18923, "rtt": 0.435263, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1703}
{"ts": "2025-04-23T09:21:09.082337Z", "uid": "C809932Q8309", "id.orig_h": "192.168.1.20", "id.orig_p": 60717, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 16577, "rtt": 0.027171, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 117}
{"ts": "2025-04-23T09:21:09.082355Z", "uid": "C948355K4716", "id.orig_h": "192.168.1.19", "id.orig_p": 49047, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 17929, "rtt": 0.247665, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 909}
{"ts": "2025-04-23T09:21:09.082367Z", "uid": "C887150A5057", "id.orig_h": "192.168.1.12", "id.orig_p": 23645, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40241, "rtt": 0.314546, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.68.250", "ttl": 807}
{"ts": "2025-04-23T09:21:09.082378Z", "uid": "C133637N4883", "id.orig_h": "192.168.1.18", "id.orig_p": 1143, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 23262, "rtt": 0.167113, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 2755}
{"ts": "2025-04-23T09:21:09.082389Z", "uid": "C441548A6265", "id.orig_h": "192.168.1.16", "id.orig_p": 22458, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58208, "rtt": 0.238795, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5774", "ttl": 845}
{"ts": "2025-04-23T09:21:09.082400Z", "uid": "C473402D2424", "id.orig_h": "192.168.1.16", "id.orig_p": 11438, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46429, "rtt": 0.299746, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 385}
{"ts": "2025-04-23T09:21:09.082412Z", "uid": "C164211G2049", "id.orig_h": "192.168.1.18", "id.orig_p": 18943, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42684, "rtt": 0.342792, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5949", "ttl": 765}
{"ts": "2025-04-23T09:21:09.082423Z", "uid": "C264028U5274", "id.orig_h": "192.168.1.20", "id.orig_p": 22607, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22302, "rtt": 0.081526, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3038}
{"ts": "2025-04-23T09:21:09.082434Z", "uid": "C697792H3298", "id.orig_h": "192.168.1.18", "id.orig_p": 33835, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23006, "rtt": 0.205659, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 795}
{"ts": "2025-04-23T09:21:09.082446Z", "uid": "C597469Q9401", "id.orig_h": "192.168.1.17", "id.orig_p": 2553, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37284, "rtt": 0.204672, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1743}
{"ts": "2025-04-23T09:21:09.082461Z", "uid": "C724723X9517", "id.orig_h": "192.168.1.20", "id.orig_p": 5011, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 29799, "rtt": 0.417305, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9838", "ttl": 1600}
{"ts": "2025-04-23T09:21:09.082474Z", "uid": "C467468Q6989", "id.orig_h": "192.168.1.12", "id.orig_p": 15975, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30661, "rtt": 0.014898, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3470}
{"ts": "2025-04-23T09:21:09.082485Z", "uid": "C977906Y4770", "id.orig_h": "192.168.1.12", "id.orig_p": 46716, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36155, "rtt": 0.227404, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 1454}
{"ts": "2025-04-23T09:21:09.082497Z", "uid": "C527694K6727", "id.orig_h": "192.168.1.12", "id.orig_p": 58684, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21996, "rtt": 0.30897, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5374", "ttl": 3463}
{"ts": "2025-04-23T09:21:09.082508Z", "uid": "C143368W6181", "id.orig_h": "192.168.1.16", "id.orig_p": 40902, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 36270, "rtt": 0.359408, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2897}
{"ts": "2025-04-23T09:21:09.082520Z", "uid": "C543553W4882", "id.orig_h": "192.168.1.18", "id.orig_p": 26045, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 48234, "rtt": 0.395586, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.215.12", "ttl": 1580}
{"ts": "2025-04-23T09:21:09.082535Z", "uid": "C467971F6064", "id.orig_h": "192.168.1.18", "id.orig_p": 35377, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35317, "rtt": 0.458365, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 3588}
{"ts": "2025-04-23T09:21:09.082547Z", "uid": "C537016Q9667", "id.orig_h": "192.168.1.14", "id.orig_p": 35860, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42870, "rtt": 0.285454, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.132.253", "ttl": 2154}
{"ts": "2025-04-23T09:21:09.082558Z", "uid": "C716290F8917", "id.orig_h": "192.168.1.12", "id.orig_p": 55168, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32064, "rtt": 0.033553, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.79.242", "ttl": 2881}
{"ts": "2025-04-23T09:21:09.082572Z", "uid": "C557896H7394", "id.orig_h": "192.168.1.19", "id.orig_p": 42917, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27610, "rtt": 0.416262, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8501", "ttl": 1820}
{"ts": "2025-04-23T09:21:09.082584Z", "uid": "C615315U4326", "id.orig_h": "192.168.1.21", "id.orig_p": 28504, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 36570, "rtt": 0.167064, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4958", "ttl": 84}
{"ts": "2025-04-23T09:21:09.082595Z", "uid": "C256365C9740", "id.orig_h": "192.168.1.18", "id.orig_p": 18011, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25530, "rtt": 0.064985, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8117", "ttl": 3572}
{"ts": "2025-04-23T09:21:09.082610Z", "uid": "C793919W7429", "id.orig_h": "192.168.1.16", "id.orig_p": 13517, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 52398, "rtt": 0.252167, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.137.113", "ttl": 1884}
{"ts": "2025-04-23T09:21:09.082622Z", "uid": "C982302I8159", "id.orig_h": "192.168.1.14", "id.orig_p": 62449, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24011, "rtt": 0.120563, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6125", "ttl": 820}
{"ts": "2025-04-23T09:21:09.082634Z", "uid": "C483545M4255", "id.orig_h": "192.168.1.21", "id.orig_p": 10764, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56063, "rtt": 0.444578, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7197", "ttl": 2342}
{"ts": "2025-04-23T09:21:09.082645Z", "uid": "C640564I9323", "id.orig_h": "192.168.1.21", "id.orig_p": 38807, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37422, "rtt": 0.447697, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5627", "ttl": 522}
{"ts": "2025-04-23T09:21:09.082656Z", "uid": "C220222X9659", "id.orig_h": "192.168.1.13", "id.orig_p": 11421, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47265, "rtt": 0.173067, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8862", "ttl": 1948}
{"ts": "2025-04-23T09:21:09.082667Z", "uid": "C250657T2918", "id.orig_h": "192.168.1.16", "id.orig_p": 24310, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57458, "rtt": 0.186771, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 251}
{"ts": "2025-04-23T09:21:09.082683Z", "uid": "C255095C3622", "id.orig_h": "192.168.1.20", "id.orig_p": 49239, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 40777, "rtt": 0.431723, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.76.110", "ttl": 153}
{"ts": "2025-04-23T09:21:09.082697Z", "uid": "C683541Z4442", "id.orig_h": "192.168.1.15", "id.orig_p": 22825, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 14200, "rtt": 0.247594, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 435}
{"ts": "2025-04-23T09:21:09.082708Z", "uid": "C423501O1091", "id.orig_h": "192.168.1.10", "id.orig_p": 6929, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46867, "rtt": 0.380954, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 3059}
{"ts": "2025-04-23T09:21:09.082719Z", "uid": "C747254K1343", "id.orig_h": "192.168.1.16", "id.orig_p": 22862, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 42057, "rtt": 0.407842, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1991}
{"ts": "2025-04-23T09:21:09.082731Z", "uid": "C688225W6772", "id.orig_h": "192.168.1.20", "id.orig_p": 4573, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14314, "rtt": 0.485064, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6450", "ttl": 3171}
{"ts": "2025-04-23T09:21:09.082742Z", "uid": "C481749E4660", "id.orig_h": "192.168.1.18", "id.orig_p": 51160, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 22084, "rtt": 0.402154, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8796", "ttl": 2555}
{"ts": "2025-04-23T09:21:09.082754Z", "uid": "C292884W7664", "id.orig_h": "192.168.1.19", "id.orig_p": 27859, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43772, "rtt": 0.438955, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 950}
{"ts": "2025-04-23T09:21:09.082765Z", "uid": "C579033K3646", "id.orig_h": "192.168.1.14", "id.orig_p": 38690, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 57372, "rtt": 0.186676, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.138.123", "ttl": 2283}
{"ts": "2025-04-23T09:21:09.082776Z", "uid": "C877370I3272", "id.orig_h": "192.168.1.10", "id.orig_p": 31217, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 42785, "rtt": 0.451908, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.33.74", "ttl": 1397}
{"ts": "2025-04-23T09:21:09.082790Z", "uid": "C239168E2553", "id.orig_h": "192.168.1.20", "id.orig_p": 46122, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 10378, "rtt": 0.416203, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5009", "ttl": 480}
{"ts": "2025-04-23T09:21:09.082802Z", "uid": "C945625E6496", "id.orig_h": "192.168.1.13", "id.orig_p": 21437, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37161, "rtt": 0.03583, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5575", "ttl": 3050}
{"ts": "2025-04-23T09:21:09.082814Z", "uid": "C773606Q6730", "id.orig_h": "192.168.1.14", "id.orig_p": 17933, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44128, "rtt": 0.056536, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 2490}
{"ts": "2025-04-23T09:21:09.082826Z", "uid": "C145459Q7380", "id.orig_h": "192.168.1.12", "id.orig_p": 31570, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30931, "rtt": 0.047808, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.188.126", "ttl": 3326}
{"ts": "2025-04-23T09:21:09.082837Z", "uid": "C337131T8864", "id.orig_h": "192.168.1.14", "id.orig_p": 32531, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 16164, "rtt": 0.230257, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9811", "ttl": 2763}
{"ts": "2025-04-23T09:21:09.082848Z", "uid": "C430282Y1074", "id.orig_h": "192.168.1.10", "id.orig_p": 16726, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38706, "rtt": 0.201805, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.87.63", "ttl": 1335}
{"ts": "2025-04-23T09:21:09.082859Z", "uid": "C325563J2547", "id.orig_h": "192.168.1.18", "id.orig_p": 5636, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25288, "rtt": 0.138439, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.235.69", "ttl": 2873}
{"ts": "2025-04-23T09:21:09.082871Z", "uid": "C289948Y8842", "id.orig_h": "192.168.1.21", "id.orig_p": 26561, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 27908, "rtt": 0.200995, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7170", "ttl": 1361}
{"ts": "2025-04-23T09:21:09.082883Z", "uid": "C661967O1115", "id.orig_h": "192.168.1.20", "id.orig_p": 8943, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 13761, "rtt": 0.076031, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1591", "ttl": 3101}
{"ts": "2025-04-23T09:21:09.082894Z", "uid": "C849956T8563", "id.orig_h": "192.168.1.21", "id.orig_p": 27742, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12801, "rtt": 0.331407, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 1449}
{"ts": "2025-04-23T09:21:09.082909Z", "uid": "C154233I5399", "id.orig_h": "192.168.1.14", "id.orig_p": 7449, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 50807, "rtt": 0.081317, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::5203", "ttl": 837}
{"ts": "2025-04-23T09:21:09.082921Z", "uid": "C318804Q9548", "id.orig_h": "192.168.1.19", "id.orig_p": 24781, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48335, "rtt": 0.412197, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.145.88", "ttl": 2108}
{"ts": "2025-04-23T09:21:09.082935Z", "uid": "C774424I5877", "id.orig_h": "192.168.1.12", "id.orig_p": 5590, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 13984, "rtt": 0.429129, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.247.237", "ttl": 151}
{"ts": "2025-04-23T09:21:09.082950Z", "uid": "C484621B6887", "id.orig_h": "192.168.1.14", "id.orig_p": 49980, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21660, "rtt": 0.437735, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.69.162", "ttl": 2895}
{"ts": "2025-04-23T09:21:09.082961Z", "uid": "C318899R8056", "id.orig_h": "192.168.1.18", "id.orig_p": 63503, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39561, "rtt": 0.441667, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.56.139", "ttl": 964}
{"ts": "2025-04-23T09:21:09.082981Z", "uid": "C821828R9279", "id.orig_h": "192.168.1.13", "id.orig_p": 42346, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 33629, "rtt": 0.176265, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 156}
{"ts": "2025-04-23T09:21:09.082993Z", "uid": "C121435A4810", "id.orig_h": "192.168.1.14", "id.orig_p": 17644, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13325, "rtt": 0.16255, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.83.161", "ttl": 2862}
{"ts": "2025-04-23T09:21:09.083005Z", "uid": "C931864X3191", "id.orig_h": "192.168.1.12", "id.orig_p": 18594, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56514, "rtt": 0.496006, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2646", "ttl": 2507}
{"ts": "2025-04-23T09:21:09.083016Z", "uid": "C514984L9255", "id.orig_h": "192.168.1.12", "id.orig_p": 10750, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21947, "rtt": 0.264957, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 3116}
{"ts": "2025-04-23T09:21:09.083030Z", "uid": "C646956A3802", "id.orig_h": "192.168.1.13", "id.orig_p": 65324, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 33574, "rtt": 0.334062, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 3107}
{"ts": "2025-04-23T09:21:09.083041Z", "uid": "C257534W1072", "id.orig_h": "192.168.1.18", "id.orig_p": 16614, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24965, "rtt": 0.014258, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1619}
{"ts": "2025-04-23T09:21:09.083053Z", "uid": "C907221Y2368", "id.orig_h": "192.168.1.19", "id.orig_p": 5637, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55504, "rtt": 0.162417, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.189.115", "ttl": 2816}
{"ts": "2025-04-23T09:21:09.083064Z", "uid": "C470187M4325", "id.orig_h": "192.168.1.12", "id.orig_p": 62512, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 34991, "rtt": 0.249842, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8341", "ttl": 633}
{"ts": "2025-04-23T09:21:09.083076Z", "uid": "C708626Z7922", "id.orig_h": "192.168.1.13", "id.orig_p": 39876, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 20810, "rtt": 0.246474, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 376}
{"ts": "2025-04-23T09:21:09.083090Z", "uid": "C793493Q9383", "id.orig_h": "192.168.1.12", "id.orig_p": 31684, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 59451, "rtt": 0.110239, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.137.68", "ttl": 1314}
{"ts": "2025-04-23T09:21:09.083101Z", "uid": "C538994F5572", "id.orig_h": "192.168.1.21", "id.orig_p": 58113, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28453, "rtt": 0.211916, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 756}
{"ts": "2025-04-23T09:21:09.083143Z", "uid": "C173610N4176", "id.orig_h": "192.168.1.15", "id.orig_p": 4517, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 44441, "rtt": 0.319347, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2278}
{"ts": "2025-04-23T09:21:09.083155Z", "uid": "C858795Z5563", "id.orig_h": "192.168.1.13", "id.orig_p": 45583, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13695, "rtt": 0.176482, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 3264}
{"ts": "2025-04-23T09:21:09.083362Z", "uid": "C100878C4088", "id.orig_h": "192.168.1.14", "id.orig_p": 13890, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11774, "rtt": 0.430412, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.242.37", "ttl": 2143}
{"ts": "2025-04-23T09:21:09.083375Z", "uid": "C827715Y6717", "id.orig_h": "192.168.1.13", "id.orig_p": 26117, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 47565, "rtt": 0.329038, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2247}
{"ts": "2025-04-23T09:21:09.083386Z", "uid": "C247837T7430", "id.orig_h": "192.168.1.16", "id.orig_p": 28571, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 28507, "rtt": 0.242952, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 956}
{"ts": "2025-04-23T09:21:09.083397Z", "uid": "C574883V3985", "id.orig_h": "192.168.1.11", "id.orig_p": 57169, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15577, "rtt": 0.246035, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 2045}
{"ts": "2025-04-23T09:21:09.083409Z", "uid": "C497869H9872", "id.orig_h": "192.168.1.16", "id.orig_p": 36071, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 33726, "rtt": 0.447749, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 710}
{"ts": "2025-04-23T09:21:09.083421Z", "uid": "C648440C2618", "id.orig_h": "192.168.1.16", "id.orig_p": 49204, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15721, "rtt": 0.129554, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.176.174", "ttl": 1398}
{"ts": "2025-04-23T09:21:09.083433Z", "uid": "C773283E3980", "id.orig_h": "192.168.1.11", "id.orig_p": 47772, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 35544, "rtt": 0.122893, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 1823}
{"ts": "2025-04-23T09:21:09.083455Z", "uid": "C633118N4089", "id.orig_h": "192.168.1.10", "id.orig_p": 31294, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 45961, "rtt": 0.318781, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6300", "ttl": 3167}
{"ts": "2025-04-23T09:21:09.083468Z", "uid": "C834859C2936", "id.orig_h": "192.168.1.17", "id.orig_p": 41929, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 52757, "rtt": 0.484722, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.83.241", "ttl": 1210}
{"ts": "2025-04-23T09:21:09.083485Z", "uid": "C433295D4176", "id.orig_h": "192.168.1.20", "id.orig_p": 42039, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11865, "rtt": 0.462716, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 2004}
{"ts": "2025-04-23T09:21:09.083497Z", "uid": "C283888S1104", "id.orig_h": "192.168.1.11", "id.orig_p": 63910, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 10032, "rtt": 0.305388, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 1679}
{"ts": "2025-04-23T09:21:09.083508Z", "uid": "C618664R5456", "id.orig_h": "192.168.1.14", "id.orig_p": 30829, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 42775, "rtt": 0.441325, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.190.97", "ttl": 2647}
{"ts": "2025-04-23T09:21:09.083520Z", "uid": "C285772H2575", "id.orig_h": "192.168.1.20", "id.orig_p": 36358, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 56730, "rtt": 0.421387, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.95.29", "ttl": 269}
{"ts": "2025-04-23T09:21:09.083531Z", "uid": "C372409N5894", "id.orig_h": "192.168.1.20", "id.orig_p": 1603, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 36901, "rtt": 0.034051, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 461}
{"ts": "2025-04-23T09:21:09.083543Z", "uid": "C434607V4933", "id.orig_h": "192.168.1.13", "id.orig_p": 28245, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29326, "rtt": 0.096585, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.203.101", "ttl": 811}
{"ts": "2025-04-23T09:21:09.083555Z", "uid": "C308116M4790", "id.orig_h": "192.168.1.17", "id.orig_p": 20688, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36675, "rtt": 0.391238, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.13.32", "ttl": 174}
{"ts": "2025-04-23T09:21:09.083566Z", "uid": "C378395I3600", "id.orig_h": "192.168.1.13", "id.orig_p": 14758, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44817, "rtt": 0.182903, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.200.246", "ttl": 1658}
{"ts": "2025-04-23T09:21:09.083580Z", "uid": "C703615U5311", "id.orig_h": "192.168.1.11", "id.orig_p": 62083, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40471, "rtt": 0.195344, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 411}
{"ts": "2025-04-23T09:21:09.083595Z", "uid": "C813320T2845", "id.orig_h": "192.168.1.19", "id.orig_p": 28698, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 28188, "rtt": 0.208589, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8837", "ttl": 2722}
{"ts": "2025-04-23T09:21:09.083606Z", "uid": "C555662G1831", "id.orig_h": "192.168.1.13", "id.orig_p": 8474, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 34613, "rtt": 0.383052, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.250.73", "ttl": 464}
{"ts": "2025-04-23T09:21:09.083617Z", "uid": "C226417K7127", "id.orig_h": "192.168.1.10", "id.orig_p": 10882, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53610, "rtt": 0.016758, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 1102}
{"ts": "2025-04-23T09:21:09.083628Z", "uid": "C735260K3559", "id.orig_h": "192.168.1.16", "id.orig_p": 51894, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 37494, "rtt": 0.48708, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.140.240", "ttl": 76}
{"ts": "2025-04-23T09:21:09.083640Z", "uid": "C937390W9970", "id.orig_h": "192.168.1.10", "id.orig_p": 59815, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 16226, "rtt": 0.248673, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.103.41", "ttl": 2599}
{"ts": "2025-04-23T09:21:09.083651Z", "uid": "C933314N6055", "id.orig_h": "192.168.1.10", "id.orig_p": 29841, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 10588, "rtt": 0.198716, "query": "printer.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.printer.local", "ttl": 2764}
{"ts": "2025-04-23T09:21:09.083663Z", "uid": "C746647H8369", "id.orig_h": "192.168.1.14", "id.orig_p": 1948, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 27481, "rtt": 0.417548, "query": "ipv6test.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.215.20", "ttl": 2522}
{"ts": "2025-04-23T09:21:09.083675Z", "uid": "C370369C3895", "id.orig_h": "192.168.1.12", "id.orig_p": 57783, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38683, "rtt": 0.066801, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4276", "ttl": 2675}
{"ts": "2025-04-23T09:21:09.083686Z", "uid": "C895624F2108", "id.orig_h": "192.168.1.18", "id.orig_p": 1468, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29003, "rtt": 0.264515, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8104", "ttl": 1266}
{"ts": "2025-04-23T09:21:09.083702Z", "uid": "C561424V4716", "id.orig_h": "192.168.1.18", "id.orig_p": 49125, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18450, "rtt": 0.457856, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1719}
{"ts": "2025-04-23T09:21:09.083716Z", "uid": "C589574X3890", "id.orig_h": "192.168.1.11", "id.orig_p": 19393, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 53278, "rtt": 0.465152, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 3165}
{"ts": "2025-04-23T09:21:09.083728Z", "uid": "C268229M5038", "id.orig_h": "192.168.1.17", "id.orig_p": 58281, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24560, "rtt": 0.230287, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 2380}
{"ts": "2025-04-23T09:21:09.083739Z", "uid": "C999135U8510", "id.orig_h": "192.168.1.21", "id.orig_p": 47126, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 33197, "rtt": 0.397783, "query": "fileserver.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::8779", "ttl": 2962}
{"ts": "2025-04-23T09:21:09.083752Z", "uid": "C279391V3688", "id.orig_h": "192.168.1.10", "id.orig_p": 47745, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 29610, "rtt": 0.148922, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3803", "ttl": 1300}
{"ts": "2025-04-23T09:21:09.083764Z", "uid": "C344558H8564", "id.orig_h": "192.168.1.20", "id.orig_p": 59829, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 56740, "rtt": 0.440672, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 573}
{"ts": "2025-04-23T09:21:09.083776Z", "uid": "C768460Q9438", "id.orig_h": "192.168.1.13", "id.orig_p": 50474, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 53394, "rtt": 0.266688, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.89.129", "ttl": 3113}
{"ts": "2025-04-23T09:21:09.083787Z", "uid": "C163645Z1419", "id.orig_h": "192.168.1.15", "id.orig_p": 42962, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41926, "rtt": 0.401572, "query": "microsoft.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 1767}
{"ts": "2025-04-23T09:21:09.083799Z", "uid": "C617645H2708", "id.orig_h": "192.168.1.15", "id.orig_p": 11443, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 55392, "rtt": 0.137683, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.176.188", "ttl": 806}
{"ts": "2025-04-23T09:21:09.083817Z", "uid": "C119146T6315", "id.orig_h": "192.168.1.14", "id.orig_p": 63232, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 50795, "rtt": 0.298604, "query": "example.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.example.com", "ttl": 422}
{"ts": "2025-04-23T09:21:09.083829Z", "uid": "C771346B5511", "id.orig_h": "192.168.1.18", "id.orig_p": 56844, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 41856, "rtt": 0.378264, "query": "microsoft.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.microsoft.com", "ttl": 2647}
{"ts": "2025-04-23T09:21:09.083840Z", "uid": "C381885T5418", "id.orig_h": "192.168.1.19", "id.orig_p": 58810, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23922, "rtt": 0.293408, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1770", "ttl": 3545}
{"ts": "2025-04-23T09:21:09.083852Z", "uid": "C659226F8858", "id.orig_h": "192.168.1.10", "id.orig_p": 13727, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32696, "rtt": 0.293051, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2047", "ttl": 2033}
{"ts": "2025-04-23T09:21:09.083863Z", "uid": "C732832K6394", "id.orig_h": "192.168.1.18", "id.orig_p": 41559, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 26903, "rtt": 0.152436, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 2425}
{"ts": "2025-04-23T09:21:09.083875Z", "uid": "C805489X9704", "id.orig_h": "192.168.1.18", "id.orig_p": 50308, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16080, "rtt": 0.210756, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1699}
{"ts": "2025-04-23T09:21:09.083887Z", "uid": "C147130A9687", "id.orig_h": "192.168.1.21", "id.orig_p": 23576, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 57550, "rtt": 0.496989, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.25.167", "ttl": 1371}
{"ts": "2025-04-23T09:21:09.083898Z", "uid": "C913801T4126", "id.orig_h": "192.168.1.14", "id.orig_p": 64642, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 24933, "rtt": 0.066981, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 690}
{"ts": "2025-04-23T09:21:09.083910Z", "uid": "C702801U9279", "id.orig_h": "192.168.1.21", "id.orig_p": 16622, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 11665, "rtt": 0.179964, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3488}
{"ts": "2025-04-23T09:21:09.083922Z", "uid": "C869563Q2238", "id.orig_h": "192.168.1.18", "id.orig_p": 59385, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 38588, "rtt": 0.494304, "query": "yahoo.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9846", "ttl": 2320}
{"ts": "2025-04-23T09:21:09.083937Z", "uid": "C414291A7742", "id.orig_h": "192.168.1.10", "id.orig_p": 62990, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 46082, "rtt": 0.208085, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7659", "ttl": 67}
{"ts": "2025-04-23T09:21:09.083950Z", "uid": "C875892P7772", "id.orig_h": "192.168.1.18", "id.orig_p": 43215, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 33156, "rtt": 0.366185, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 459}
{"ts": "2025-04-23T09:21:09.083961Z", "uid": "C477304M7198", "id.orig_h": "192.168.1.16", "id.orig_p": 2682, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15329, "rtt": 0.497361, "query": "yahoo.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.yahoo.com", "ttl": 600}
{"ts": "2025-04-23T09:21:09.083975Z", "uid": "C145794J9839", "id.orig_h": "192.168.1.21", "id.orig_p": 26063, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 32108, "rtt": 0.481095, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.223.71", "ttl": 2460}
{"ts": "2025-04-23T09:21:09.083987Z", "uid": "C920374A8495", "id.orig_h": "192.168.1.19", "id.orig_p": 19830, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15899, "rtt": 0.386133, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.224.80", "ttl": 2044}
{"ts": "2025-04-23T09:21:09.083999Z", "uid": "C217843Y9885", "id.orig_h": "192.168.1.18", "id.orig_p": 15058, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18064, "rtt": 0.304033, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.101.130", "ttl": 2340}
{"ts": "2025-04-23T09:21:09.084012Z", "uid": "C299114P6296", "id.orig_h": "192.168.1.11", "id.orig_p": 43453, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19409, "rtt": 0.299091, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7490", "ttl": 653}
{"ts": "2025-04-23T09:21:09.084023Z", "uid": "C827270O2111", "id.orig_h": "192.168.1.17", "id.orig_p": 3232, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48576, "rtt": 0.189835, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1143}
{"ts": "2025-04-23T09:21:09.084035Z", "uid": "C778648L8190", "id.orig_h": "192.168.1.21", "id.orig_p": 37717, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 25581, "rtt": 0.389629, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9261", "ttl": 3360}
{"ts": "2025-04-23T09:21:09.084049Z", "uid": "C149065A2005", "id.orig_h": "192.168.1.10", "id.orig_p": 60244, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 15915, "rtt": 0.027094, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1715}
{"ts": "2025-04-23T09:21:09.084061Z", "uid": "C320680H3394", "id.orig_h": "192.168.1.10", "id.orig_p": 21241, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 32239, "rtt": 0.322067, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::6820", "ttl": 2520}
{"ts": "2025-04-23T09:21:09.084072Z", "uid": "C867195S1678", "id.orig_h": "192.168.1.15", "id.orig_p": 17720, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 44442, "rtt": 0.246066, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 2970}
{"ts": "2025-04-23T09:21:09.084086Z", "uid": "C298384U2067", "id.orig_h": "192.168.1.14", "id.orig_p": 33162, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43116, "rtt": 0.07526, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.110.205", "ttl": 2370}
{"ts": "2025-04-23T09:21:09.084098Z", "uid": "C880370Z4777", "id.orig_h": "192.168.1.11", "id.orig_p": 11004, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29870, "rtt": 0.067866, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.66.2", "ttl": 2017}
{"ts": "2025-04-23T09:21:09.084110Z", "uid": "C673439E7388", "id.orig_h": "192.168.1.21", "id.orig_p": 64008, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 46416, "rtt": 0.123661, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.92.142", "ttl": 606}
{"ts": "2025-04-23T09:21:09.084121Z", "uid": "C344740H6319", "id.orig_h": "192.168.1.13", "id.orig_p": 1053, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 31437, "rtt": 0.424464, "query": "router.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.router.local", "ttl": 1302}
{"ts": "2025-04-23T09:21:09.084133Z", "uid": "C392128B9134", "id.orig_h": "192.168.1.14", "id.orig_p": 20667, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44557, "rtt": 0.429721, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3515}
{"ts": "2025-04-23T09:21:09.084147Z", "uid": "C440532J6904", "id.orig_h": "192.168.1.12", "id.orig_p": 53988, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 26706, "rtt": 0.071354, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 105}
{"ts": "2025-04-23T09:21:09.084163Z", "uid": "C345183C2240", "id.orig_h": "192.168.1.20", "id.orig_p": 65025, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 48194, "rtt": 0.273449, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 3571}
{"ts": "2025-04-23T09:21:09.084174Z", "uid": "C100523S3401", "id.orig_h": "192.168.1.15", "id.orig_p": 11436, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57633, "rtt": 0.35426, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.99.109", "ttl": 1760}
{"ts": "2025-04-23T09:21:09.084186Z", "uid": "C707139W2542", "id.orig_h": "192.168.1.17", "id.orig_p": 38151, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11114, "rtt": 0.380299, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.17.in-addr.arpa", "ttl": 1244}
{"ts": "2025-04-23T09:21:09.084197Z", "uid": "C365387F7702", "id.orig_h": "192.168.1.12", "id.orig_p": 21126, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 35073, "rtt": 0.439834, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.158.2", "ttl": 3076}
{"ts": "2025-04-23T09:21:09.084209Z", "uid": "C372826R1351", "id.orig_h": "192.168.1.10", "id.orig_p": 9889, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 28954, "rtt": 0.327398, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.147.232", "ttl": 2397}
{"ts": "2025-04-23T09:21:09.084220Z", "uid": "C875592X2701", "id.orig_h": "192.168.1.11", "id.orig_p": 11421, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 13320, "rtt": 0.421621, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4305", "ttl": 3481}
{"ts": "2025-04-23T09:21:09.084231Z", "uid": "C155222T1913", "id.orig_h": "192.168.1.12", "id.orig_p": 24069, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 30893, "rtt": 0.200049, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 844}
{"ts": "2025-04-23T09:21:09.084242Z", "uid": "C213271B3627", "id.orig_h": "192.168.1.17", "id.orig_p": 42563, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 16118, "rtt": 0.446905, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.52.47", "ttl": 2450}
{"ts": "2025-04-23T09:21:09.084255Z", "uid": "C690565W3335", "id.orig_h": "192.168.1.12", "id.orig_p": 11053, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 51707, "rtt": 0.249716, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 1170}
{"ts": "2025-04-23T09:21:09.084269Z", "uid": "C211751D2005", "id.orig_h": "192.168.1.19", "id.orig_p": 59435, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 19498, "rtt": 0.302556, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.142.249", "ttl": 863}
{"ts": "2025-04-23T09:21:09.084280Z", "uid": "C690461W7391", "id.orig_h": "192.168.1.16", "id.orig_p": 41259, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40112, "rtt": 0.299581, "query": "router.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 3359}
{"ts": "2025-04-23T09:21:09.084292Z", "uid": "C394895Z3683", "id.orig_h": "192.168.1.17", "id.orig_p": 48890, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45212, "rtt": 0.064825, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2145", "ttl": 3305}
{"ts": "2025-04-23T09:21:09.084304Z", "uid": "C462773Y6448", "id.orig_h": "192.168.1.19", "id.orig_p": 31517, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24847, "rtt": 0.276801, "query": "microsoft.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.34.45", "ttl": 152}
{"ts": "2025-04-23T09:21:09.084316Z", "uid": "C118194O2386", "id.orig_h": "192.168.1.19", "id.orig_p": 49532, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 40952, "rtt": 0.132448, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.19.in-addr.arpa", "ttl": 3279}
{"ts": "2025-04-23T09:21:09.084327Z", "uid": "C663646P3853", "id.orig_h": "192.168.1.18", "id.orig_p": 36392, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 38401, "rtt": 0.109917, "query": "example.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.154.215", "ttl": 207}
{"ts": "2025-04-23T09:21:09.084340Z", "uid": "C247762T4970", "id.orig_h": "192.168.1.21", "id.orig_p": 9756, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 32327, "rtt": 0.454613, "query": "printer.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.106.255", "ttl": 1915}
{"ts": "2025-04-23T09:21:09.084351Z", "uid": "C317074Y2340", "id.orig_h": "192.168.1.11", "id.orig_p": 11726, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 39781, "rtt": 0.175307, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.15.90", "ttl": 3291}
{"ts": "2025-04-23T09:21:09.084362Z", "uid": "C796428C6808", "id.orig_h": "192.168.1.19", "id.orig_p": 3409, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 12219, "rtt": 0.325205, "query": "microsoft.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7036", "ttl": 922}
{"ts": "2025-04-23T09:21:09.084380Z", "uid": "C897047G6313", "id.orig_h": "192.168.1.16", "id.orig_p": 30263, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 29832, "rtt": 0.243992, "query": "example.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9815", "ttl": 1671}
{"ts": "2025-04-23T09:21:09.084392Z", "uid": "C224936X6469", "id.orig_h": "192.168.1.12", "id.orig_p": 43947, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 41566, "rtt": 0.113277, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.226.39", "ttl": 96}
{"ts": "2025-04-23T09:21:09.084404Z", "uid": "C447270Y2449", "id.orig_h": "192.168.1.17", "id.orig_p": 64147, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 44721, "rtt": 0.114733, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 100}
{"ts": "2025-04-23T09:21:09.084415Z", "uid": "C414868A4787", "id.orig_h": "192.168.1.12", "id.orig_p": 8365, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 55871, "rtt": 0.271929, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.12.in-addr.arpa", "ttl": 2410}
{"ts": "2025-04-23T09:21:09.084426Z", "uid": "C146958N2837", "id.orig_h": "192.168.1.20", "id.orig_p": 7496, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 26405, "rtt": 0.193704, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2157}
{"ts": "2025-04-23T09:21:09.084438Z", "uid": "C884482B8802", "id.orig_h": "192.168.1.20", "id.orig_p": 63050, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 36041, "rtt": 0.077051, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 423}
{"ts": "2025-04-23T09:21:09.084449Z", "uid": "C603056E3548", "id.orig_h": "192.168.1.16", "id.orig_p": 18518, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 52436, "rtt": 0.042342, "query": "internal.lan", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2511", "ttl": 1438}
{"ts": "2025-04-23T09:21:09.084461Z", "uid": "C869377E8763", "id.orig_h": "192.168.1.13", "id.orig_p": 36624, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39969, "rtt": 0.408967, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 690}
{"ts": "2025-04-23T09:21:09.084477Z", "uid": "C303065D2869", "id.orig_h": "192.168.1.11", "id.orig_p": 40919, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 55214, "rtt": 0.384145, "query": "yahoo.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.150.20", "ttl": 2997}
{"ts": "2025-04-23T09:21:09.084494Z", "uid": "C830528J9163", "id.orig_h": "192.168.1.11", "id.orig_p": 40389, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 39198, "rtt": 0.117529, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 3456}
{"ts": "2025-04-23T09:21:09.084505Z", "uid": "C138686M3616", "id.orig_h": "192.168.1.15", "id.orig_p": 18302, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 48193, "rtt": 0.325141, "query": "printer.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.15.in-addr.arpa", "ttl": 1520}
{"ts": "2025-04-23T09:21:09.084517Z", "uid": "C852416N5255", "id.orig_h": "192.168.1.14", "id.orig_p": 30459, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 23111, "rtt": 0.025151, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.67.217", "ttl": 2021}
{"ts": "2025-04-23T09:21:09.084528Z", "uid": "C707276U5637", "id.orig_h": "192.168.1.11", "id.orig_p": 11501, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 28158, "rtt": 0.019239, "query": "google.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.11.in-addr.arpa", "ttl": 447}
{"ts": "2025-04-23T09:21:09.084539Z", "uid": "C474705M5663", "id.orig_h": "192.168.1.10", "id.orig_p": 33634, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 22683, "rtt": 0.473667, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1367}
{"ts": "2025-04-23T09:21:09.084550Z", "uid": "C855286B7018", "id.orig_h": "192.168.1.13", "id.orig_p": 28591, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 15441, "rtt": 0.498604, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.13.in-addr.arpa", "ttl": 2270}
{"ts": "2025-04-23T09:21:09.084561Z", "uid": "C485026S7465", "id.orig_h": "192.168.1.15", "id.orig_p": 15457, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 45488, "rtt": 0.137667, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::4830", "ttl": 860}
{"ts": "2025-04-23T09:21:09.084768Z", "uid": "C879119M4814", "id.orig_h": "192.168.1.20", "id.orig_p": 36014, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 17569, "rtt": 0.16654, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.20.in-addr.arpa", "ttl": 3295}
{"ts": "2025-04-23T09:21:09.084789Z", "uid": "C768816K4545", "id.orig_h": "192.168.1.18", "id.orig_p": 7077, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 55664, "rtt": 0.199856, "query": "ipv6test.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1414", "ttl": 412}
{"ts": "2025-04-23T09:21:09.084814Z", "uid": "C577740I1536", "id.orig_h": "192.168.1.21", "id.orig_p": 25204, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 54361, "rtt": 0.24369, "query": "backup.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 3011}
{"ts": "2025-04-23T09:21:09.084826Z", "uid": "C294718A1479", "id.orig_h": "192.168.1.18", "id.orig_p": 39071, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 13122, "rtt": 0.421586, "query": "backup.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.backup.local", "ttl": 1098}
{"ts": "2025-04-23T09:21:09.084838Z", "uid": "C542935C4203", "id.orig_h": "192.168.1.17", "id.orig_p": 40962, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 36777, "rtt": 0.229802, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.19.196", "ttl": 216}
{"ts": "2025-04-23T09:21:09.084850Z", "uid": "C410529R9529", "id.orig_h": "192.168.1.20", "id.orig_p": 62564, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 59354, "rtt": 0.228981, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.114.252", "ttl": 631}
{"ts": "2025-04-23T09:21:09.084861Z", "uid": "C497605D8039", "id.orig_h": "192.168.1.10", "id.orig_p": 43948, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 24711, "rtt": 0.285525, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 860}
{"ts": "2025-04-23T09:21:09.084874Z", "uid": "C203878G6803", "id.orig_h": "192.168.1.18", "id.orig_p": 4249, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 43685, "rtt": 0.297126, "query": "google.com", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.google.com", "ttl": 1456}
{"ts": "2025-04-23T09:21:09.084894Z", "uid": "C359950N8769", "id.orig_h": "192.168.1.16", "id.orig_p": 6491, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 38313, "rtt": 0.054858, "query": "ipv6test.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.ipv6test.local", "ttl": 692}
{"ts": "2025-04-23T09:21:09.084907Z", "uid": "C179935V7669", "id.orig_h": "192.168.1.18", "id.orig_p": 1731, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 11922, "rtt": 0.244301, "query": "yahoo.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.18.in-addr.arpa", "ttl": 1114}
{"ts": "2025-04-23T09:21:09.084930Z", "uid": "C297152B6073", "id.orig_h": "192.168.1.19", "id.orig_p": 16176, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 12047, "rtt": 0.425328, "query": "google.com", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.143.185", "ttl": 393}
{"ts": "2025-04-23T09:21:09.084942Z", "uid": "C285633T3684", "id.orig_h": "192.168.1.18", "id.orig_p": 58162, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18618, "rtt": 0.127926, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 1849}
{"ts": "2025-04-23T09:21:09.084957Z", "uid": "C528294M3394", "id.orig_h": "192.168.1.21", "id.orig_p": 62682, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 58159, "rtt": 0.145476, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::7798", "ttl": 1360}
{"ts": "2025-04-23T09:21:09.084969Z", "uid": "C216517Q8848", "id.orig_h": "192.168.1.14", "id.orig_p": 53656, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 49975, "rtt": 0.251487, "query": "internal.lan", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.14.in-addr.arpa", "ttl": 3080}
{"ts": "2025-04-23T09:21:09.084981Z", "uid": "C651362V6280", "id.orig_h": "192.168.1.11", "id.orig_p": 49325, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 20615, "rtt": 0.235521, "query": "internal.lan", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.internal.lan", "ttl": 2317}
{"ts": "2025-04-23T09:21:09.084993Z", "uid": "C597566J7768", "id.orig_h": "192.168.1.18", "id.orig_p": 64413, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 22400, "rtt": 0.086725, "query": "backup.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::1993", "ttl": 1317}
{"ts": "2025-04-23T09:21:09.085005Z", "uid": "C764256C8965", "id.orig_h": "192.168.1.15", "id.orig_p": 41699, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 21433, "rtt": 0.47411, "query": "fileserver.local", "qclass": "IN", "qtype": "CNAME", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "alias.fileserver.local", "ttl": 2459}
{"ts": "2025-04-23T09:21:09.085019Z", "uid": "C908337H3399", "id.orig_h": "192.168.1.21", "id.orig_p": 43430, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 57594, "rtt": 0.282896, "query": "printer.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::3767", "ttl": 2688}
{"ts": "2025-04-23T09:21:09.085031Z", "uid": "C694657Z3857", "id.orig_h": "192.168.1.11", "id.orig_p": 2513, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 43098, "rtt": 0.302715, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.173.209", "ttl": 3400}
{"ts": "2025-04-23T09:21:09.085043Z", "uid": "C626266D4774", "id.orig_h": "192.168.1.18", "id.orig_p": 14138, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 57553, "rtt": 0.42648, "query": "backup.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.232.20", "ttl": 154}
{"ts": "2025-04-23T09:21:09.085055Z", "uid": "C649810S6090", "id.orig_h": "192.168.1.10", "id.orig_p": 47952, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 41643, "rtt": 0.371147, "query": "fileserver.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.10.in-addr.arpa", "ttl": 1185}
{"ts": "2025-04-23T09:21:09.085073Z", "uid": "C392238H6459", "id.orig_h": "192.168.1.16", "id.orig_p": 21817, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 11667, "rtt": 0.344587, "query": "example.com", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.16.in-addr.arpa", "ttl": 2491}
{"ts": "2025-04-23T09:21:09.085084Z", "uid": "C175537N6524", "id.orig_h": "192.168.1.16", "id.orig_p": 47618, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 18455, "rtt": 0.352324, "query": "router.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.152.175", "ttl": 2641}
{"ts": "2025-04-23T09:21:09.085097Z", "uid": "C481159O7605", "id.orig_h": "192.168.1.18", "id.orig_p": 50142, "id.resp_h": "192.168.1.2", "id.resp_p": 53, "proto": "udp", "trans_id": 36395, "rtt": 0.427013, "query": "fileserver.local", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.216.100", "ttl": 2546}
{"ts": "2025-04-23T09:21:09.085117Z", "uid": "C356647W2796", "id.orig_h": "192.168.1.10", "id.orig_p": 34501, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 10991, "rtt": 0.433348, "query": "router.local", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::9792", "ttl": 1817}
{"ts": "2025-04-23T09:21:09.085130Z", "uid": "C860549A8405", "id.orig_h": "192.168.1.21", "id.orig_p": 19137, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 14270, "rtt": 0.287519, "query": "ipv6test.local", "qclass": "IN", "qtype": "PTR", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.1.21.in-addr.arpa", "ttl": 1437}
{"ts": "2025-04-23T09:21:09.085152Z", "uid": "C981512E1942", "id.orig_h": "192.168.1.12", "id.orig_p": 44958, "id.resp_h": "192.168.1.1", "id.resp_p": 53, "proto": "udp", "trans_id": 20926, "rtt": 0.151508, "query": "internal.lan", "qclass": "IN", "qtype": "A", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "192.168.208.194", "ttl": 3540}
{"ts": "2025-04-23T09:21:09.085164Z", "uid": "C226755X9228", "id.orig_h": "192.168.1.20", "id.orig_p": 7070, "id.resp_h": "192.168.1.3", "id.resp_p": 53, "proto": "udp", "trans_id": 25276, "rtt": 0.050705, "query": "google.com", "qclass": "IN", "qtype": "AAAA", "rcode": "NOERROR", "aa": false, "tc": false, "rd": true, "ra": true, "rejected": false, "answers": "2001:0db8:85a3::2910", "ttl": 3070}