START sys/net/pair 2025-03-26T04:53:29Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.039 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.039/0.039/0.039/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.045 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 507734136 4061.873 100.00% Conn: 1 Mbps: 4061.873 Peak Mbps: 4061.873 Avg Mbps: 4061.873 2000 506168380 4053.400 100.00% Conn: 1 Mbps: 4053.400 Peak Mbps: 4061.873 Avg Mbps: 4053.400 3000 507034712 4056.278 100.00% Conn: 1 Mbps: 4056.278 Peak Mbps: 4061.873 Avg Mbps: 4056.278 4000 506772428 4054.179 100.00% Conn: 1 Mbps: 4054.179 Peak Mbps: 4061.873 Avg Mbps: 4054.179 5000 507606968 4060.856 100.00% Conn: 1 Mbps: 4060.856 Peak Mbps: 4061.873 Avg Mbps: 4060.856 --- 169.254.1.11 tcpbench statistics --- 3043154084 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4053.400/4057.317/4061.873/3.451 Mbps ==== run-tcpbench6-1-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1000 507257224 4058.058 100.00% Conn: 1 Mbps: 4058.058 Peak Mbps: 4058.058 Avg Mbps: 4058.058 2000 505148376 4045.232 100.00% Conn: 1 Mbps: 4045.232 Peak Mbps: 4058.058 Avg Mbps: 4045.232 3000 505299008 4042.392 100.00% Conn: 1 Mbps: 4042.392 Peak Mbps: 4058.058 Avg Mbps: 4042.392 4000 505148376 4041.187 100.00% Conn: 1 Mbps: 4041.187 Peak Mbps: 4058.058 Avg Mbps: 4041.187 5000 504664768 4037.318 100.00% Conn: 1 Mbps: 4037.318 Peak Mbps: 4058.058 Avg Mbps: 4037.318 --- fc00:0:0:1::11 tcpbench statistics --- 3032190448 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4037.318/4044.837/4058.058/7.082 Mbps ==== run-ping-1-2 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.090 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.090/0.090/0.090/0.000 ms ==== run-ping6-1-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.124 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.124/0.124/0.124/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1001 270154232 2159.075 100.00% Conn: 1 Mbps: 2159.075 Peak Mbps: 2159.075 Avg Mbps: 2159.075 2002 283538496 2266.042 100.00% Conn: 1 Mbps: 2266.042 Peak Mbps: 2266.042 Avg Mbps: 2266.042 3003 285768688 2286.150 100.00% Conn: 1 Mbps: 2286.150 Peak Mbps: 2286.150 Avg Mbps: 2286.150 4004 289506248 2316.050 100.00% Conn: 1 Mbps: 2316.050 Peak Mbps: 2316.050 Avg Mbps: 2316.050 5005 290200736 2321.606 100.00% Conn: 1 Mbps: 2321.606 Peak Mbps: 2321.606 Avg Mbps: 2321.606 --- 169.254.1.12 tcpbench statistics --- 1708546048 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2159.075/2269.784/2321.606/58.931 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1000 255498828 2043.991 100.00% Conn: 1 Mbps: 2043.991 Peak Mbps: 2043.991 Avg Mbps: 2043.991 2001 271179456 2169.436 100.00% Conn: 1 Mbps: 2169.436 Peak Mbps: 2169.436 Avg Mbps: 2169.436 3002 275755476 2206.044 100.00% Conn: 1 Mbps: 2206.044 Peak Mbps: 2206.044 Avg Mbps: 2206.044 4001 274198348 2195.783 100.00% Conn: 1 Mbps: 2195.783 Peak Mbps: 2206.044 Avg Mbps: 2195.783 5002 274306000 2194.448 100.00% Conn: 1 Mbps: 2194.448 Peak Mbps: 2206.044 Avg Mbps: 2194.448 --- fc00:0:0:1::12 tcpbench statistics --- 1626445960 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2043.991/2161.940/2206.044/60.192 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.074 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.074/0.074/0.074/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.074 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.074/0.074/0.074/0.000 ms ==== run-tcpbench-1-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 573288120 4586.305 100.00% Conn: 1 Mbps: 4586.305 Peak Mbps: 4586.305 Avg Mbps: 4586.305 2000 577418560 4619.348 100.00% Conn: 1 Mbps: 4619.348 Peak Mbps: 4619.348 Avg Mbps: 4619.348 3000 577700380 4621.603 100.00% Conn: 1 Mbps: 4621.603 Peak Mbps: 4621.603 Avg Mbps: 4621.603 4000 541512856 4336.439 100.00% Conn: 1 Mbps: 4336.439 Peak Mbps: 4621.603 Avg Mbps: 4336.439 5000 539557508 4316.460 100.00% Conn: 1 Mbps: 4316.460 Peak Mbps: 4621.603 Avg Mbps: 4316.460 --- 169.254.0.13 tcpbench statistics --- 3347652400 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4316.460/4496.031/4621.603/139.169 Mbps ==== run-tcpbench6-1-3 ==== rm -f nc.log nc -6 -v -l -V 13 fc00::13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00::13 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00::13 elapsed_ms bytes mbps bwidth 1000 609305536 4874.444 100.00% Conn: 1 Mbps: 4874.444 Peak Mbps: 4874.444 Avg Mbps: 4874.444 2000 645616040 5170.098 100.00% Conn: 1 Mbps: 5170.098 Peak Mbps: 5170.098 Avg Mbps: 5170.098 3000 643039312 5144.314 100.00% Conn: 1 Mbps: 5144.314 Peak Mbps: 5170.098 Avg Mbps: 5144.314 4000 644722776 5162.945 100.00% Conn: 1 Mbps: 5162.945 Peak Mbps: 5170.098 Avg Mbps: 5162.945 5000 651773624 5214.189 100.00% Conn: 1 Mbps: 5214.189 Peak Mbps: 5214.189 Avg Mbps: 5214.189 --- fc00::13 tcpbench statistics --- 3836049544 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4874.444/5113.198/5214.189/121.559 Mbps ==== run-ping-2-1 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.060 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.060/0.060/0.060/0.000 ms ==== run-ping6-2-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.054 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.054/0.054/0.054/0.000 ms ==== run-tcpbench-2-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 273678168 2187.238 100.00% Conn: 1 Mbps: 2187.238 Peak Mbps: 2187.238 Avg Mbps: 2187.238 2001 285847320 2286.779 100.00% Conn: 1 Mbps: 2286.779 Peak Mbps: 2286.779 Avg Mbps: 2286.779 3002 285757320 2286.059 100.00% Conn: 1 Mbps: 2286.059 Peak Mbps: 2286.779 Avg Mbps: 2286.059 4001 286301376 2292.704 100.00% Conn: 1 Mbps: 2292.704 Peak Mbps: 2292.704 Avg Mbps: 2292.704 5002 288133216 2305.066 100.00% Conn: 1 Mbps: 2305.066 Peak Mbps: 2305.066 Avg Mbps: 2305.066 --- 169.254.1.11 tcpbench statistics --- 1707003416 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2187.238/2271.569/2305.066/42.712 Mbps ==== run-tcpbench6-2-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1001 259703256 2075.550 100.00% Conn: 1 Mbps: 2075.550 Peak Mbps: 2075.550 Avg Mbps: 2075.550 2002 270548520 2164.388 100.00% Conn: 1 Mbps: 2164.388 Peak Mbps: 2164.388 Avg Mbps: 2164.388 3000 271091076 2173.075 100.00% Conn: 1 Mbps: 2173.075 Peak Mbps: 2173.075 Avg Mbps: 2173.075 4002 275882936 2204.859 100.00% Conn: 1 Mbps: 2204.859 Peak Mbps: 2204.859 Avg Mbps: 2204.859 5004 275987320 2205.693 100.00% Conn: 1 Mbps: 2205.693 Peak Mbps: 2205.693 Avg Mbps: 2205.693 --- fc00:0:0:1::11 tcpbench statistics --- 1627569144 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2075.550/2164.713/2205.693/47.563 Mbps ==== run-ping-2-2 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.040 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.040/0.040/0.040/0.000 ms ==== run-ping6-2-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.057 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.057/0.057/0.057/0.000 ms ==== run-tcpbench-2-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 512613720 4100.910 100.00% Conn: 1 Mbps: 4100.910 Peak Mbps: 4100.910 Avg Mbps: 4100.910 2000 511524824 4096.295 100.00% Conn: 1 Mbps: 4096.295 Peak Mbps: 4100.910 Avg Mbps: 4096.295 3000 511330792 4090.646 100.00% Conn: 1 Mbps: 4090.646 Peak Mbps: 4100.910 Avg Mbps: 4090.646 4000 513426048 4107.408 100.00% Conn: 1 Mbps: 4107.408 Peak Mbps: 4107.408 Avg Mbps: 4107.408 5000 512505120 4100.041 100.00% Conn: 1 Mbps: 4100.041 Peak Mbps: 4107.408 Avg Mbps: 4100.041 --- 169.254.1.12 tcpbench statistics --- 3074432696 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4090.646/4099.060/4107.408/5.523 Mbps ==== run-tcpbench6-2-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1000 515173848 4121.391 100.00% Conn: 1 Mbps: 4121.391 Peak Mbps: 4121.391 Avg Mbps: 4121.391 2000 513537360 4112.411 100.00% Conn: 1 Mbps: 4112.411 Peak Mbps: 4121.391 Avg Mbps: 4112.411 3000 514309908 4114.479 100.00% Conn: 1 Mbps: 4114.479 Peak Mbps: 4121.391 Avg Mbps: 4114.479 4000 513818676 4110.549 100.00% Conn: 1 Mbps: 4110.549 Peak Mbps: 4121.391 Avg Mbps: 4110.549 5000 513723000 4109.784 100.00% Conn: 1 Mbps: 4109.784 Peak Mbps: 4121.391 Avg Mbps: 4109.784 --- fc00:0:0:1::12 tcpbench statistics --- 3084084444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4109.784/4113.723/4121.391/4.164 Mbps ==== run-ping-2-3 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.056 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.056/0.056/0.056/0.000 ms ==== run-ping6-2-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.052 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.052/0.052/0.052/0.000 ms ==== run-tcpbench-2-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 767128570 6137.029 100.00% Conn: 1 Mbps: 6137.029 Peak Mbps: 6137.029 Avg Mbps: 6137.029 2000 768498840 6154.145 100.00% Conn: 1 Mbps: 6154.145 Peak Mbps: 6154.145 Avg Mbps: 6154.145 3000 768269828 6146.159 100.00% Conn: 1 Mbps: 6146.159 Peak Mbps: 6154.145 Avg Mbps: 6146.159 4000 768073532 6144.588 100.00% Conn: 1 Mbps: 6144.588 Peak Mbps: 6154.145 Avg Mbps: 6144.588 5000 767092052 6136.736 100.00% Conn: 1 Mbps: 6136.736 Peak Mbps: 6154.145 Avg Mbps: 6136.736 --- 169.254.0.13 tcpbench statistics --- 4605582344 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6136.736/6143.731/6154.145/6.464 Mbps ==== run-tcpbench6-2-3 ==== rm -f nc.log nc -6 -v -l -V 13 fc00::13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00::13 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00::13 elapsed_ms bytes mbps bwidth 1000 730255004 5842.040 100.00% Conn: 1 Mbps: 5842.040 Peak Mbps: 5842.040 Avg Mbps: 5842.040 2000 737065928 5902.430 100.00% Conn: 1 Mbps: 5902.430 Peak Mbps: 5902.430 Avg Mbps: 5902.430 3000 735594608 5884.757 100.00% Conn: 1 Mbps: 5884.757 Peak Mbps: 5902.430 Avg Mbps: 5884.757 4000 737948720 5903.590 100.00% Conn: 1 Mbps: 5903.590 Peak Mbps: 5903.590 Avg Mbps: 5903.590 5000 736477400 5891.819 100.00% Conn: 1 Mbps: 5891.819 Peak Mbps: 5903.590 Avg Mbps: 5891.819 --- fc00::13 tcpbench statistics --- 4414505676 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5842.040/5884.927/5903.590/22.545 Mbps ==== run-ping-3-1 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.050 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-ping6-3-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.059 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.059/0.059/0.059/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 278465648 2227.725 100.00% Conn: 1 Mbps: 2227.725 Peak Mbps: 2227.725 Avg Mbps: 2227.725 2001 284824088 2278.593 100.00% Conn: 1 Mbps: 2278.593 Peak Mbps: 2278.593 Avg Mbps: 2278.593 3003 284116808 2270.664 100.00% Conn: 1 Mbps: 2270.664 Peak Mbps: 2278.593 Avg Mbps: 2270.664 4002 281369768 2253.211 100.00% Conn: 1 Mbps: 2253.211 Peak Mbps: 2278.593 Avg Mbps: 2253.211 5003 283095280 2264.762 100.00% Conn: 1 Mbps: 2264.762 Peak Mbps: 2278.593 Avg Mbps: 2264.762 --- 169.254.1.11 tcpbench statistics --- 1695426008 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2227.725/2258.991/2278.593/17.690 Mbps # path MTU discovery must create a dynamic route /sbin/route -T 13 -n get -host -inet 169.254.1.11 | grep DYNAMIC flags: ==== run-tcpbench6-3-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 13 -b fc00::13 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1000 537230592 4297.845 100.00% Conn: 1 Mbps: 4297.845 Peak Mbps: 4297.845 Avg Mbps: 4297.845 2000 601528352 4812.227 100.00% Conn: 1 Mbps: 4812.227 Peak Mbps: 4812.227 Avg Mbps: 4812.227 3001 607036080 4856.289 100.00% Conn: 1 Mbps: 4856.289 Peak Mbps: 4856.289 Avg Mbps: 4856.289 4001 599289640 4794.317 100.00% Conn: 1 Mbps: 4794.317 Peak Mbps: 4856.289 Avg Mbps: 4794.317 5001 602415848 4819.327 100.00% Conn: 1 Mbps: 4819.327 Peak Mbps: 4856.289 Avg Mbps: 4819.327 --- fc00:0:0:1::11 tcpbench statistics --- 3547914016 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4297.845/4716.001/4856.289/210.050 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.048 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.060 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.060/0.060/0.060/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 757890318 6063.123 100.00% Conn: 1 Mbps: 6063.123 Peak Mbps: 6063.123 Avg Mbps: 6063.123 2000 761006876 6094.149 100.00% Conn: 1 Mbps: 6094.149 Peak Mbps: 6094.149 Avg Mbps: 6094.149 3000 762838972 6102.712 100.00% Conn: 1 Mbps: 6102.712 Peak Mbps: 6102.712 Avg Mbps: 6102.712 4000 759174780 6073.398 100.00% Conn: 1 Mbps: 6073.398 Peak Mbps: 6102.712 Avg Mbps: 6073.398 5000 759665520 6077.324 100.00% Conn: 1 Mbps: 6077.324 Peak Mbps: 6102.712 Avg Mbps: 6077.324 --- 169.254.1.12 tcpbench statistics --- 4564135190 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6063.123/6082.141/6102.712/14.344 Mbps ==== run-tcpbench6-3-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 13 -b fc00::13 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1000 741032260 5928.258 100.00% Conn: 1 Mbps: 5928.258 Peak Mbps: 5928.258 Avg Mbps: 5928.258 2000 741839544 5940.657 100.00% Conn: 1 Mbps: 5940.657 Peak Mbps: 5940.657 Avg Mbps: 5940.657 3000 742853120 5942.825 100.00% Conn: 1 Mbps: 5942.825 Peak Mbps: 5942.825 Avg Mbps: 5942.825 4000 742526160 5940.209 100.00% Conn: 1 Mbps: 5940.209 Peak Mbps: 5942.825 Avg Mbps: 5940.209 5000 742526160 5940.209 100.00% Conn: 1 Mbps: 5940.209 Peak Mbps: 5942.825 Avg Mbps: 5940.209 --- fc00:0:0:1::12 tcpbench statistics --- 4453139924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5928.258/5938.432/5942.825/5.178 Mbps ==== run-ping-3-3 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.043 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-ping6-3-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.047 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 774047564 6192.381 100.00% Conn: 1 Mbps: 6192.381 Peak Mbps: 6192.381 Avg Mbps: 6192.381 2000 775401916 6209.425 100.00% Conn: 1 Mbps: 6209.425 Peak Mbps: 6209.425 Avg Mbps: 6209.425 3000 774191424 6199.731 100.00% Conn: 1 Mbps: 6199.731 Peak Mbps: 6209.425 Avg Mbps: 6199.731 4000 773700684 6189.605 100.00% Conn: 1 Mbps: 6189.605 Peak Mbps: 6209.425 Avg Mbps: 6189.605 5000 774584016 6196.672 100.00% Conn: 1 Mbps: 6196.672 Peak Mbps: 6209.425 Avg Mbps: 6196.672 --- 169.254.0.13 tcpbench statistics --- 4648014556 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6189.605/6197.563/6209.425/6.876 Mbps ==== run-tcpbench6-3-3 ==== rm -f nc.log nc -6 -v -l -V 13 fc00::13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00::13 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 13 -b fc00::13 fc00::13 elapsed_ms bytes mbps bwidth 1000 779495324 6235.963 100.00% Conn: 1 Mbps: 6235.963 Peak Mbps: 6235.963 Avg Mbps: 6235.963 2000 779014896 6238.358 100.00% Conn: 1 Mbps: 6238.358 Peak Mbps: 6238.358 Avg Mbps: 6238.358 3000 778949504 6231.596 100.00% Conn: 1 Mbps: 6231.596 Peak Mbps: 6238.358 Avg Mbps: 6231.596 4000 779145680 6233.165 100.00% Conn: 1 Mbps: 6233.165 Peak Mbps: 6238.358 Avg Mbps: 6233.165 5000 780159256 6241.274 100.00% Conn: 1 Mbps: 6241.274 Peak Mbps: 6241.274 Avg Mbps: 6241.274 --- fc00::13 tcpbench statistics --- 4678852980 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6231.596/6236.071/6241.274/3.487 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.88s