1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
|
1 1999-11-11 21:46:16.463334 IP (tos 0x0, ttl 64, id 57925, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 431 fs call fetch-status fid 536871098/846/1049757 (44)
2 1999-11-11 21:46:16.483206 IP (tos 0x0, ttl 254, id 52107, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 347 fs reply fetch-status (148)
3 1999-11-11 21:46:16.889677 IP (tos 0x0, ttl 64, id 57926, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.59.7000: rx ack seq 0 ser 432 first 2 serial 347 reason delay (65)
4 1999-11-11 21:46:24.151512 IP (tos 0x0, ttl 64, id 57928, offset 0, flags [none], proto UDP (17), length 108)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 433 fs call makedir fid 536871098/1/1 "tmpdir" StoreStatus date 1999-11-11 21:46:24 group 0 mode 755 (80)
5 1999-11-11 21:46:24.245048 IP (tos 0x0, ttl 254, id 59867, offset 0, flags [DF], proto UDP (17), length 80)
131.151.1.59.7000 > 131.151.32.91.7001: rx data seq 1 ser 2312 cb call callback fid 536871098/1/1 (52)
6 1999-11-11 21:46:24.255513 IP (tos 0x0, ttl 128, id 42324, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.59.7000: rx data seq 1 ser 1154 (28)
7 1999-11-11 21:46:24.255528 IP (tos 0x0, ttl 128, id 42324, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.59.7000: rx data seq 1 ser 1154 (28)
8 1999-11-11 21:46:24.282365 IP (tos 0x0, ttl 254, id 52108, offset 0, flags [DF], proto UDP (17), length 272)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 348 fs reply makedir new fid 536871098/677/1097448 (244)
9 1999-11-11 21:46:24.283047 IP (tos 0x0, ttl 64, id 57929, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 434 fs call fetch-status fid 536871098/677/1097448 (44)
10 1999-11-11 21:46:24.284042 IP (tos 0x0, ttl 254, id 52109, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 349 fs reply fetch-status (148)
11 1999-11-11 21:46:24.679610 IP (tos 0x0, ttl 64, id 57930, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.59.7000: rx ack seq 0 ser 435 first 2 serial 349 reason delay (65)
12 1999-11-11 21:46:24.781785 IP (tos 0x0, ttl 254, id 59868, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7000 > 131.151.32.91.7001: rx ack seq 0 ser 2313 first 1 serial 1154 reason delay acked 1 (62)
13 1999-11-11 21:46:28.541035 IP (tos 0x0, ttl 64, id 57931, offset 0, flags [none], proto UDP (17), length 84)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 436 fs call rmdir fid 536871098/1/1 "tmpdir" (56)
14 1999-11-11 21:46:28.544636 IP (tos 0x0, ttl 254, id 52110, offset 0, flags [DF], proto UDP (17), length 164)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 350 fs reply rmdir (136)
15 1999-11-11 21:46:28.949547 IP (tos 0x0, ttl 64, id 57932, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.59.7000: rx ack seq 0 ser 437 first 2 serial 350 reason delay (65)
16 1999-11-11 21:46:38.681457 IP (tos 0x0, ttl 254, id 41909, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.70.7000 > 131.151.32.91.7001: rx data seq 1 ser 1344 cb call probe (32)
17 1999-11-11 21:46:38.690316 IP (tos 0x0, ttl 128, id 42580, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.70.7000: rx data seq 1 ser 656 (28)
18 1999-11-11 21:46:38.690352 IP (tos 0x0, ttl 128, id 42580, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.70.7000: rx data seq 1 ser 656 (28)
19 1999-11-11 21:46:39.196737 IP (tos 0x0, ttl 254, id 41910, offset 0, flags [DF], proto UDP (17), length 89)
131.151.1.70.7000 > 131.151.32.91.7001: rx ack seq 0 ser 1345 first 2 serial 656 reason delay (61)
20 1999-11-11 21:46:48.590067 IP (tos 0x0, ttl 64, id 57933, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1607 fs call fetch-status fid 536977399/40/27 (44)
21 1999-11-11 21:46:48.619971 IP (tos 0x0, ttl 254, id 569, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2519 fs reply fetch-status (148)
22 1999-11-11 21:46:48.810858 IP (tos 0x0, ttl 64, id 57934, offset 0, flags [none], proto UDP (17), length 76)
131.151.32.21.1792 > 131.151.1.59.7003: rx data seq 1 ser 1 vldb call get-entry-by-name "root.cell" (48)
23 1999-11-11 21:46:48.812595 IP (tos 0x0, ttl 254, id 52111, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 1 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
24 1999-11-11 21:46:48.813282 IP (tos 0x0, ttl 64, id 57935, offset 0, flags [none], proto UDP (17), length 124)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 438 fs call symlink fid 536871098/1/1 "rotcel" link to "#root.cell." (96)
25 1999-11-11 21:46:48.830808 IP (tos 0x0, ttl 254, id 52112, offset 0, flags [DF], proto UDP (17), length 260)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 351 fs reply symlink (232)
26 1999-11-11 21:46:49.029316 IP (tos 0x0, ttl 64, id 57936, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 0 ser 1608 first 2 serial 2519 reason delay (65)
27 1999-11-11 21:46:49.229306 IP (tos 0x0, ttl 64, id 57937, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.59.7000: rx ack seq 0 ser 439 first 2 serial 351 reason delay (65)
28 1999-11-11 21:46:51.218454 IP (tos 0x0, ttl 254, id 52113, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 2 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
29 1999-11-11 21:46:51.218541 IP (tos 0xc0, ttl 255, id 57939, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52113, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 2 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
30 1999-11-11 21:46:52.805338 IP (tos 0x0, ttl 64, id 57940, offset 0, flags [none], proto UDP (17), length 84)
131.151.32.21.7001 > 131.151.1.59.7000: rx data seq 1 ser 440 fs call remove-file fid 536871098/1/1 "rotcel" (56)
31 1999-11-11 21:46:52.810150 IP (tos 0x0, ttl 254, id 52114, offset 0, flags [DF], proto UDP (17), length 164)
131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 352 fs reply remove-file (136)
32 1999-11-11 21:46:53.209266 IP (tos 0x0, ttl 64, id 57941, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.59.7000: rx ack seq 0 ser 441 first 2 serial 352 reason delay (65)
33 1999-11-11 21:46:53.878655 IP (tos 0x0, ttl 254, id 52115, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 3 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
34 1999-11-11 21:46:53.878718 IP (tos 0xc0, ttl 255, id 57942, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52115, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 3 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
35 1999-11-11 21:46:56.242994 IP (tos 0x0, ttl 64, id 57943, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1609 fs call fetch-status fid 536977399/86/51 (44)
36 1999-11-11 21:46:56.245019 IP (tos 0x0, ttl 254, id 570, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2520 fs reply fetch-status (148)
37 1999-11-11 21:46:56.518772 IP (tos 0x0, ttl 64, id 57944, offset 0, flags [none], proto UDP (17), length 76)
131.151.32.21.1792 > 131.151.1.59.7003: rx data seq 1 ser 1 vldb call get-entry-by-name-n "users.nneul" (48)
38 1999-11-11 21:46:56.519452 IP (tos 0x0, ttl 254, id 52116, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7003 > 131.151.32.21.1792: rx challenge seq 0 ser 1 (44)
39 1999-11-11 21:46:56.523136 IP (tos 0x0, ttl 64, id 57945, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1792 > 131.151.1.59.7003: rx response seq 0 ser 2 (140)
40 1999-11-11 21:46:56.525522 IP (tos 0x0, ttl 254, id 52117, offset 0, flags [DF], proto UDP (17), length 532)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 2 vldb reply get-entry-by-name-n "users.nneul" numservers 1 servers 131.151.1.59 partitions b rwvol 536871098 rovol 536871099 backup 536871100 (504)
41 1999-11-11 21:46:56.525791 IP (tos 0x0, ttl 64, id 57946, offset 0, flags [none], proto UDP (17), length 68)
131.151.32.21.1792 > 131.151.1.59.7003: rx data seq 1 ser 3 vldb call get-entry-by-id-n volid 536871098 (40)
42 1999-11-11 21:46:56.527259 IP (tos 0x0, ttl 254, id 52118, offset 0, flags [DF], proto UDP (17), length 532)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 3 vldb reply get-entry-by-id-n "users.nneul" numservers 1 servers 131.151.1.59 partitions b rwvol 536871098 rovol 536871099 backup 536871100 (504)
43 1999-11-11 21:46:56.527629 IP (tos 0x0, ttl 64, id 57947, offset 0, flags [none], proto UDP (17), length 68)
131.151.32.21.1792 > 131.151.1.59.7005: rx data seq 1 ser 1 vol call list-one-volume partid 1 volid 536871098 (40)
44 1999-11-11 21:46:56.637381 IP (tos 0x0, ttl 254, id 52119, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7005 > 131.151.32.21.1792: rx challenge seq 0 ser 1 (44)
45 1999-11-11 21:46:56.637779 IP (tos 0x0, ttl 64, id 57948, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1792 > 131.151.1.59.7005: rx response seq 0 ser 2 (140)
46 1999-11-11 21:46:56.639215 IP (tos 0x0, ttl 64, id 57949, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 0 ser 1610 first 2 serial 2520 reason delay (65)
47 1999-11-11 21:46:56.920017 IP (tos 0x0, ttl 64, id 57950, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.1792 > 131.151.1.59.7003: rx ack seq 0 ser 4 first 2 serial 3 reason delay (65)
48 1999-11-11 21:46:57.036390 IP (tos 0x0, ttl 254, id 52120, offset 0, flags [DF], proto UDP (17), length 280)
131.151.1.59.7005 > 131.151.32.21.1792: rx data seq 1 ser 2 vol reply list-one-volume name "users.nneul" volid 536871098 type (252)
49 1999-11-11 21:46:57.048744 IP (tos 0x0, ttl 254, id 52121, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 4 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
50 1999-11-11 21:46:57.061382 IP (tos 0x0, ttl 64, id 57951, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.21.1792 > 131.151.1.59.7005: rx ackall seq 0 ser 3 (28)
51 1999-11-11 21:47:00.778759 IP (tos 0x0, ttl 254, id 52122, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 5 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
52 1999-11-11 21:47:00.778818 IP (tos 0xc0, ttl 255, id 57971, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52122, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 5 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
53 1999-11-11 21:47:00.817967 IP (tos 0x0, ttl 64, id 57972, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1611 fs call fetch-status fid 536977399/14/14 (44)
54 1999-11-11 21:47:00.820615 IP (tos 0x0, ttl 254, id 571, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2521 fs reply fetch-status (148)
55 1999-11-11 21:47:00.995692 IP (tos 0x0, ttl 64, id 57973, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 1 pt call name-to-id "users.nneul" (292)
56 1999-11-11 21:47:00.996639 IP (tos 0x0, ttl 254, id 52123, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7002 > 131.151.32.21.1799: rx challenge seq 0 ser 1 (44)
57 1999-11-11 21:47:00.996822 IP (tos 0x0, ttl 64, id 57974, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1799 > 131.151.1.59.7002: rx response seq 0 ser 2 (140)
58 1999-11-11 21:47:00.998994 IP (tos 0x0, ttl 254, id 52124, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: 32766 (36)
59 1999-11-11 21:47:01.000150 IP (tos 0x0, ttl 64, id 57975, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 3 pt call name-to-id "users.nneul" (292)
60 1999-11-11 21:47:01.001268 IP (tos 0x0, ttl 254, id 52125, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: 32766 (36)
61 1999-11-11 21:47:01.005342 IP (tos 0x0, ttl 64, id 57976, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 4 pt call id-to-name ids: <none!> (36)
62 1999-11-11 21:47:01.005915 IP (tos 0x0, ttl 254, id 52126, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name <none!> (32)
63 1999-11-11 21:47:01.006087 IP (tos 0x0, ttl 64, id 57977, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.21.1799 > 131.151.1.59.7002: rx ackall seq 0 ser 5 (28)
64 1999-11-11 21:47:01.219166 IP (tos 0x0, ttl 64, id 57978, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 0 ser 1612 first 2 serial 2521 reason delay (65)
65 1999-11-11 21:47:03.010034 IP (tos 0x0, ttl 64, id 57979, offset 0, flags [none], proto UDP (17), length 140)
131.151.32.21.7001 > 131.151.1.70.7000: rx data seq 1 ser 101 fs call give-cbs (112)
66 1999-11-11 21:47:03.011088 IP (tos 0x0, ttl 254, id 703, offset 0, flags [DF], proto UDP (17), length 56)
131.151.1.70.7000 > 131.151.32.21.7001: rx data seq 1 ser 55 (28)
67 1999-11-11 21:47:03.409140 IP (tos 0x0, ttl 64, id 57980, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.70.7000: rx ack seq 0 ser 102 first 2 serial 55 reason delay (65)
68 1999-11-11 21:47:05.869072 IP (tos 0x0, ttl 64, id 57981, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 1 pt call name-to-id "nneul" (292)
69 1999-11-11 21:47:05.869722 IP (tos 0x0, ttl 254, id 52127, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7002 > 131.151.32.21.1799: rx challenge seq 0 ser 1 (44)
70 1999-11-11 21:47:05.870422 IP (tos 0x0, ttl 64, id 57982, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1799 > 131.151.1.59.7002: rx response seq 0 ser 2 (140)
71 1999-11-11 21:47:05.872757 IP (tos 0x0, ttl 254, id 52128, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: 5879 (36)
72 1999-11-11 21:47:05.873149 IP (tos 0x0, ttl 64, id 57983, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 3 pt call name-to-id "nneul" (292)
73 1999-11-11 21:47:05.874355 IP (tos 0x0, ttl 254, id 52129, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: 5879 (36)
74 1999-11-11 21:47:05.874531 IP (tos 0x0, ttl 64, id 57984, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 4 pt call id-to-name ids: <none!> (36)
75 1999-11-11 21:47:05.875156 IP (tos 0x0, ttl 254, id 52130, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name <none!> (32)
76 1999-11-11 21:47:05.875335 IP (tos 0x0, ttl 64, id 57985, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 5 pt call list-entry id 5879 (36)
77 1999-11-11 21:47:05.877704 IP (tos 0x0, ttl 254, id 52131, offset 0, flags [DF], proto UDP (17), length 360)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (332)
78 1999-11-11 21:47:05.877925 IP (tos 0x0, ttl 64, id 57986, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 6 pt call id-to-name ids: -204 5113 (44)
79 1999-11-11 21:47:05.879692 IP (tos 0x0, ttl 254, id 52132, offset 0, flags [DF], proto UDP (17), length 572)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 6 pt reply id-to-name "system:administrators" "5113" (544)
80 1999-11-11 21:47:05.883080 IP (tos 0x0, ttl 64, id 57987, offset 0, flags [none], proto UDP (17), length 576)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 7 pt call name-to-id "nneul" "system:administrators" (548)
81 1999-11-11 21:47:05.884646 IP (tos 0x0, ttl 254, id 52133, offset 0, flags [DF], proto UDP (17), length 68)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 7 pt reply name-to-id ids: 5879 -204 (40)
82 1999-11-11 21:47:05.884950 IP (tos 0x0, ttl 64, id 57988, offset 0, flags [none], proto UDP (17), length 68)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 8 pt call same-mbr-of uid 5879 gid -204 (40)
83 1999-11-11 21:47:05.886482 IP (tos 0x0, ttl 254, id 52134, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 8 pt reply same-mbr-of (32)
84 1999-11-11 21:47:05.888922 IP (tos 0x0, ttl 64, id 57989, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.21.1799 > 131.151.1.59.7002: rx ackall seq 0 ser 9 (28)
85 1999-11-11 21:47:06.559070 IP (tos 0x0, ttl 254, id 52135, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 6 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
86 1999-11-11 21:47:06.559143 IP (tos 0xc0, ttl 255, id 57990, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52135, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 6 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
87 1999-11-11 21:47:08.697010 IP (tos 0x0, ttl 64, id 57991, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 1 pt call name-to-id "nneul" (292)
88 1999-11-11 21:47:08.697702 IP (tos 0x0, ttl 254, id 52136, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7002 > 131.151.32.21.1799: rx challenge seq 0 ser 1 (44)
89 1999-11-11 21:47:08.697886 IP (tos 0x0, ttl 64, id 57992, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1799 > 131.151.1.59.7002: rx response seq 0 ser 2 (140)
90 1999-11-11 21:47:08.700814 IP (tos 0x0, ttl 254, id 52137, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: 5879 (36)
91 1999-11-11 21:47:08.701061 IP (tos 0x0, ttl 64, id 57993, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 3 pt call name-to-id "nneul" (292)
92 1999-11-11 21:47:08.702243 IP (tos 0x0, ttl 254, id 52138, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: 5879 (36)
93 1999-11-11 21:47:08.702422 IP (tos 0x0, ttl 64, id 57994, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 4 pt call id-to-name ids: <none!> (36)
94 1999-11-11 21:47:08.703045 IP (tos 0x0, ttl 254, id 52139, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name <none!> (32)
95 1999-11-11 21:47:08.703345 IP (tos 0x0, ttl 64, id 57995, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 5 pt call list-elements id 5879 (36)
96 1999-11-11 21:47:08.705113 IP (tos 0x0, ttl 254, id 52140, offset 0, flags [DF], proto UDP (17), length 108)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (80)
97 1999-11-11 21:47:08.705296 IP (tos 0x0, ttl 64, id 57996, offset 0, flags [none], proto UDP (17), length 108)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 6 pt call id-to-name ids: -641 -569 -564 -478 -472 -441 -427 -424 -355 -348 -254 (80)
98 1999-11-11 21:47:08.738631 IP (tos 0x0, ttl 254, id 52141, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 6 pt reply id-to-name "nneul:cs301" "cc-staff" "obrennan:sysprog" "software" "bbc:mtw" [|pt] (1472)
99 1999-11-11 21:47:08.740294 IP (tos 0x0, ttl 254, id 52142, offset 0, flags [DF], proto UDP (17), length 1432)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 2 ser 7 (1404)
100 1999-11-11 21:47:08.740581 IP (tos 0x0, ttl 64, id 57997, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7002: rx ack seq 2 ser 7 first 2 serial 7 reason delay acked 2 (66)
101 1999-11-11 21:47:16.440550 IP (tos 0x0, ttl 254, id 52143, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 7 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
102 1999-11-11 21:47:16.440614 IP (tos 0xc0, ttl 255, id 57998, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52143, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 7 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
103 1999-11-11 21:47:22.963348 IP (tos 0x0, ttl 64, id 58000, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 1 pt call name-to-id "cc-staff" (292)
104 1999-11-11 21:47:22.964051 IP (tos 0x0, ttl 254, id 52144, offset 0, flags [DF], proto UDP (17), length 72)
131.151.1.59.7002 > 131.151.32.21.1799: rx challenge seq 0 ser 1 (44)
105 1999-11-11 21:47:22.964237 IP (tos 0x0, ttl 64, id 58001, offset 0, flags [none], proto UDP (17), length 168)
131.151.32.21.1799 > 131.151.1.59.7002: rx response seq 0 ser 2 (140)
106 1999-11-11 21:47:22.966418 IP (tos 0x0, ttl 254, id 52145, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: -569 (36)
107 1999-11-11 21:47:22.966644 IP (tos 0x0, ttl 64, id 58002, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 3 pt call name-to-id "cc-staff" (292)
108 1999-11-11 21:47:22.967810 IP (tos 0x0, ttl 254, id 52146, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: -569 (36)
109 1999-11-11 21:47:22.967987 IP (tos 0x0, ttl 64, id 58003, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 4 pt call id-to-name ids: <none!> (36)
110 1999-11-11 21:47:22.968556 IP (tos 0x0, ttl 254, id 52147, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name <none!> (32)
111 1999-11-11 21:47:22.969841 IP (tos 0x0, ttl 64, id 58004, offset 0, flags [none], proto UDP (17), length 64)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 5 pt call list-elements id -569 (36)
112 1999-11-11 21:47:22.971342 IP (tos 0x0, ttl 254, id 52148, offset 0, flags [DF], proto UDP (17), length 140)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (112)
113 1999-11-11 21:47:22.971544 IP (tos 0x0, ttl 64, id 58005, offset 0, flags [none], proto UDP (17), length 140)
131.151.32.21.1799 > 131.151.1.59.7002: rx data seq 1 ser 6 pt call id-to-name ids: 5002 5004 5013 5016 5021 5022 5150 5171 5195 5211 5220 5339 5408 5879 13081 17342 19999 20041 20176 (112)
114 1999-11-11 21:47:23.005534 IP (tos 0x0, ttl 254, id 52149, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 6 pt reply id-to-name "rms" "rwa" "uetrecht" "dwd" "kjh" [|pt] (1444)
115 1999-11-11 21:47:23.006602 IP (tos 0x0, ttl 254, id 52150, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 2 ser 7 (1444)
116 1999-11-11 21:47:23.007048 IP (tos 0x0, ttl 64, id 58006, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7002: rx ack seq 2 ser 7 first 2 serial 7 reason delay acked 2 (66)
117 1999-11-11 21:47:23.007745 IP (tos 0x0, ttl 254, id 52151, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 3 ser 8 (1444)
118 1999-11-11 21:47:23.008408 IP (tos 0x0, ttl 254, id 52152, offset 0, flags [DF], proto UDP (17), length 676)
131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 4 ser 9 (648)
119 1999-11-11 21:47:23.008550 IP (tos 0x0, ttl 64, id 58007, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7002: rx ack seq 4 ser 8 first 4 serial 9 reason delay acked 4 (66)
120 1999-11-11 21:47:26.569758 IP (tos 0x0, ttl 254, id 52153, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 8 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
121 1999-11-11 21:47:26.569822 IP (tos 0xc0, ttl 255, id 58008, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52153, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 8 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
122 1999-11-11 21:47:31.825501 IP (tos 0x0, ttl 64, id 58009, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1613 fs call fetch-status fid 536977399/16/15 (44)
123 1999-11-11 21:47:31.827985 IP (tos 0x0, ttl 254, id 572, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2522 fs reply fetch-status (148)
124 1999-11-11 21:47:31.829082 IP (tos 0x0, ttl 64, id 58010, offset 0, flags [none], proto UDP (17), length 80)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1614 fs call fetch-data fid 536977399/16/15 offset 0 length 65536 (52)
125 1999-11-11 21:47:31.872588 IP (tos 0x0, ttl 254, id 573, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2523 fs reply fetch-data (1472)
126 1999-11-11 21:47:31.873045 IP (tos 0x0, ttl 254, id 573, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
127 1999-11-11 21:47:31.873238 IP (tos 0x0, ttl 254, id 573, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
128 1999-11-11 21:47:31.873323 IP (tos 0x0, ttl 254, id 573, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
129 1999-11-11 21:47:31.874199 IP (tos 0x0, ttl 254, id 574, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 2 ser 2524 (1472)
130 1999-11-11 21:47:31.874320 IP (tos 0x0, ttl 254, id 574, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
131 1999-11-11 21:47:31.874444 IP (tos 0x0, ttl 254, id 574, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
132 1999-11-11 21:47:31.874527 IP (tos 0x0, ttl 254, id 574, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
133 1999-11-11 21:47:31.874656 IP (tos 0x0, ttl 64, id 58011, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 2 ser 1615 first 2 serial 2524 reason ack requested acked 2 (66)
134 1999-11-11 21:47:31.911711 IP (tos 0x0, ttl 254, id 575, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 3 ser 2525 (1472)
135 1999-11-11 21:47:31.911830 IP (tos 0x0, ttl 254, id 575, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
136 1999-11-11 21:47:31.911963 IP (tos 0x0, ttl 254, id 575, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
137 1999-11-11 21:47:31.912047 IP (tos 0x0, ttl 254, id 575, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
138 1999-11-11 21:47:31.912793 IP (tos 0x0, ttl 254, id 576, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 4 ser 2526 (1472)
139 1999-11-11 21:47:31.912917 IP (tos 0x0, ttl 254, id 576, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
140 1999-11-11 21:47:31.913050 IP (tos 0x0, ttl 254, id 576, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
141 1999-11-11 21:47:31.913123 IP (tos 0x0, ttl 254, id 576, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
142 1999-11-11 21:47:31.913290 IP (tos 0x0, ttl 64, id 58012, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 4 ser 1616 first 4 serial 2526 reason ack requested acked 4 (66)
143 1999-11-11 21:47:31.914161 IP (tos 0x0, ttl 254, id 577, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 5 ser 2527 (1472)
144 1999-11-11 21:47:31.914283 IP (tos 0x0, ttl 254, id 577, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
145 1999-11-11 21:47:31.914405 IP (tos 0x0, ttl 254, id 577, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
146 1999-11-11 21:47:31.914488 IP (tos 0x0, ttl 254, id 577, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
147 1999-11-11 21:47:31.915372 IP (tos 0x0, ttl 254, id 578, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 6 ser 2528 (1472)
148 1999-11-11 21:47:31.915494 IP (tos 0x0, ttl 254, id 578, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
149 1999-11-11 21:47:31.915618 IP (tos 0x0, ttl 254, id 578, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
150 1999-11-11 21:47:31.915702 IP (tos 0x0, ttl 254, id 578, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
151 1999-11-11 21:47:31.915835 IP (tos 0x0, ttl 64, id 58013, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 6 ser 1617 first 6 serial 2528 reason ack requested acked 6 (66)
152 1999-11-11 21:47:31.921854 IP (tos 0x0, ttl 254, id 579, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 7 ser 2529 (1472)
153 1999-11-11 21:47:31.921976 IP (tos 0x0, ttl 254, id 579, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
154 1999-11-11 21:47:31.922099 IP (tos 0x0, ttl 254, id 579, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
155 1999-11-11 21:47:31.922182 IP (tos 0x0, ttl 254, id 579, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
156 1999-11-11 21:47:31.923223 IP (tos 0x0, ttl 254, id 580, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 8 ser 2530 (1472)
157 1999-11-11 21:47:31.923347 IP (tos 0x0, ttl 254, id 580, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
158 1999-11-11 21:47:31.923470 IP (tos 0x0, ttl 254, id 580, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
159 1999-11-11 21:47:31.923553 IP (tos 0x0, ttl 254, id 580, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
160 1999-11-11 21:47:31.923698 IP (tos 0x0, ttl 64, id 58014, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 8 ser 1618 first 8 serial 2530 reason ack requested acked 8 (66)
161 1999-11-11 21:47:31.924962 IP (tos 0x0, ttl 254, id 581, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 9 ser 2531 (1472)
162 1999-11-11 21:47:31.925085 IP (tos 0x0, ttl 254, id 581, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
163 1999-11-11 21:47:31.925207 IP (tos 0x0, ttl 254, id 581, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
164 1999-11-11 21:47:31.925291 IP (tos 0x0, ttl 254, id 581, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
165 1999-11-11 21:47:31.926314 IP (tos 0x0, ttl 254, id 582, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 10 ser 2532 (1472)
166 1999-11-11 21:47:31.926436 IP (tos 0x0, ttl 254, id 582, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
167 1999-11-11 21:47:31.926560 IP (tos 0x0, ttl 254, id 582, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
168 1999-11-11 21:47:31.926641 IP (tos 0x0, ttl 254, id 582, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
169 1999-11-11 21:47:31.926761 IP (tos 0x0, ttl 64, id 58015, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 10 ser 1619 first 10 serial 2532 reason ack requested acked 10 (66)
170 1999-11-11 21:47:31.927670 IP (tos 0x0, ttl 254, id 583, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 11 ser 2533 (1472)
171 1999-11-11 21:47:31.927794 IP (tos 0x0, ttl 254, id 583, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
172 1999-11-11 21:47:31.927917 IP (tos 0x0, ttl 254, id 583, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
173 1999-11-11 21:47:31.927999 IP (tos 0x0, ttl 254, id 583, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
174 1999-11-11 21:47:31.928955 IP (tos 0x0, ttl 254, id 584, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 12 ser 2534 (1472)
175 1999-11-11 21:47:31.929070 IP (tos 0x0, ttl 254, id 584, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
176 1999-11-11 21:47:31.929090 IP (tos 0x0, ttl 254, id 584, offset 2960, flags [DF], proto UDP (17), length 452)
131.151.1.146 > 131.151.32.21: ip-proto-17
177 1999-11-11 21:47:31.929216 IP (tos 0x0, ttl 64, id 58016, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 12 ser 1620 first 12 serial 2534 reason delay acked 12 (66)
178 1999-11-11 21:47:31.931311 IP (tos 0x0, ttl 64, id 58017, offset 0, flags [none], proto UDP (17), length 80)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1621 fs call fetch-data fid 536977399/16/15 offset 131072 length 56972 (52)
179 1999-11-11 21:47:31.946920 IP (tos 0x0, ttl 254, id 585, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2535 fs reply fetch-data (1472)
180 1999-11-11 21:47:31.947042 IP (tos 0x0, ttl 254, id 585, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
181 1999-11-11 21:47:31.947179 IP (tos 0x0, ttl 254, id 585, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
182 1999-11-11 21:47:31.947258 IP (tos 0x0, ttl 254, id 585, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
183 1999-11-11 21:47:31.948245 IP (tos 0x0, ttl 254, id 586, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 2 ser 2536 (1472)
184 1999-11-11 21:47:31.948368 IP (tos 0x0, ttl 254, id 586, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
185 1999-11-11 21:47:31.948492 IP (tos 0x0, ttl 254, id 586, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
186 1999-11-11 21:47:31.948574 IP (tos 0x0, ttl 254, id 586, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
187 1999-11-11 21:47:31.948714 IP (tos 0x0, ttl 64, id 58018, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 2 ser 1622 first 2 serial 2536 reason ack requested acked 2 (66)
188 1999-11-11 21:47:31.949601 IP (tos 0x0, ttl 254, id 587, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 3 ser 2537 (1472)
189 1999-11-11 21:47:31.949715 IP (tos 0x0, ttl 254, id 587, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
190 1999-11-11 21:47:31.949838 IP (tos 0x0, ttl 254, id 587, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
191 1999-11-11 21:47:31.949921 IP (tos 0x0, ttl 254, id 587, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
192 1999-11-11 21:47:31.950714 IP (tos 0x0, ttl 254, id 588, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 4 ser 2538 (1472)
193 1999-11-11 21:47:31.950835 IP (tos 0x0, ttl 254, id 588, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
194 1999-11-11 21:47:31.950959 IP (tos 0x0, ttl 254, id 588, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
195 1999-11-11 21:47:31.951042 IP (tos 0x0, ttl 254, id 588, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
196 1999-11-11 21:47:31.951177 IP (tos 0x0, ttl 64, id 58019, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 4 ser 1623 first 4 serial 2538 reason ack requested acked 4 (66)
197 1999-11-11 21:47:31.952808 IP (tos 0x0, ttl 254, id 589, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 5 ser 2539 (1472)
198 1999-11-11 21:47:31.952930 IP (tos 0x0, ttl 254, id 589, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
199 1999-11-11 21:47:31.953063 IP (tos 0x0, ttl 254, id 589, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
200 1999-11-11 21:47:31.953145 IP (tos 0x0, ttl 254, id 589, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
201 1999-11-11 21:47:31.954021 IP (tos 0x0, ttl 254, id 590, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 6 ser 2540 (1472)
202 1999-11-11 21:47:31.954153 IP (tos 0x0, ttl 254, id 590, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
203 1999-11-11 21:47:31.954266 IP (tos 0x0, ttl 254, id 590, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
204 1999-11-11 21:47:31.954351 IP (tos 0x0, ttl 254, id 590, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
205 1999-11-11 21:47:31.954501 IP (tos 0x0, ttl 64, id 58020, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 6 ser 1624 first 6 serial 2540 reason ack requested acked 6 (66)
206 1999-11-11 21:47:31.955104 IP (tos 0x0, ttl 254, id 591, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 7 ser 2541 (1472)
207 1999-11-11 21:47:31.955226 IP (tos 0x0, ttl 254, id 591, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
208 1999-11-11 21:47:31.955349 IP (tos 0x0, ttl 254, id 591, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
209 1999-11-11 21:47:31.955433 IP (tos 0x0, ttl 254, id 591, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
210 1999-11-11 21:47:31.956561 IP (tos 0x0, ttl 254, id 592, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 8 ser 2542 (1472)
211 1999-11-11 21:47:31.956683 IP (tos 0x0, ttl 254, id 592, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
212 1999-11-11 21:47:31.956807 IP (tos 0x0, ttl 254, id 592, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
213 1999-11-11 21:47:31.956897 IP (tos 0x0, ttl 254, id 592, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
214 1999-11-11 21:47:31.957074 IP (tos 0x0, ttl 64, id 58021, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 8 ser 1625 first 8 serial 2542 reason ack requested acked 8 (66)
215 1999-11-11 21:47:31.958291 IP (tos 0x0, ttl 254, id 593, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 9 ser 2543 (1472)
216 1999-11-11 21:47:31.958413 IP (tos 0x0, ttl 254, id 593, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
217 1999-11-11 21:47:31.958536 IP (tos 0x0, ttl 254, id 593, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
218 1999-11-11 21:47:31.958620 IP (tos 0x0, ttl 254, id 593, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
219 1999-11-11 21:47:31.959648 IP (tos 0x0, ttl 254, id 594, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 10 ser 2544 (1472)
220 1999-11-11 21:47:31.959768 IP (tos 0x0, ttl 254, id 594, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
221 1999-11-11 21:47:31.959881 IP (tos 0x0, ttl 254, id 594, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
222 1999-11-11 21:47:31.959978 IP (tos 0x0, ttl 254, id 594, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
223 1999-11-11 21:47:31.959997 IP (tos 0x0, ttl 254, id 595, offset 0, flags [DF], proto UDP (17), length 512)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 11 ser 2545 (484)
224 1999-11-11 21:47:31.960153 IP (tos 0x0, ttl 64, id 58022, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 10 ser 1626 first 10 serial 2544 reason ack requested acked 10 (66)
225 1999-11-11 21:47:31.968719 IP (tos 0x0, ttl 64, id 58023, offset 0, flags [none], proto UDP (17), length 80)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1627 fs call fetch-data fid 536977399/16/15 offset 65536 length 65536 (52)
226 1999-11-11 21:47:31.973708 IP (tos 0x0, ttl 254, id 596, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2546 fs reply fetch-data (1472)
227 1999-11-11 21:47:31.973826 IP (tos 0x0, ttl 254, id 596, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
228 1999-11-11 21:47:31.973953 IP (tos 0x0, ttl 254, id 596, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
229 1999-11-11 21:47:31.974036 IP (tos 0x0, ttl 254, id 596, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
230 1999-11-11 21:47:31.975130 IP (tos 0x0, ttl 254, id 597, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 2 ser 2547 (1472)
231 1999-11-11 21:47:31.975251 IP (tos 0x0, ttl 254, id 597, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
232 1999-11-11 21:47:31.975374 IP (tos 0x0, ttl 254, id 597, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
233 1999-11-11 21:47:31.975457 IP (tos 0x0, ttl 254, id 597, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
234 1999-11-11 21:47:31.975644 IP (tos 0x0, ttl 64, id 58024, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 2 ser 1628 first 2 serial 2547 reason ack requested acked 2 (66)
235 1999-11-11 21:47:31.976494 IP (tos 0x0, ttl 254, id 598, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 3 ser 2548 (1472)
236 1999-11-11 21:47:31.976614 IP (tos 0x0, ttl 254, id 598, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
237 1999-11-11 21:47:31.976732 IP (tos 0x0, ttl 254, id 598, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
238 1999-11-11 21:47:31.976816 IP (tos 0x0, ttl 254, id 598, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
239 1999-11-11 21:47:31.977547 IP (tos 0x0, ttl 254, id 599, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 4 ser 2549 (1472)
240 1999-11-11 21:47:31.977658 IP (tos 0x0, ttl 254, id 599, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
241 1999-11-11 21:47:31.977781 IP (tos 0x0, ttl 254, id 599, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
242 1999-11-11 21:47:31.977865 IP (tos 0x0, ttl 254, id 599, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
243 1999-11-11 21:47:31.978006 IP (tos 0x0, ttl 64, id 58025, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 4 ser 1629 first 4 serial 2549 reason ack requested acked 4 (66)
244 1999-11-11 21:47:31.978903 IP (tos 0x0, ttl 254, id 600, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 5 ser 2550 (1472)
245 1999-11-11 21:47:31.979022 IP (tos 0x0, ttl 254, id 600, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
246 1999-11-11 21:47:31.979152 IP (tos 0x0, ttl 254, id 600, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
247 1999-11-11 21:47:31.979234 IP (tos 0x0, ttl 254, id 600, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
248 1999-11-11 21:47:31.980103 IP (tos 0x0, ttl 254, id 601, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 6 ser 2551 (1472)
249 1999-11-11 21:47:31.980225 IP (tos 0x0, ttl 254, id 601, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
250 1999-11-11 21:47:31.980348 IP (tos 0x0, ttl 254, id 601, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
251 1999-11-11 21:47:31.980442 IP (tos 0x0, ttl 254, id 601, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
252 1999-11-11 21:47:31.980584 IP (tos 0x0, ttl 64, id 58026, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 6 ser 1630 first 6 serial 2551 reason ack requested acked 6 (66)
253 1999-11-11 21:47:31.981466 IP (tos 0x0, ttl 254, id 602, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 7 ser 2552 (1472)
254 1999-11-11 21:47:31.981612 IP (tos 0x0, ttl 254, id 602, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
255 1999-11-11 21:47:31.981736 IP (tos 0x0, ttl 254, id 602, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
256 1999-11-11 21:47:31.981819 IP (tos 0x0, ttl 254, id 602, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
257 1999-11-11 21:47:31.982687 IP (tos 0x0, ttl 254, id 603, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 8 ser 2553 (1472)
258 1999-11-11 21:47:31.982809 IP (tos 0x0, ttl 254, id 603, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
259 1999-11-11 21:47:31.982931 IP (tos 0x0, ttl 254, id 603, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
260 1999-11-11 21:47:31.983013 IP (tos 0x0, ttl 254, id 603, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
261 1999-11-11 21:47:31.983173 IP (tos 0x0, ttl 64, id 58027, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 8 ser 1631 first 8 serial 2553 reason ack requested acked 8 (66)
262 1999-11-11 21:47:31.984600 IP (tos 0x0, ttl 254, id 604, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 9 ser 2554 (1472)
263 1999-11-11 21:47:31.984721 IP (tos 0x0, ttl 254, id 604, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
264 1999-11-11 21:47:31.984846 IP (tos 0x0, ttl 254, id 604, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
265 1999-11-11 21:47:31.984929 IP (tos 0x0, ttl 254, id 604, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
266 1999-11-11 21:47:31.985969 IP (tos 0x0, ttl 254, id 605, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 10 ser 2555 (1472)
267 1999-11-11 21:47:31.986089 IP (tos 0x0, ttl 254, id 605, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
268 1999-11-11 21:47:31.986212 IP (tos 0x0, ttl 254, id 605, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
269 1999-11-11 21:47:31.986306 IP (tos 0x0, ttl 254, id 605, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
270 1999-11-11 21:47:31.986455 IP (tos 0x0, ttl 64, id 58028, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 10 ser 1632 first 10 serial 2555 reason ack requested acked 10 (66)
271 1999-11-11 21:47:31.987315 IP (tos 0x0, ttl 254, id 606, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 11 ser 2556 (1472)
272 1999-11-11 21:47:31.987436 IP (tos 0x0, ttl 254, id 606, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
273 1999-11-11 21:47:31.987559 IP (tos 0x0, ttl 254, id 606, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
274 1999-11-11 21:47:31.987643 IP (tos 0x0, ttl 254, id 606, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
275 1999-11-11 21:47:31.988562 IP (tos 0x0, ttl 254, id 607, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 12 ser 2557 (1472)
276 1999-11-11 21:47:31.988678 IP (tos 0x0, ttl 254, id 607, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
277 1999-11-11 21:47:31.988696 IP (tos 0x0, ttl 254, id 607, offset 2960, flags [DF], proto UDP (17), length 452)
131.151.1.146 > 131.151.32.21: ip-proto-17
278 1999-11-11 21:47:31.989166 IP (tos 0x0, ttl 64, id 58029, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 12 ser 1633 first 12 serial 2557 reason delay acked 12 (66)
279 1999-11-11 21:47:36.960670 IP (tos 0x0, ttl 254, id 52154, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 9 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
280 1999-11-11 21:47:36.960736 IP (tos 0xc0, ttl 255, id 58030, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52154, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 9 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
281 1999-11-11 21:47:38.824245 IP (tos 0x0, ttl 254, id 3375, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7000 > 131.151.32.91.7001: rx data seq 1 ser 2314 cb call probe (32)
282 1999-11-11 21:47:38.832720 IP (tos 0x0, ttl 128, id 45396, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.59.7000: rx data seq 1 ser 1155 (28)
283 1999-11-11 21:47:38.832736 IP (tos 0x0, ttl 128, id 45396, offset 0, flags [none], proto UDP (17), length 56)
131.151.32.91.7001 > 131.151.1.59.7000: rx data seq 1 ser 1155 (28)
284 1999-11-11 21:47:39.340205 IP (tos 0x0, ttl 254, id 3376, offset 0, flags [DF], proto UDP (17), length 89)
131.151.1.59.7000 > 131.151.32.91.7001: rx ack seq 0 ser 2315 first 2 serial 1155 reason delay (61)
285 1999-11-11 21:47:47.600747 IP (tos 0x0, ttl 254, id 52155, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 10 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
286 1999-11-11 21:47:47.600817 IP (tos 0xc0, ttl 255, id 58039, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52155, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 10 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
287 1999-11-11 21:47:50.558379 IP (tos 0x0, ttl 64, id 58041, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1634 fs call fetch-status fid 536977399/30/22 (44)
288 1999-11-11 21:47:50.559765 IP (tos 0x0, ttl 254, id 608, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2558 fs reply fetch-status (148)
289 1999-11-11 21:47:50.560341 IP (tos 0x0, ttl 64, id 58042, offset 0, flags [none], proto UDP (17), length 80)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1635 fs call fetch-data fid 536977399/30/22 offset 0 length 65536 (52)
290 1999-11-11 21:47:50.586027 IP (tos 0x0, ttl 254, id 609, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2559 fs reply fetch-data (1472)
291 1999-11-11 21:47:50.586148 IP (tos 0x0, ttl 254, id 609, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
292 1999-11-11 21:47:50.586270 IP (tos 0x0, ttl 254, id 609, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
293 1999-11-11 21:47:50.586353 IP (tos 0x0, ttl 254, id 609, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
294 1999-11-11 21:47:50.598397 IP (tos 0x0, ttl 254, id 610, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 2 ser 2560 (1472)
295 1999-11-11 21:47:50.598517 IP (tos 0x0, ttl 254, id 610, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
296 1999-11-11 21:47:50.598641 IP (tos 0x0, ttl 254, id 610, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
297 1999-11-11 21:47:50.598723 IP (tos 0x0, ttl 254, id 610, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
298 1999-11-11 21:47:50.599028 IP (tos 0x0, ttl 64, id 58043, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 2 ser 1636 first 2 serial 2560 reason ack requested acked 2 (66)
299 1999-11-11 21:47:50.613313 IP (tos 0x0, ttl 254, id 611, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 3 ser 2561 (1472)
300 1999-11-11 21:47:50.613434 IP (tos 0x0, ttl 254, id 611, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
301 1999-11-11 21:47:50.613557 IP (tos 0x0, ttl 254, id 611, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
302 1999-11-11 21:47:50.613640 IP (tos 0x0, ttl 254, id 611, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
303 1999-11-11 21:47:50.614408 IP (tos 0x0, ttl 254, id 612, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 4 ser 2562 (1472)
304 1999-11-11 21:47:50.614529 IP (tos 0x0, ttl 254, id 612, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
305 1999-11-11 21:47:50.614653 IP (tos 0x0, ttl 254, id 612, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
306 1999-11-11 21:47:50.614736 IP (tos 0x0, ttl 254, id 612, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
307 1999-11-11 21:47:50.614884 IP (tos 0x0, ttl 64, id 58044, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 4 ser 1637 first 4 serial 2562 reason ack requested acked 4 (66)
308 1999-11-11 21:47:50.615759 IP (tos 0x0, ttl 254, id 613, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 5 ser 2563 (1472)
309 1999-11-11 21:47:50.615881 IP (tos 0x0, ttl 254, id 613, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
310 1999-11-11 21:47:50.616003 IP (tos 0x0, ttl 254, id 613, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
311 1999-11-11 21:47:50.616086 IP (tos 0x0, ttl 254, id 613, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
312 1999-11-11 21:47:50.617064 IP (tos 0x0, ttl 254, id 614, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 6 ser 2564 (1472)
313 1999-11-11 21:47:50.617195 IP (tos 0x0, ttl 254, id 614, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
314 1999-11-11 21:47:50.617309 IP (tos 0x0, ttl 254, id 614, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
315 1999-11-11 21:47:50.617392 IP (tos 0x0, ttl 254, id 614, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
316 1999-11-11 21:47:50.617571 IP (tos 0x0, ttl 64, id 58045, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 6 ser 1638 first 6 serial 2564 reason ack requested acked 6 (66)
317 1999-11-11 21:47:50.618132 IP (tos 0x0, ttl 254, id 615, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 7 ser 2565 (1472)
318 1999-11-11 21:47:50.618264 IP (tos 0x0, ttl 254, id 615, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
319 1999-11-11 21:47:50.618388 IP (tos 0x0, ttl 254, id 615, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
320 1999-11-11 21:47:50.618470 IP (tos 0x0, ttl 254, id 615, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
321 1999-11-11 21:47:50.619700 IP (tos 0x0, ttl 254, id 616, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 8 ser 2566 (1472)
322 1999-11-11 21:47:50.619811 IP (tos 0x0, ttl 254, id 616, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
323 1999-11-11 21:47:50.619936 IP (tos 0x0, ttl 254, id 616, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
324 1999-11-11 21:47:50.620017 IP (tos 0x0, ttl 254, id 616, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
325 1999-11-11 21:47:50.620153 IP (tos 0x0, ttl 64, id 58046, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 8 ser 1639 first 8 serial 2566 reason ack requested acked 8 (66)
326 1999-11-11 21:47:50.621466 IP (tos 0x0, ttl 254, id 617, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 9 ser 2567 (1472)
327 1999-11-11 21:47:50.621587 IP (tos 0x0, ttl 254, id 617, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
328 1999-11-11 21:47:50.621710 IP (tos 0x0, ttl 254, id 617, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
329 1999-11-11 21:47:50.621794 IP (tos 0x0, ttl 254, id 617, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
330 1999-11-11 21:47:50.622905 IP (tos 0x0, ttl 254, id 618, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 10 ser 2568 (1472)
331 1999-11-11 21:47:50.623020 IP (tos 0x0, ttl 254, id 618, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
332 1999-11-11 21:47:50.623158 IP (tos 0x0, ttl 254, id 618, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
333 1999-11-11 21:47:50.623227 IP (tos 0x0, ttl 254, id 618, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
334 1999-11-11 21:47:50.623423 IP (tos 0x0, ttl 64, id 58047, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 10 ser 1640 first 10 serial 2568 reason ack requested acked 10 (66)
335 1999-11-11 21:47:50.624233 IP (tos 0x0, ttl 254, id 619, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 11 ser 2569 (1472)
336 1999-11-11 21:47:50.624358 IP (tos 0x0, ttl 254, id 619, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
337 1999-11-11 21:47:50.624479 IP (tos 0x0, ttl 254, id 619, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
338 1999-11-11 21:47:50.624562 IP (tos 0x0, ttl 254, id 619, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
339 1999-11-11 21:47:50.625618 IP (tos 0x0, ttl 254, id 620, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 12 ser 2570 (1472)
340 1999-11-11 21:47:50.625734 IP (tos 0x0, ttl 254, id 620, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
341 1999-11-11 21:47:50.625753 IP (tos 0x0, ttl 254, id 620, offset 2960, flags [DF], proto UDP (17), length 452)
131.151.1.146 > 131.151.32.21: ip-proto-17
342 1999-11-11 21:47:50.625870 IP (tos 0x0, ttl 64, id 58048, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 12 ser 1641 first 12 serial 2570 reason delay acked 12 (66)
343 1999-11-11 21:47:50.627406 IP (tos 0x0, ttl 64, id 58049, offset 0, flags [none], proto UDP (17), length 80)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1642 fs call fetch-data fid 536977399/30/22 offset 65536 length 26996 (52)
344 1999-11-11 21:47:50.630017 IP (tos 0x0, ttl 254, id 621, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2571 fs reply fetch-data (1472)
345 1999-11-11 21:47:50.630141 IP (tos 0x0, ttl 254, id 621, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
346 1999-11-11 21:47:50.630263 IP (tos 0x0, ttl 254, id 621, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
347 1999-11-11 21:47:50.630347 IP (tos 0x0, ttl 254, id 621, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
348 1999-11-11 21:47:50.631301 IP (tos 0x0, ttl 254, id 622, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 2 ser 2572 (1472)
349 1999-11-11 21:47:50.631423 IP (tos 0x0, ttl 254, id 622, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
350 1999-11-11 21:47:50.631547 IP (tos 0x0, ttl 254, id 622, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
351 1999-11-11 21:47:50.631630 IP (tos 0x0, ttl 254, id 622, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
352 1999-11-11 21:47:50.631783 IP (tos 0x0, ttl 64, id 58050, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 2 ser 1643 first 2 serial 2572 reason ack requested acked 2 (66)
353 1999-11-11 21:47:50.633172 IP (tos 0x0, ttl 254, id 623, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 3 ser 2573 (1472)
354 1999-11-11 21:47:50.633294 IP (tos 0x0, ttl 254, id 623, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
355 1999-11-11 21:47:50.633417 IP (tos 0x0, ttl 254, id 623, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
356 1999-11-11 21:47:50.633500 IP (tos 0x0, ttl 254, id 623, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
357 1999-11-11 21:47:50.634225 IP (tos 0x0, ttl 254, id 624, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 4 ser 2574 (1472)
358 1999-11-11 21:47:50.634348 IP (tos 0x0, ttl 254, id 624, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
359 1999-11-11 21:47:50.634470 IP (tos 0x0, ttl 254, id 624, offset 2960, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
360 1999-11-11 21:47:50.634554 IP (tos 0x0, ttl 254, id 624, offset 4440, flags [DF], proto UDP (17), length 1280)
131.151.1.146 > 131.151.32.21: ip-proto-17
361 1999-11-11 21:47:50.634697 IP (tos 0x0, ttl 64, id 58051, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 4 ser 1644 first 4 serial 2574 reason ack requested acked 4 (66)
362 1999-11-11 21:47:50.635315 IP (tos 0x0, ttl 254, id 625, offset 0, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 5 ser 2575 (1472)
363 1999-11-11 21:47:50.635437 IP (tos 0x0, ttl 254, id 625, offset 1480, flags [+, DF], proto UDP (17), length 1500)
131.151.1.146 > 131.151.32.21: ip-proto-17
364 1999-11-11 21:47:50.635545 IP (tos 0x0, ttl 254, id 625, offset 2960, flags [DF], proto UDP (17), length 1440)
131.151.1.146 > 131.151.32.21: ip-proto-17
365 1999-11-11 21:47:50.635555 IP (tos 0x0, ttl 254, id 626, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 6 ser 2576 (148)
366 1999-11-11 21:47:50.635705 IP (tos 0x0, ttl 64, id 58052, offset 0, flags [none], proto UDP (17), length 95)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 6 ser 1645 first 5 serial 2576 reason delay acked 5-6 (67)
367 1999-11-11 21:47:53.906701 IP (tos 0x0, ttl 64, id 58053, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.146.7000: rx data seq 1 ser 1 fs call fetch-status fid 536977399/88/52 (44)
368 1999-11-11 21:47:53.946230 IP (tos 0x0, ttl 254, id 627, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 1 fs reply fetch-status (148)
369 1999-11-11 21:47:54.163340 IP (tos 0x0, ttl 64, id 58054, offset 0, flags [none], proto UDP (17), length 60)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 32
370 1999-11-11 21:47:54.338581 IP (tos 0x0, ttl 64, id 58055, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.146.7000: rx ack seq 0 ser 2 first 2 serial 1 reason delay (65)
371 1999-11-11 21:47:54.799371 IP (tos 0x0, ttl 254, id 52156, offset 0, flags [DF], proto UDP (17), length 89)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 61
372 1999-11-11 21:47:55.159236 IP (tos 0x0, ttl 254, id 52157, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 32
373 1999-11-11 21:47:55.165136 IP (tos 0x0, ttl 64, id 58056, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
374 1999-11-11 21:47:55.166071 IP (tos 0x0, ttl 254, id 52158, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
375 1999-11-11 21:47:55.166321 IP (tos 0x0, ttl 64, id 58057, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
376 1999-11-11 21:47:55.166447 IP (tos 0x0, ttl 64, id 58058, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
377 1999-11-11 21:47:55.199519 IP (tos 0x0, ttl 254, id 52159, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
378 1999-11-11 21:47:55.199686 IP (tos 0x0, ttl 64, id 58059, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
379 1999-11-11 21:47:55.199809 IP (tos 0x0, ttl 64, id 58060, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
380 1999-11-11 21:47:55.200825 IP (tos 0x0, ttl 254, id 52160, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
381 1999-11-11 21:47:55.200977 IP (tos 0x0, ttl 64, id 58061, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
382 1999-11-11 21:47:55.201325 IP (tos 0x0, ttl 64, id 58062, offset 0, flags [none], proto UDP (17), length 164)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 136
383 1999-11-11 21:47:55.202977 IP (tos 0x0, ttl 254, id 52161, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
384 1999-11-11 21:47:55.251632 IP (tos 0x0, ttl 254, id 52162, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1472
385 1999-11-11 21:47:55.252731 IP (tos 0x0, ttl 254, id 52163, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1472
386 1999-11-11 21:47:55.253147 IP (tos 0x0, ttl 64, id 58063, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
387 1999-11-11 21:47:55.253858 IP (tos 0x0, ttl 254, id 52164, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1472
388 1999-11-11 21:47:55.254848 IP (tos 0x0, ttl 254, id 52165, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1472
389 1999-11-11 21:47:55.255035 IP (tos 0x0, ttl 64, id 58064, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
390 1999-11-11 21:47:55.255955 IP (tos 0x0, ttl 254, id 52166, offset 0, flags [DF], proto UDP (17), length 1500)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1472
391 1999-11-11 21:47:55.257190 IP (tos 0x0, ttl 254, id 52167, offset 0, flags [DF], proto UDP (17), length 60)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 32
392 1999-11-11 21:47:55.257491 IP (tos 0x0, ttl 64, id 58065, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
393 1999-11-11 21:47:55.258405 IP (tos 0x0, ttl 254, id 52168, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
394 1999-11-11 21:47:55.262318 IP (tos 0x0, ttl 64, id 58066, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
395 1999-11-11 21:47:55.262601 IP (tos 0x0, ttl 64, id 58067, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
396 1999-11-11 21:47:55.263258 IP (tos 0x0, ttl 254, id 52169, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
397 1999-11-11 21:47:55.263401 IP (tos 0x0, ttl 64, id 58068, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
398 1999-11-11 21:47:55.263685 IP (tos 0x0, ttl 64, id 58069, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
399 1999-11-11 21:47:55.264640 IP (tos 0x0, ttl 254, id 52170, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
400 1999-11-11 21:47:55.264850 IP (tos 0x0, ttl 64, id 58070, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
401 1999-11-11 21:47:55.264965 IP (tos 0x0, ttl 64, id 58071, offset 0, flags [none], proto UDP (17), length 172)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 144
402 1999-11-11 21:47:55.267052 IP (tos 0x0, ttl 254, id 52171, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
403 1999-11-11 21:47:55.796405 IP (tos 0x0, ttl 254, id 52172, offset 0, flags [DF], proto UDP (17), length 89)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 61
404 1999-11-11 21:47:57.009474 IP (tos 0x0, ttl 64, id 58072, offset 0, flags [none], proto UDP (17), length 140)
131.151.32.21.7001 > 131.151.1.70.7000: rx data seq 1 ser 103 fs call give-cbs (112)
405 1999-11-11 21:47:57.010421 IP (tos 0x0, ttl 254, id 54693, offset 0, flags [DF], proto UDP (17), length 56)
131.151.1.70.7000 > 131.151.32.21.7001: rx data seq 1 ser 56 (28)
406 1999-11-11 21:47:57.340299 IP (tos 0x0, ttl 254, id 52173, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
407 1999-11-11 21:47:57.341607 IP (tos 0x0, ttl 254, id 52174, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
408 1999-11-11 21:47:57.341937 IP (tos 0x0, ttl 64, id 58073, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
409 1999-11-11 21:47:57.342924 IP (tos 0x0, ttl 254, id 52175, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
410 1999-11-11 21:47:57.344154 IP (tos 0x0, ttl 254, id 52176, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
411 1999-11-11 21:47:57.345387 IP (tos 0x0, ttl 254, id 52177, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
412 1999-11-11 21:47:57.345878 IP (tos 0x0, ttl 64, id 58074, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
413 1999-11-11 21:47:57.346737 IP (tos 0x0, ttl 254, id 52178, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
414 1999-11-11 21:47:57.346990 IP (tos 0x0, ttl 64, id 58075, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
415 1999-11-11 21:47:57.348062 IP (tos 0x0, ttl 254, id 52179, offset 0, flags [DF], proto UDP (17), length 132)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 104
416 1999-11-11 21:47:57.348264 IP (tos 0x0, ttl 64, id 58076, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
417 1999-11-11 21:47:57.408506 IP (tos 0x0, ttl 64, id 58077, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.70.7000: rx ack seq 0 ser 104 first 2 serial 56 reason delay (65)
418 1999-11-11 21:47:57.436536 IP (tos 0x0, ttl 254, id 52180, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
419 1999-11-11 21:47:57.438563 IP (tos 0x0, ttl 254, id 52181, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
420 1999-11-11 21:47:57.439547 IP (tos 0x0, ttl 64, id 58078, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
421 1999-11-11 21:47:57.440789 IP (tos 0x0, ttl 254, id 52182, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
422 1999-11-11 21:47:57.441114 IP (tos 0x0, ttl 64, id 58079, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
423 1999-11-11 21:47:57.460401 IP (tos 0x0, ttl 254, id 52183, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
424 1999-11-11 21:47:57.461517 IP (tos 0x0, ttl 254, id 52184, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
425 1999-11-11 21:47:57.461928 IP (tos 0x0, ttl 64, id 58080, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
426 1999-11-11 21:47:57.462859 IP (tos 0x0, ttl 254, id 52185, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
427 1999-11-11 21:47:57.463197 IP (tos 0x0, ttl 64, id 58081, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
428 1999-11-11 21:47:57.474817 IP (tos 0x0, ttl 254, id 52186, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
429 1999-11-11 21:47:57.475890 IP (tos 0x0, ttl 254, id 52187, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
430 1999-11-11 21:47:57.476056 IP (tos 0x0, ttl 64, id 58082, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
431 1999-11-11 21:47:57.477328 IP (tos 0x0, ttl 254, id 52188, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
432 1999-11-11 21:47:57.477777 IP (tos 0x0, ttl 64, id 58083, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
433 1999-11-11 21:47:57.487546 IP (tos 0x0, ttl 254, id 52189, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
434 1999-11-11 21:47:57.488558 IP (tos 0x0, ttl 254, id 52190, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
435 1999-11-11 21:47:57.489407 IP (tos 0x0, ttl 64, id 58084, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
436 1999-11-11 21:47:57.489821 IP (tos 0x0, ttl 254, id 52191, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
437 1999-11-11 21:47:57.490288 IP (tos 0x0, ttl 64, id 58085, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
438 1999-11-11 21:47:57.492785 IP (tos 0x0, ttl 254, id 52192, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
439 1999-11-11 21:47:57.493778 IP (tos 0x0, ttl 254, id 52193, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
440 1999-11-11 21:47:57.495046 IP (tos 0x0, ttl 254, id 52194, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
441 1999-11-11 21:47:57.497159 IP (tos 0x0, ttl 64, id 58086, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
442 1999-11-11 21:47:57.497606 IP (tos 0x0, ttl 64, id 58087, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
443 1999-11-11 21:47:57.514885 IP (tos 0x0, ttl 254, id 52195, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
444 1999-11-11 21:47:57.515935 IP (tos 0x0, ttl 254, id 52196, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
445 1999-11-11 21:47:57.516104 IP (tos 0x0, ttl 64, id 58088, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
446 1999-11-11 21:47:57.517280 IP (tos 0x0, ttl 254, id 52197, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
447 1999-11-11 21:47:57.517812 IP (tos 0x0, ttl 64, id 58089, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
448 1999-11-11 21:47:57.520085 IP (tos 0x0, ttl 254, id 52198, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
449 1999-11-11 21:47:57.521128 IP (tos 0x0, ttl 254, id 52199, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
450 1999-11-11 21:47:57.522427 IP (tos 0x0, ttl 254, id 52200, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
451 1999-11-11 21:47:57.530098 IP (tos 0x0, ttl 64, id 58090, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
452 1999-11-11 21:47:57.530654 IP (tos 0x0, ttl 64, id 58091, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
453 1999-11-11 21:47:57.533186 IP (tos 0x0, ttl 254, id 52201, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
454 1999-11-11 21:47:57.534230 IP (tos 0x0, ttl 254, id 52202, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
455 1999-11-11 21:47:57.534487 IP (tos 0x0, ttl 64, id 58092, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
456 1999-11-11 21:47:57.535724 IP (tos 0x0, ttl 254, id 52203, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
457 1999-11-11 21:47:57.540121 IP (tos 0x0, ttl 64, id 58093, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
458 1999-11-11 21:47:57.542840 IP (tos 0x0, ttl 254, id 52204, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
459 1999-11-11 21:47:57.544805 IP (tos 0x0, ttl 254, id 52205, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
460 1999-11-11 21:47:57.545061 IP (tos 0x0, ttl 64, id 58094, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
461 1999-11-11 21:47:57.547074 IP (tos 0x0, ttl 254, id 52206, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
462 1999-11-11 21:47:57.547384 IP (tos 0x0, ttl 64, id 58095, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
463 1999-11-11 21:47:57.549677 IP (tos 0x0, ttl 254, id 52207, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
464 1999-11-11 21:47:57.550730 IP (tos 0x0, ttl 254, id 52208, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
465 1999-11-11 21:47:57.550981 IP (tos 0x0, ttl 64, id 58096, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
466 1999-11-11 21:47:57.552136 IP (tos 0x0, ttl 254, id 52209, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
467 1999-11-11 21:47:57.552446 IP (tos 0x0, ttl 64, id 58097, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
468 1999-11-11 21:47:57.554703 IP (tos 0x0, ttl 254, id 52210, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
469 1999-11-11 21:47:57.555704 IP (tos 0x0, ttl 254, id 52211, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
470 1999-11-11 21:47:57.555872 IP (tos 0x0, ttl 64, id 58098, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
471 1999-11-11 21:47:57.557029 IP (tos 0x0, ttl 254, id 52212, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
472 1999-11-11 21:47:57.557342 IP (tos 0x0, ttl 64, id 58099, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
473 1999-11-11 21:47:57.559640 IP (tos 0x0, ttl 254, id 52213, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
474 1999-11-11 21:47:57.560653 IP (tos 0x0, ttl 254, id 52214, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
475 1999-11-11 21:47:57.560814 IP (tos 0x0, ttl 64, id 58100, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
476 1999-11-11 21:47:57.562026 IP (tos 0x0, ttl 254, id 52215, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
477 1999-11-11 21:47:57.562466 IP (tos 0x0, ttl 64, id 58101, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
478 1999-11-11 21:47:57.564746 IP (tos 0x0, ttl 254, id 52216, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
479 1999-11-11 21:47:57.565755 IP (tos 0x0, ttl 254, id 52217, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
480 1999-11-11 21:47:57.565920 IP (tos 0x0, ttl 64, id 58102, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
481 1999-11-11 21:47:57.567069 IP (tos 0x0, ttl 254, id 52218, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
482 1999-11-11 21:47:57.567593 IP (tos 0x0, ttl 64, id 58103, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
483 1999-11-11 21:47:57.569928 IP (tos 0x0, ttl 254, id 52219, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
484 1999-11-11 21:47:57.570928 IP (tos 0x0, ttl 254, id 52220, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
485 1999-11-11 21:47:57.571095 IP (tos 0x0, ttl 64, id 58104, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
486 1999-11-11 21:47:57.572322 IP (tos 0x0, ttl 254, id 52221, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
487 1999-11-11 21:47:57.572720 IP (tos 0x0, ttl 64, id 58105, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
488 1999-11-11 21:47:57.575003 IP (tos 0x0, ttl 254, id 52222, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
489 1999-11-11 21:47:57.576024 IP (tos 0x0, ttl 254, id 52223, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
490 1999-11-11 21:47:57.576388 IP (tos 0x0, ttl 64, id 58106, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
491 1999-11-11 21:47:57.577373 IP (tos 0x0, ttl 254, id 52224, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
492 1999-11-11 21:47:57.577724 IP (tos 0x0, ttl 64, id 58107, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
493 1999-11-11 21:47:57.580189 IP (tos 0x0, ttl 254, id 52225, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
494 1999-11-11 21:47:57.581306 IP (tos 0x0, ttl 254, id 52226, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
495 1999-11-11 21:47:57.581548 IP (tos 0x0, ttl 64, id 58108, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
496 1999-11-11 21:47:57.582806 IP (tos 0x0, ttl 254, id 52227, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
497 1999-11-11 21:47:57.583269 IP (tos 0x0, ttl 64, id 58109, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
498 1999-11-11 21:47:57.585922 IP (tos 0x0, ttl 254, id 52228, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
499 1999-11-11 21:47:57.587914 IP (tos 0x0, ttl 254, id 52229, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
500 1999-11-11 21:47:57.588147 IP (tos 0x0, ttl 64, id 58110, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
501 1999-11-11 21:47:57.590180 IP (tos 0x0, ttl 254, id 52230, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
502 1999-11-11 21:47:57.590496 IP (tos 0x0, ttl 64, id 58111, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
503 1999-11-11 21:47:57.593543 IP (tos 0x0, ttl 254, id 52231, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
504 1999-11-11 21:47:57.594586 IP (tos 0x0, ttl 254, id 52232, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
505 1999-11-11 21:47:57.594999 IP (tos 0x0, ttl 64, id 58112, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
506 1999-11-11 21:47:57.595945 IP (tos 0x0, ttl 254, id 52233, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
507 1999-11-11 21:47:57.596253 IP (tos 0x0, ttl 64, id 58113, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
508 1999-11-11 21:47:57.598753 IP (tos 0x0, ttl 254, id 52234, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
509 1999-11-11 21:47:57.599796 IP (tos 0x0, ttl 254, id 52235, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
510 1999-11-11 21:47:57.599958 IP (tos 0x0, ttl 64, id 58114, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
511 1999-11-11 21:47:57.601168 IP (tos 0x0, ttl 254, id 52236, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
512 1999-11-11 21:47:57.601637 IP (tos 0x0, ttl 64, id 58115, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
513 1999-11-11 21:47:57.609736 IP (tos 0x0, ttl 254, id 52237, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
514 1999-11-11 21:47:57.610744 IP (tos 0x0, ttl 254, id 52238, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
515 1999-11-11 21:47:57.610914 IP (tos 0x0, ttl 64, id 58116, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
516 1999-11-11 21:47:57.612128 IP (tos 0x0, ttl 254, id 52239, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
517 1999-11-11 21:47:57.612774 IP (tos 0x0, ttl 64, id 58117, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
518 1999-11-11 21:47:57.613784 IP (tos 0x0, ttl 254, id 52240, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
519 1999-11-11 21:47:57.613939 IP (tos 0x0, ttl 64, id 58118, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
520 1999-11-11 21:47:57.614059 IP (tos 0x0, ttl 64, id 58119, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
521 1999-11-11 21:47:57.615404 IP (tos 0x0, ttl 254, id 52241, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
522 1999-11-11 21:47:57.615552 IP (tos 0x0, ttl 64, id 58120, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
523 1999-11-11 21:47:57.615674 IP (tos 0x0, ttl 64, id 58121, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
524 1999-11-11 21:47:57.618644 IP (tos 0x0, ttl 254, id 52242, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
525 1999-11-11 21:47:57.623150 IP (tos 0x0, ttl 254, id 52243, offset 0, flags [DF], proto UDP (17), length 90)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 62
526 1999-11-11 21:47:57.623823 IP (tos 0x0, ttl 64, id 58122, offset 0, flags [none], proto UDP (17), length 1472)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 1444
527 1999-11-11 21:47:57.624002 IP (tos 0x0, ttl 64, id 58123, offset 0, flags [none], proto UDP (17), length 172)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 144
528 1999-11-11 21:47:57.682626 IP (tos 0x0, ttl 254, id 52244, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
529 1999-11-11 21:47:57.683198 IP (tos 0x0, ttl 254, id 52245, offset 0, flags [DF], proto UDP (17), length 792)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 764
530 1999-11-11 21:47:57.683616 IP (tos 0x0, ttl 64, id 58124, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
531 1999-11-11 21:47:57.683844 IP (tos 0x0, ttl 64, id 58125, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
532 1999-11-11 21:47:57.689047 IP (tos 0x0, ttl 254, id 52246, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
533 1999-11-11 21:47:57.728006 IP (tos 0x0, ttl 254, id 52247, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
534 1999-11-11 21:47:57.728199 IP (tos 0x0, ttl 64, id 58126, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
535 1999-11-11 21:47:57.771925 IP (tos 0x0, ttl 254, id 52248, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
536 1999-11-11 21:47:57.772583 IP (tos 0x0, ttl 64, id 58127, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
537 1999-11-11 21:47:57.776216 IP (tos 0x0, ttl 254, id 52249, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
538 1999-11-11 21:47:57.778379 IP (tos 0x0, ttl 254, id 52250, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
539 1999-11-11 21:47:57.780051 IP (tos 0x0, ttl 64, id 58128, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
540 1999-11-11 21:47:57.780898 IP (tos 0x0, ttl 254, id 52251, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
541 1999-11-11 21:47:57.781374 IP (tos 0x0, ttl 64, id 58129, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
542 1999-11-11 21:47:57.786649 IP (tos 0x0, ttl 254, id 52252, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
543 1999-11-11 21:47:57.787702 IP (tos 0x0, ttl 254, id 52253, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
544 1999-11-11 21:47:57.788103 IP (tos 0x0, ttl 64, id 58130, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
545 1999-11-11 21:47:57.789230 IP (tos 0x0, ttl 254, id 52254, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
546 1999-11-11 21:47:57.789699 IP (tos 0x0, ttl 64, id 58131, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
547 1999-11-11 21:47:57.792483 IP (tos 0x0, ttl 254, id 52255, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
548 1999-11-11 21:47:57.794457 IP (tos 0x0, ttl 254, id 52256, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
549 1999-11-11 21:47:57.794696 IP (tos 0x0, ttl 64, id 58132, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
550 1999-11-11 21:47:57.796695 IP (tos 0x0, ttl 254, id 52257, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
551 1999-11-11 21:47:57.797247 IP (tos 0x0, ttl 64, id 58133, offset 0, flags [none], proto UDP (17), length 88)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 60
552 1999-11-11 21:47:57.800461 IP (tos 0x0, ttl 254, id 52258, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
553 1999-11-11 21:47:57.802376 IP (tos 0x0, ttl 254, id 52259, offset 0, flags [DF], proto UDP (17), length 1472)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1444
554 1999-11-11 21:47:57.802546 IP (tos 0x0, ttl 64, id 58134, offset 0, flags [none], proto UDP (17), length 94)
131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 66
555 1999-11-11 21:47:57.803728 IP (tos 0x0, ttl 254, id 52260, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
556 1999-11-11 21:47:58.221671 IP (tos 0x0, ttl 254, id 52261, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
557 1999-11-11 21:47:58.221744 IP (tos 0xc0, ttl 255, id 58135, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52261, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
558 1999-11-11 21:47:58.501236 IP (tos 0x0, ttl 254, id 52262, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 11 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
559 1999-11-11 21:47:58.501301 IP (tos 0xc0, ttl 255, id 58136, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52262, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 11 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
560 1999-11-11 21:47:59.291588 IP (tos 0x0, ttl 254, id 52263, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
561 1999-11-11 21:47:59.291652 IP (tos 0xc0, ttl 255, id 58137, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52263, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
562 1999-11-11 21:48:00.871744 IP (tos 0x0, ttl 254, id 52264, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
563 1999-11-11 21:48:00.871814 IP (tos 0xc0, ttl 255, id 58155, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52264, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
564 1999-11-11 21:48:03.249685 IP (tos 0x0, ttl 64, id 58157, offset 0, flags [none], proto UDP (17), length 171)
131.151.32.21.1799 > 131.151.1.60.88: kerberos v5
565 1999-11-11 21:48:03.255469 IP (tos 0x0, ttl 254, id 57763, offset 0, flags [DF], proto UDP (17), length 512)
131.151.1.60.88 > 131.151.32.21.1799: kerberos v5
566 1999-11-11 21:48:03.283149 IP (tos 0x0, ttl 64, id 58158, offset 0, flags [none], proto UDP (17), length 72)
131.151.32.21.7001 > 131.151.1.60.7000: rx data seq 1 ser 1 fs call fetch-status fid 536870913/4/3 (44)
567 1999-11-11 21:48:03.284549 IP (tos 0x0, ttl 254, id 57764, offset 0, flags [DF], proto UDP (17), length 176)
131.151.1.60.7000 > 131.151.32.21.7001: rx data seq 1 ser 1 fs reply fetch-status (148)
568 1999-11-11 21:48:03.377621 IP (tos 0x0, ttl 64, id 58160, offset 0, flags [none], proto UDP (17), length 547)
131.151.32.21.1799 > 131.151.1.60.88: kerberos
569 1999-11-11 21:48:03.410404 IP (tos 0x0, ttl 254, id 57765, offset 0, flags [DF], proto UDP (17), length 466)
131.151.1.60.88 > 131.151.32.21.1799: kerberos
570 1999-11-11 21:48:03.413361 IP (tos 0x0, ttl 64, id 58162, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209
571 1999-11-11 21:48:03.413986 IP (tos 0x0, ttl 254, id 57766, offset 0, flags [DF], proto ICMP (1), length 112)
131.151.1.60 > 131.151.32.21: ICMP 131.151.1.60 udp port 4444 unreachable, length 92
IP (tos 0x0, ttl 63, id 58162, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209
572 1999-11-11 21:48:03.414378 IP (tos 0x0, ttl 64, id 58163, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209
573 1999-11-11 21:48:03.481783 IP (tos 0x0, ttl 254, id 52265, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
574 1999-11-11 21:48:03.481851 IP (tos 0xc0, ttl 255, id 58164, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52265, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
575 1999-11-11 21:48:03.678443 IP (tos 0x0, ttl 64, id 58165, offset 0, flags [none], proto UDP (17), length 93)
131.151.32.21.7001 > 131.151.1.60.7000: rx ack seq 0 ser 2 first 2 serial 1 reason delay (65)
576 1999-11-11 21:48:04.409193 IP (tos 0x0, ttl 64, id 58166, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209
577 1999-11-11 21:48:04.409495 IP (tos 0x0, ttl 254, id 57767, offset 0, flags [DF], proto ICMP (1), length 112)
131.151.1.60 > 131.151.32.21: ICMP 131.151.1.60 udp port 4444 unreachable, length 92
IP (tos 0x0, ttl 63, id 58166, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209
578 1999-11-11 21:48:04.409893 IP (tos 0x0, ttl 64, id 58167, offset 0, flags [none], proto UDP (17), length 237)
131.151.32.21.1799 > 131.151.1.146.4444: UDP, length 209
579 1999-11-11 21:48:04.414101 IP (tos 0x0, ttl 254, id 628, offset 0, flags [DF], proto UDP (17), length 1294)
131.151.1.146.4444 > 131.151.32.21.1799: UDP, length 1266
580 1999-11-11 21:48:04.426446 IP (tos 0x0, ttl 64, id 58168, offset 0, flags [none], proto UDP (17), length 320)
131.151.32.21.1799 > 131.151.1.146.7002: rx data seq 1 ser 1 pt call name-to-id "nneul" (292)
581 1999-11-11 21:48:04.449366 IP (tos 0x0, ttl 254, id 629, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 1 pt reply name-to-id ids: 5879 (36)
582 1999-11-11 21:48:06.833046 IP (tos 0x0, ttl 254, id 630, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: 5879 (36)
583 1999-11-11 21:48:06.833100 IP (tos 0xc0, ttl 255, id 58169, offset 0, flags [none], proto ICMP (1), length 92)
131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72
IP (tos 0x0, ttl 254, id 630, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 2 pt reply name-to-id ids: 5879 (36)
584 1999-11-11 21:48:08.131961 IP (tos 0x0, ttl 254, id 52266, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
585 1999-11-11 21:48:08.132033 IP (tos 0xc0, ttl 255, id 58170, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52266, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
586 1999-11-11 21:48:09.492664 IP (tos 0x0, ttl 254, id 631, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: 5879 (36)
587 1999-11-11 21:48:09.492716 IP (tos 0xc0, ttl 255, id 58171, offset 0, flags [none], proto ICMP (1), length 92)
131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72
IP (tos 0x0, ttl 254, id 631, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 3 pt reply name-to-id ids: 5879 (36)
588 1999-11-11 21:48:09.661704 IP (tos 0x0, ttl 254, id 52267, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 12 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
589 1999-11-11 21:48:09.661762 IP (tos 0xc0, ttl 255, id 58172, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52267, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 12 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
590 1999-11-11 21:48:12.662982 IP (tos 0x0, ttl 254, id 632, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply name-to-id ids: 5879 (36)
591 1999-11-11 21:48:12.663034 IP (tos 0xc0, ttl 255, id 58173, offset 0, flags [none], proto ICMP (1), length 92)
131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72
IP (tos 0x0, ttl 254, id 632, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply name-to-id ids: 5879 (36)
592 1999-11-11 21:48:16.863261 IP (tos 0x0, ttl 254, id 633, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply name-to-id ids: 5879 (36)
593 1999-11-11 21:48:16.863314 IP (tos 0xc0, ttl 255, id 58174, offset 0, flags [none], proto ICMP (1), length 92)
131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72
IP (tos 0x0, ttl 254, id 633, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply name-to-id ids: 5879 (36)
594 1999-11-11 21:48:16.882406 IP (tos 0x0, ttl 254, id 52268, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
595 1999-11-11 21:48:16.882456 IP (tos 0xc0, ttl 255, id 58175, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52268, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
596 1999-11-11 21:48:21.072280 IP (tos 0x0, ttl 254, id 52269, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 13 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
597 1999-11-11 21:48:21.072337 IP (tos 0xc0, ttl 255, id 58204, offset 0, flags [none], proto ICMP (1), length 468)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448
IP (tos 0x0, ttl 254, id 52269, offset 0, flags [DF], proto UDP (17), length 440)
131.151.1.59.7003 > 131.151.32.21.1792: rx data seq 1 ser 13 vldb reply get-entry-by-name "root.cell" numservers 6 servers 131.151.1.146 131.151.1.60 131.151.1.146 131.151.1.59 131.151.1.70 131.151.1.85 partitions a a a a a a rwvol 536870915 rovol 536870916 backup 536870917 (412)
598 1999-11-11 21:48:23.103590 IP (tos 0x0, ttl 254, id 634, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 6 pt reply name-to-id ids: 5879 (36)
599 1999-11-11 21:48:23.103644 IP (tos 0xc0, ttl 255, id 58206, offset 0, flags [none], proto ICMP (1), length 92)
131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72
IP (tos 0x0, ttl 254, id 634, offset 0, flags [DF], proto UDP (17), length 64)
131.151.1.146.7002 > 131.151.32.21.1799: rx data seq 1 ser 6 pt reply name-to-id ids: 5879 (36)
600 1999-11-11 21:48:25.892793 IP (tos 0x0, ttl 254, id 52270, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
601 1999-11-11 21:48:25.892866 IP (tos 0xc0, ttl 255, id 58207, offset 0, flags [none], proto ICMP (1), length 576)
131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556
IP (tos 0x0, ttl 254, id 52270, offset 0, flags [DF], proto UDP (17), length 1384)
131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356
|