From: Francois-Xavier Le Bail Date: Mon, 25 Mar 2019 15:18:10 +0000 (+0100) Subject: RX: Fix a data fetch X-Git-Tag: tcpdump-4.99-bp~881 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/4154778a262b4a7449141535a99da4d13b4c8b2e RX: Fix a data fetch The serviceId field is 2 bytes long, therefore use EXTRACT_BE_U_2 to fetch it. --- diff --git a/print-rx.c b/print-rx.c index 5e0315ef..b0aadac7 100644 --- a/print-rx.c +++ b/print-rx.c @@ -701,7 +701,7 @@ rx_cache_insert(netdissect_options *ndo, UNALIGNED_MEMCPY(&rxent->client, ip->ip_src, sizeof(uint32_t)); UNALIGNED_MEMCPY(&rxent->server, ip->ip_dst, sizeof(uint32_t)); rxent->dport = dport; - rxent->serviceId = EXTRACT_BE_U_4(rxh->serviceId); + rxent->serviceId = EXTRACT_BE_U_2(rxh->serviceId); rxent->opcode = EXTRACT_BE_U_4(bp + sizeof(struct rx_header)); } @@ -732,7 +732,7 @@ rx_cache_find(const struct rx_header *rxh, const struct ip *ip, u_int sport, if (rxent->callnum == EXTRACT_BE_U_4(rxh->callNumber) && rxent->client.s_addr == clip && rxent->server.s_addr == sip && - rxent->serviceId == EXTRACT_BE_U_4(rxh->serviceId) && + rxent->serviceId == EXTRACT_BE_U_2(rxh->serviceId) && rxent->dport == sport) { /* We got a match! */ diff --git a/tests/rx-v.out b/tests/rx-v.out index 0365b79a..5a357211 100644 --- a/tests/rx-v.out +++ b/tests/rx-v.out @@ -1,7 +1,7 @@ 1 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 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 (148) + 131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 347 fs reply fetch-status (148) 3 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 21:46:24.151512 IP (tos 0x0, ttl 64, id 57928, offset 0, flags [none], proto UDP (17), length 108) @@ -13,11 +13,11 @@ 7 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 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 (244) + 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 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 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 (148) + 131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 349 fs reply fetch-status (148) 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 21:46:24.781785 IP (tos 0x0, ttl 254, id 59868, offset 0, flags [DF], proto UDP (17), length 90) @@ -25,7 +25,7 @@ 13 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 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 (136) + 131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 350 fs reply rmdir (136) 15 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 21:46:38.681457 IP (tos 0x0, ttl 254, id 41909, offset 0, flags [DF], proto UDP (17), length 60) @@ -39,41 +39,41 @@ 20 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2519 fs reply fetch-status (148) 22 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 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 (412) + 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 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 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 (232) + 131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 351 fs reply symlink (232) 26 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 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 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 (412) + 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 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 (412) + 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 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 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 (136) + 131.151.1.59.7000 > 131.151.32.21.7001: rx data seq 1 ser 352 fs reply remove-file (136) 32 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 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 (412) + 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 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 (412) + 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 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2520 fs reply fetch-status (148) 37 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 21:46:56.519452 IP (tos 0x0, ttl 254, id 52116, offset 0, flags [DF], proto UDP (17), length 72) @@ -81,11 +81,11 @@ 39 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 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 (504) + 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 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 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 (504) + 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 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 21:46:56.637381 IP (tos 0x0, ttl 254, id 52119, offset 0, flags [DF], proto UDP (17), length 72) @@ -97,21 +97,21 @@ 47 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 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 (252) + 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 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 (412) + 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 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 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 (412) + 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 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 (412) + 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 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2521 fs reply fetch-status (148) 55 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 21:47:00.996639 IP (tos 0x0, ttl 254, id 52123, offset 0, flags [DF], proto UDP (17), length 72) @@ -119,15 +119,15 @@ 57 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 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 (36) + 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 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 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 (36) + 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 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: (36) 62 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 (32) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name (32) 63 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 21:47:01.219166 IP (tos 0x0, ttl 64, id 57978, offset 0, flags [none], proto UDP (17), length 93) @@ -145,39 +145,39 @@ 70 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 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 (36) + 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 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 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 (36) + 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 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: (36) 75 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 (32) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name (32) 76 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 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 (332) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (332) 78 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 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 (544) + 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 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 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 (40) + 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 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 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 (32) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 8 pt reply same-mbr-of (32) 84 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 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 (412) + 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 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 (412) + 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 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 21:47:08.697702 IP (tos 0x0, ttl 254, id 52136, offset 0, flags [DF], proto UDP (17), length 72) @@ -185,33 +185,33 @@ 89 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 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 (36) + 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 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 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 (36) + 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 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: (36) 94 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 (32) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name (32) 95 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 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 (80) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (80) 97 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 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 (1472) + 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 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 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 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 (412) + 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 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 (412) + 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 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 21:47:22.964051 IP (tos 0x0, ttl 254, id 52144, offset 0, flags [DF], proto UDP (17), length 72) @@ -219,23 +219,23 @@ 105 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 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 (36) + 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 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 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 (36) + 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 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: (36) 110 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 (32) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 4 pt reply id-to-name (32) 111 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 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 (112) + 131.151.1.59.7002 > 131.151.32.21.1799: rx data seq 1 ser 5 pt reply list-entry (112) 113 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 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 (1444) + 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 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 21:47:23.007048 IP (tos 0x0, ttl 64, id 58006, offset 0, flags [none], proto UDP (17), length 94) @@ -247,19 +247,19 @@ 119 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 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 (412) + 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 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 (412) + 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 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2522 fs reply fetch-status (148) 124 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 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 (1472) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2523 fs reply fetch-data (1472) 126 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 21:47:31.873238 IP (tos 0x0, ttl 254, id 573, offset 2960, flags [+, DF], proto UDP (17), length 1500) @@ -367,7 +367,7 @@ 178 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 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 (1472) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2535 fs reply fetch-data (1472) 180 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 21:47:31.947179 IP (tos 0x0, ttl 254, id 585, offset 2960, flags [+, DF], proto UDP (17), length 1500) @@ -461,7 +461,7 @@ 225 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 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 (1472) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2546 fs reply fetch-data (1472) 227 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 21:47:31.973953 IP (tos 0x0, ttl 254, id 596, offset 2960, flags [+, DF], proto UDP (17), length 1500) @@ -567,11 +567,11 @@ 278 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 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 (412) + 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 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 (412) + 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 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 21:47:38.832720 IP (tos 0x0, ttl 128, id 45396, offset 0, flags [none], proto UDP (17), length 56) @@ -581,19 +581,19 @@ 284 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 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 (412) + 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 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 (412) + 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 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2558 fs reply fetch-status (148) 289 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 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 (1472) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2559 fs reply fetch-data (1472) 291 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 21:47:50.586270 IP (tos 0x0, ttl 254, id 609, offset 2960, flags [+, DF], proto UDP (17), length 1500) @@ -701,7 +701,7 @@ 343 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 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 (1472) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 2571 fs reply fetch-data (1472) 345 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 21:47:50.630263 IP (tos 0x0, ttl 254, id 621, offset 2960, flags [+, DF], proto UDP (17), length 1500) @@ -749,7 +749,7 @@ 367 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 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 (148) + 131.151.1.146.7000 > 131.151.32.21.7001: rx data seq 1 ser 1 fs reply fetch-status (148) 369 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 21:47:54.338581 IP (tos 0x0, ttl 64, id 58055, offset 0, flags [none], proto UDP (17), length 93) @@ -1131,11 +1131,11 @@ 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 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 (412) + 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 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 (412) + 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 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 21:47:59.291652 IP (tos 0xc0, ttl 255, id 58137, offset 0, flags [none], proto ICMP (1), length 576) @@ -1155,7 +1155,7 @@ 566 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 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 (148) + 131.151.1.60.7000 > 131.151.32.21.7001: rx data seq 1 ser 1 fs reply fetch-status (148) 568 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: 569 21:48:03.410404 IP (tos 0x0, ttl 254, id 57765, offset 0, flags [DF], proto UDP (17), length 466) @@ -1189,13 +1189,13 @@ 580 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 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 (36) + 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 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 (36) + 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 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 (36) + 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 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 21:48:08.132033 IP (tos 0xc0, ttl 255, id 58170, offset 0, flags [none], proto ICMP (1), length 576) @@ -1203,29 +1203,29 @@ 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 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 (36) + 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 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 (36) + 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 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 (412) + 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 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 (412) + 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 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 (36) + 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 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 (36) + 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 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 (36) + 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 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 (36) + 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 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 21:48:16.882456 IP (tos 0xc0, ttl 255, id 58175, offset 0, flags [none], proto ICMP (1), length 576) @@ -1233,17 +1233,17 @@ 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 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 (412) + 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 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 (412) + 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 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 (36) + 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 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 (36) + 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 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 21:48:25.892866 IP (tos 0xc0, ttl 255, id 58207, offset 0, flags [none], proto ICMP (1), length 576) diff --git a/tests/rx.out b/tests/rx.out index e5b32b2a..fb44857e 100644 --- a/tests/rx.out +++ b/tests/rx.out @@ -1,65 +1,65 @@ 1 21:46:16.463334 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call fetch-status fid 536871098/846/1049757 (44) - 2 21:46:16.483206 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (148) + 2 21:46:16.483206 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 3 21:46:16.889677 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx ack first 2 serial 347 reason delay (65) 4 21:46:24.151512 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call makedir fid 536871098/1/1 "tmpdir" StoreStatus date 1999/11/11 21:46:24 group 0 mode 755 (80) 5 21:46:24.245048 IP 131.151.1.59.7000 > 131.151.32.91.7001: rx data cb call callback fid 536871098/1/1 (52) 6 21:46:24.255513 IP 131.151.32.91.7001 > 131.151.1.59.7000: rx data (28) 7 21:46:24.255528 IP 131.151.32.91.7001 > 131.151.1.59.7000: rx data (28) - 8 21:46:24.282365 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (244) + 8 21:46:24.282365 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply makedir new fid 536871098/677/1097448 (244) 9 21:46:24.283047 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call fetch-status fid 536871098/677/1097448 (44) - 10 21:46:24.284042 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (148) + 10 21:46:24.284042 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 11 21:46:24.679610 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx ack first 2 serial 349 reason delay (65) 12 21:46:24.781785 IP 131.151.1.59.7000 > 131.151.32.91.7001: rx ack first 1 serial 1154 reason delay acked 1 (62) 13 21:46:28.541035 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call rmdir fid 536871098/1/1 "tmpdir" (56) - 14 21:46:28.544636 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (136) + 14 21:46:28.544636 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply rmdir (136) 15 21:46:28.949547 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx ack first 2 serial 350 reason delay (65) 16 21:46:38.681457 IP 131.151.1.70.7000 > 131.151.32.91.7001: rx data cb call probe (32) 17 21:46:38.690316 IP 131.151.32.91.7001 > 131.151.1.70.7000: rx data (28) 18 21:46:38.690352 IP 131.151.32.91.7001 > 131.151.1.70.7000: rx data (28) 19 21:46:39.196737 IP 131.151.1.70.7000 > 131.151.32.91.7001: rx ack first 2 serial 656 reason delay (61) 20 21:46:48.590067 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/40/27 (44) - 21 21:46:48.619971 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 21 21:46:48.619971 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 22 21:46:48.810858 IP 131.151.32.21.1792 > 131.151.1.59.7003: rx data vldb call get-entry-by-name "root.cell" (48) - 23 21:46:48.812595 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 23 21:46:48.812595 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:48.813282 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call symlink fid 536871098/1/1 "rotcel" link to "#root.cell." (96) - 25 21:46:48.830808 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (232) + 25 21:46:48.830808 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply symlink (232) 26 21:46:49.029316 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 2 serial 2519 reason delay (65) 27 21:46:49.229306 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx ack first 2 serial 351 reason delay (65) - 28 21:46:51.218454 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 28 21:46:51.218454 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:51.218541 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 30 21:46:52.805338 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx data fs call remove-file fid 536871098/1/1 "rotcel" (56) - 31 21:46:52.810150 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data (136) + 31 21:46:52.810150 IP 131.151.1.59.7000 > 131.151.32.21.7001: rx data fs reply remove-file (136) 32 21:46:53.209266 IP 131.151.32.21.7001 > 131.151.1.59.7000: rx ack first 2 serial 352 reason delay (65) - 33 21:46:53.878655 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 33 21:46:53.878655 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:53.878718 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 35 21:46:56.242994 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/86/51 (44) - 36 21:46:56.245019 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 36 21:46:56.245019 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 37 21:46:56.518772 IP 131.151.32.21.1792 > 131.151.1.59.7003: rx data vldb call get-entry-by-name-n "users.nneul" (48) 38 21:46:56.519452 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx challenge (44) 39 21:46:56.523136 IP 131.151.32.21.1792 > 131.151.1.59.7003: rx response (140) - 40 21:46:56.525522 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (504) + 40 21:46:56.525522 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:56.525791 IP 131.151.32.21.1792 > 131.151.1.59.7003: rx data vldb call get-entry-by-id-n volid 536871098 (40) - 42 21:46:56.527259 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (504) + 42 21:46:56.527259 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:56.527629 IP 131.151.32.21.1792 > 131.151.1.59.7005: rx data vol call list-one-volume partid 1 volid 536871098 (40) 44 21:46:56.637381 IP 131.151.1.59.7005 > 131.151.32.21.1792: rx challenge (44) 45 21:46:56.637779 IP 131.151.32.21.1792 > 131.151.1.59.7005: rx response (140) 46 21:46:56.639215 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 2 serial 2520 reason delay (65) 47 21:46:56.920017 IP 131.151.32.21.1792 > 131.151.1.59.7003: rx ack first 2 serial 3 reason delay (65) - 48 21:46:57.036390 IP 131.151.1.59.7005 > 131.151.32.21.1792: rx data (252) - 49 21:46:57.048744 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 48 21:46:57.036390 IP 131.151.1.59.7005 > 131.151.32.21.1792: rx data vol reply list-one-volume name "users.nneul" volid 536871098 type (252) + 49 21:46:57.048744 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:46:57.061382 IP 131.151.32.21.1792 > 131.151.1.59.7005: rx ackall (28) - 51 21:47:00.778759 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 51 21:47:00.778759 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:00.778818 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 53 21:47:00.817967 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/14/14 (44) - 54 21:47:00.820615 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 54 21:47:00.820615 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 55 21:47:00.995692 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "users.nneul" (292) 56 21:47:00.996639 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx challenge (44) 57 21:47:00.996822 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx response (140) - 58 21:47:00.998994 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 58 21:47:00.998994 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 32766 (36) 59 21:47:01.000150 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "users.nneul" (292) - 60 21:47:01.001268 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 60 21:47:01.001268 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 32766 (36) 61 21:47:01.005342 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: (36) - 62 21:47:01.005915 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (32) + 62 21:47:01.005915 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name (32) 63 21:47:01.006087 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx ackall (28) 64 21:47:01.219166 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 2 serial 2521 reason delay (65) 65 21:47:03.010034 IP 131.151.32.21.7001 > 131.151.1.70.7000: rx data fs call give-cbs (112) @@ -68,61 +68,61 @@ 68 21:47:05.869072 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "nneul" (292) 69 21:47:05.869722 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx challenge (44) 70 21:47:05.870422 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx response (140) - 71 21:47:05.872757 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 71 21:47:05.872757 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 72 21:47:05.873149 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "nneul" (292) - 73 21:47:05.874355 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 73 21:47:05.874355 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 74 21:47:05.874531 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: (36) - 75 21:47:05.875156 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (32) + 75 21:47:05.875156 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name (32) 76 21:47:05.875335 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call list-entry id 5879 (36) - 77 21:47:05.877704 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (332) + 77 21:47:05.877704 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply list-entry (332) 78 21:47:05.877925 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: -204 5113 (44) - 79 21:47:05.879692 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (544) + 79 21:47:05.879692 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name "system:administrators" "5113" (544) 80 21:47:05.883080 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "nneul" "system:administrators" (548) - 81 21:47:05.884646 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (40) + 81 21:47:05.884646 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 -204 (40) 82 21:47:05.884950 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call same-mbr-of uid 5879 gid -204 (40) - 83 21:47:05.886482 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (32) + 83 21:47:05.886482 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply same-mbr-of (32) 84 21:47:05.888922 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx ackall (28) - 85 21:47:06.559070 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 85 21:47:06.559070 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:06.559143 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 87 21:47:08.697010 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "nneul" (292) 88 21:47:08.697702 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx challenge (44) 89 21:47:08.697886 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx response (140) - 90 21:47:08.700814 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 90 21:47:08.700814 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 91 21:47:08.701061 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "nneul" (292) - 92 21:47:08.702243 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 92 21:47:08.702243 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 93 21:47:08.702422 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: (36) - 94 21:47:08.703045 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (32) + 94 21:47:08.703045 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name (32) 95 21:47:08.703345 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call list-elements id 5879 (36) - 96 21:47:08.705113 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (80) + 96 21:47:08.705113 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply list-entry (80) 97 21:47:08.705296 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: -641 -569 -564 -478 -472 -441 -427 -424 -355 -348 -254 (80) - 98 21:47:08.738631 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (1472) + 98 21:47:08.738631 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name "nneul:cs301" "cc-staff" "obrennan:sysprog" "software" "bbc:mtw" [|pt] (1472) 99 21:47:08.740294 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (1404) 100 21:47:08.740581 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx ack first 2 serial 7 reason delay acked 2 (66) - 101 21:47:16.440550 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 101 21:47:16.440550 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:16.440614 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 103 21:47:22.963348 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "cc-staff" (292) 104 21:47:22.964051 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx challenge (44) 105 21:47:22.964237 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx response (140) - 106 21:47:22.966418 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 106 21:47:22.966418 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: -569 (36) 107 21:47:22.966644 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call name-to-id "cc-staff" (292) - 108 21:47:22.967810 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (36) + 108 21:47:22.967810 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: -569 (36) 109 21:47:22.967987 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call id-to-name ids: (36) - 110 21:47:22.968556 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (32) + 110 21:47:22.968556 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name (32) 111 21:47:22.969841 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data pt call list-elements id -569 (36) - 112 21:47:22.971342 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (112) + 112 21:47:22.971342 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply list-entry (112) 113 21:47:22.971544 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx data 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 21:47:23.005534 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (1444) + 114 21:47:23.005534 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data pt reply id-to-name "rms" "rwa" "uetrecht" "dwd" "kjh" [|pt] (1444) 115 21:47:23.006602 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (1444) 116 21:47:23.007048 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx ack first 2 serial 7 reason delay acked 2 (66) 117 21:47:23.007745 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (1444) 118 21:47:23.008408 IP 131.151.1.59.7002 > 131.151.32.21.1799: rx data (648) 119 21:47:23.008550 IP 131.151.32.21.1799 > 131.151.1.59.7002: rx ack first 4 serial 9 reason delay acked 4 (66) - 120 21:47:26.569758 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 120 21:47:26.569758 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:26.569822 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 122 21:47:31.825501 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/16/15 (44) - 123 21:47:31.827985 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 123 21:47:31.827985 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 124 21:47:31.829082 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-data fid 536977399/16/15 offset 0 length 65536 (52) - 125 21:47:31.872588 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (1472) + 125 21:47:31.872588 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-data (1472) 126 21:47:31.873045 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 127 21:47:31.873238 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 128 21:47:31.873323 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 @@ -176,7 +176,7 @@ 176 21:47:31.929090 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 177 21:47:31.929216 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 12 serial 2534 reason delay acked 12 (66) 178 21:47:31.931311 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-data fid 536977399/16/15 offset 131072 length 56972 (52) - 179 21:47:31.946920 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (1472) + 179 21:47:31.946920 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-data (1472) 180 21:47:31.947042 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 181 21:47:31.947179 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 182 21:47:31.947258 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 @@ -223,7 +223,7 @@ 223 21:47:31.959997 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (484) 224 21:47:31.960153 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 10 serial 2544 reason ack requested acked 10 (66) 225 21:47:31.968719 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-data fid 536977399/16/15 offset 65536 length 65536 (52) - 226 21:47:31.973708 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (1472) + 226 21:47:31.973708 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-data (1472) 227 21:47:31.973826 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 228 21:47:31.973953 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 229 21:47:31.974036 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 @@ -276,18 +276,18 @@ 276 21:47:31.988678 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 277 21:47:31.988696 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 278 21:47:31.989166 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 12 serial 2557 reason delay acked 12 (66) - 279 21:47:36.960670 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 279 21:47:36.960670 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:36.960736 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 281 21:47:38.824245 IP 131.151.1.59.7000 > 131.151.32.91.7001: rx data cb call probe (32) 282 21:47:38.832720 IP 131.151.32.91.7001 > 131.151.1.59.7000: rx data (28) 283 21:47:38.832736 IP 131.151.32.91.7001 > 131.151.1.59.7000: rx data (28) 284 21:47:39.340205 IP 131.151.1.59.7000 > 131.151.32.91.7001: rx ack first 2 serial 1155 reason delay (61) - 285 21:47:47.600747 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 285 21:47:47.600747 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:47.600817 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 287 21:47:50.558379 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/30/22 (44) - 288 21:47:50.559765 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 288 21:47:50.559765 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 289 21:47:50.560341 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-data fid 536977399/30/22 offset 0 length 65536 (52) - 290 21:47:50.586027 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (1472) + 290 21:47:50.586027 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-data (1472) 291 21:47:50.586148 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 292 21:47:50.586270 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 293 21:47:50.586353 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 @@ -341,7 +341,7 @@ 341 21:47:50.625753 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 342 21:47:50.625870 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 12 serial 2570 reason delay acked 12 (66) 343 21:47:50.627406 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-data fid 536977399/30/22 offset 65536 length 26996 (52) - 344 21:47:50.630017 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (1472) + 344 21:47:50.630017 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-data (1472) 345 21:47:50.630141 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 346 21:47:50.630263 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 347 21:47:50.630347 IP 131.151.1.146 > 131.151.32.21: ip-proto-17 @@ -365,7 +365,7 @@ 365 21:47:50.635555 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) 366 21:47:50.635705 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 5 serial 2576 reason delay acked 5-6 (67) 367 21:47:53.906701 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx data fs call fetch-status fid 536977399/88/52 (44) - 368 21:47:53.946230 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data (148) + 368 21:47:53.946230 IP 131.151.1.146.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 369 21:47:54.163340 IP 131.151.32.21.1799 > 131.151.1.59.7021: UDP, length 32 370 21:47:54.338581 IP 131.151.32.21.7001 > 131.151.1.146.7000: rx ack first 2 serial 1 reason delay (65) 371 21:47:54.799371 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 61 @@ -555,7 +555,7 @@ 555 21:47:57.803728 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 556 21:47:58.221671 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 557 21:47:58.221744 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556 - 558 21:47:58.501236 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 558 21:47:58.501236 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:47:58.501301 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 560 21:47:59.291588 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 561 21:47:59.291652 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556 @@ -564,7 +564,7 @@ 564 21:48:03.249685 IP 131.151.32.21.1799 > 131.151.1.60.88: v5 565 21:48:03.255469 IP 131.151.1.60.88 > 131.151.32.21.1799: v5 566 21:48:03.283149 IP 131.151.32.21.7001 > 131.151.1.60.7000: rx data fs call fetch-status fid 536870913/4/3 (44) - 567 21:48:03.284549 IP 131.151.1.60.7000 > 131.151.32.21.7001: rx data (148) + 567 21:48:03.284549 IP 131.151.1.60.7000 > 131.151.32.21.7001: rx data fs reply fetch-status (148) 568 21:48:03.377621 IP 131.151.32.21.1799 > 131.151.1.60.88: 569 21:48:03.410404 IP 131.151.1.60.88 > 131.151.32.21.1799: 570 21:48:03.413361 IP 131.151.32.21.1799 > 131.151.1.60.4444: UDP, length 209 @@ -578,24 +578,24 @@ 578 21:48:04.409893 IP 131.151.32.21.1799 > 131.151.1.146.4444: UDP, length 209 579 21:48:04.414101 IP 131.151.1.146.4444 > 131.151.32.21.1799: UDP, length 1266 580 21:48:04.426446 IP 131.151.32.21.1799 > 131.151.1.146.7002: rx data pt call name-to-id "nneul" (292) - 581 21:48:04.449366 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) - 582 21:48:06.833046 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) + 581 21:48:04.449366 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) + 582 21:48:06.833046 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 583 21:48:06.833100 IP 131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72 584 21:48:08.131961 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 585 21:48:08.132033 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556 - 586 21:48:09.492664 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) + 586 21:48:09.492664 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 587 21:48:09.492716 IP 131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72 - 588 21:48:09.661704 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 588 21:48:09.661704 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:48:09.661762 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 - 590 21:48:12.662982 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) + 590 21:48:12.662982 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 591 21:48:12.663034 IP 131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72 - 592 21:48:16.863261 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) + 592 21:48:16.863261 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 593 21:48:16.863314 IP 131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72 594 21:48:16.882406 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 595 21:48:16.882456 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556 - 596 21:48:21.072280 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data (412) + 596 21:48:21.072280 IP 131.151.1.59.7003 > 131.151.32.21.1792: rx data 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 21:48:21.072337 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1792 unreachable, length 448 - 598 21:48:23.103590 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data (36) + 598 21:48:23.103590 IP 131.151.1.146.7002 > 131.151.32.21.1799: rx data pt reply name-to-id ids: 5879 (36) 599 21:48:23.103644 IP 131.151.32.21 > 131.151.1.146: ICMP 131.151.32.21 udp port 1799 unreachable, length 72 600 21:48:25.892793 IP 131.151.1.59.7021 > 131.151.32.21.1799: UDP, length 1356 601 21:48:25.892866 IP 131.151.32.21 > 131.151.1.59: ICMP 131.151.32.21 udp port 1799 unreachable, length 556