START sys/net/pair 2025-03-08T05:22:50Z ==== 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 517883732 4143.070 100.00% Conn: 1 Mbps: 4143.070 Peak Mbps: 4143.070 Avg Mbps: 4143.070 2000 517653240 4145.371 100.00% Conn: 1 Mbps: 4145.371 Peak Mbps: 4145.371 Avg Mbps: 4145.371 3000 517947316 4143.579 100.00% Conn: 1 Mbps: 4143.579 Peak Mbps: 4145.371 Avg Mbps: 4143.579 4000 517549916 4140.399 100.00% Conn: 1 Mbps: 4140.399 Peak Mbps: 4145.371 Avg Mbps: 4140.399 5000 517915524 4143.324 100.00% Conn: 1 Mbps: 4143.324 Peak Mbps: 4145.371 Avg Mbps: 4143.324 --- 169.254.1.11 tcpbench statistics --- 3106817564 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4140.399/4143.149/4145.371/1.595 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 516120728 4128.966 100.00% Conn: 1 Mbps: 4128.966 Peak Mbps: 4128.966 Avg Mbps: 4128.966 2000 515716400 4129.861 100.00% Conn: 1 Mbps: 4129.861 Peak Mbps: 4129.861 Avg Mbps: 4129.861 3000 516200008 4129.600 100.00% Conn: 1 Mbps: 4129.600 Peak Mbps: 4129.861 Avg Mbps: 4129.600 4000 514043592 4112.349 100.00% Conn: 1 Mbps: 4112.349 Peak Mbps: 4129.861 Avg Mbps: 4112.349 5000 515756040 4126.048 100.00% Conn: 1 Mbps: 4126.048 Peak Mbps: 4129.861 Avg Mbps: 4126.048 --- fc00:0:0:1::11 tcpbench statistics --- 3093402536 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4112.349/4125.365/4129.861/6.648 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.074 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.074/0.074/0.074/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.144 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.144/0.144/0.144/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 273538440 2186.121 100.00% Conn: 1 Mbps: 2186.121 Peak Mbps: 2186.121 Avg Mbps: 2186.121 2000 284068912 2274.826 100.00% Conn: 1 Mbps: 2274.826 Peak Mbps: 2274.826 Avg Mbps: 2274.826 3001 289075920 2312.607 100.00% Conn: 1 Mbps: 2312.607 Peak Mbps: 2312.607 Avg Mbps: 2312.607 4001 285836912 2286.695 100.00% Conn: 1 Mbps: 2286.695 Peak Mbps: 2312.607 Avg Mbps: 2286.695 5001 290516184 2326.456 100.00% Conn: 1 Mbps: 2326.456 Peak Mbps: 2326.456 Avg Mbps: 2326.456 --- 169.254.1.12 tcpbench statistics --- 1710169072 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2186.121/2277.341/2326.456/49.134 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 252785712 2022.286 100.00% Conn: 1 Mbps: 2022.286 Peak Mbps: 2022.286 Avg Mbps: 2022.286 2001 267676304 2141.410 100.00% Conn: 1 Mbps: 2141.410 Peak Mbps: 2141.410 Avg Mbps: 2141.410 3001 272443308 2179.546 100.00% Conn: 1 Mbps: 2179.546 Peak Mbps: 2179.546 Avg Mbps: 2179.546 4003 275522372 2201.977 100.00% Conn: 1 Mbps: 2201.977 Peak Mbps: 2201.977 Avg Mbps: 2201.977 5002 272050948 2178.586 100.00% Conn: 1 Mbps: 2178.586 Peak Mbps: 2201.977 Avg Mbps: 2178.586 --- fc00:0:0:1::12 tcpbench statistics --- 1614143684 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2022.286/2144.761/2201.977/64.248 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.063 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.063/0.063/0.063/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.071 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/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 571754296 4574.034 100.00% Conn: 1 Mbps: 4574.034 Peak Mbps: 4574.034 Avg Mbps: 4574.034 2000 574558400 4601.068 100.00% Conn: 1 Mbps: 4601.068 Peak Mbps: 4601.068 Avg Mbps: 4601.068 3000 561263496 4494.603 100.00% Conn: 1 Mbps: 4494.603 Peak Mbps: 4601.068 Avg Mbps: 4494.603 4000 559022440 4476.656 100.00% Conn: 1 Mbps: 4476.656 Peak Mbps: 4601.068 Avg Mbps: 4476.656 5000 554126612 4437.450 100.00% Conn: 1 Mbps: 4437.450 Peak Mbps: 4601.068 Avg Mbps: 4437.450 --- 169.254.0.13 tcpbench statistics --- 3318810228 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4437.450/4516.762/4601.068/61.282 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 600078776 4800.630 100.00% Conn: 1 Mbps: 4800.630 Peak Mbps: 4800.630 Avg Mbps: 4800.630 2000 637217688 5102.844 100.00% Conn: 1 Mbps: 5102.844 Peak Mbps: 5102.844 Avg Mbps: 5102.844 3000 637257592 5098.061 100.00% Conn: 1 Mbps: 5098.061 Peak Mbps: 5102.844 Avg Mbps: 5098.061 4000 639139904 5113.119 100.00% Conn: 1 Mbps: 5113.119 Peak Mbps: 5113.119 Avg Mbps: 5113.119 5001 638260936 5100.987 100.00% Conn: 1 Mbps: 5100.987 Peak Mbps: 5113.119 Avg Mbps: 5100.987 --- fc00::13 tcpbench statistics --- 3784147928 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4800.630/5043.128/5113.119/121.355 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.057 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.057/0.057/0.057/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.052 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.052/0.052/0.052/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 1000 273762544 2190.100 100.00% Conn: 1 Mbps: 2190.100 Peak Mbps: 2190.100 Avg Mbps: 2190.100 2000 286510008 2292.080 100.00% Conn: 1 Mbps: 2292.080 Peak Mbps: 2292.080 Avg Mbps: 2292.080 3000 286579168 2294.928 100.00% Conn: 1 Mbps: 2294.928 Peak Mbps: 2294.928 Avg Mbps: 2294.928 4001 287802624 2300.121 100.00% Conn: 1 Mbps: 2300.121 Peak Mbps: 2300.121 Avg Mbps: 2300.121 5003 285223128 2279.506 100.00% Conn: 1 Mbps: 2279.506 Peak Mbps: 2300.121 Avg Mbps: 2279.506 --- 169.254.1.11 tcpbench statistics --- 1703751056 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2190.100/2271.347/2300.121/41.186 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 255006904 2038.017 100.00% Conn: 1 Mbps: 2038.017 Peak Mbps: 2038.017 Avg Mbps: 2038.017 2002 267612496 2140.900 100.00% Conn: 1 Mbps: 2140.900 Peak Mbps: 2140.900 Avg Mbps: 2140.900 3002 270063100 2160.505 100.00% Conn: 1 Mbps: 2160.505 Peak Mbps: 2160.505 Avg Mbps: 2160.505 4003 272000684 2176.005 100.00% Conn: 1 Mbps: 2176.005 Peak Mbps: 2176.005 Avg Mbps: 2176.005 5004 269641840 2157.135 100.00% Conn: 1 Mbps: 2157.135 Peak Mbps: 2176.005 Avg Mbps: 2157.135 --- fc00:0:0:1::11 tcpbench statistics --- 1606905928 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2038.017/2134.512/2176.005/49.520 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.055 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.055/0.055/0.055/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.051 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.051/0.051/0.051/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 528265152 4226.121 100.00% Conn: 1 Mbps: 4226.121 Peak Mbps: 4226.121 Avg Mbps: 4226.121 2000 528645976 4233.401 100.00% Conn: 1 Mbps: 4233.401 Peak Mbps: 4233.401 Avg Mbps: 4233.401 3000 528974672 4231.797 100.00% Conn: 1 Mbps: 4231.797 Peak Mbps: 4233.401 Avg Mbps: 4231.797 4000 529940488 4239.524 100.00% Conn: 1 Mbps: 4239.524 Peak Mbps: 4239.524 Avg Mbps: 4239.524 5000 529629168 4237.033 100.00% Conn: 1 Mbps: 4237.033 Peak Mbps: 4239.524 Avg Mbps: 4237.033 --- 169.254.1.12 tcpbench statistics --- 3175612368 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4226.121/4233.575/4239.524/4.606 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 521952564 4175.621 100.00% Conn: 1 Mbps: 4175.621 Peak Mbps: 4175.621 Avg Mbps: 4175.621 2000 520830156 4170.812 100.00% Conn: 1 Mbps: 4170.812 Peak Mbps: 4175.621 Avg Mbps: 4170.812 3000 521369940 4170.960 100.00% Conn: 1 Mbps: 4170.960 Peak Mbps: 4175.621 Avg Mbps: 4170.960 4000 521895444 4175.164 100.00% Conn: 1 Mbps: 4175.164 Peak Mbps: 4175.621 Avg Mbps: 4175.164 5000 521554152 4172.433 100.00% Conn: 1 Mbps: 4172.433 Peak Mbps: 4175.621 Avg Mbps: 4172.433 --- fc00:0:0:1::12 tcpbench statistics --- 3129430584 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4170.812/4172.998/4175.621/2.041 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.047 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.047/0.047/0.047/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.062 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.062/0.062/0.062/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 778264190 6226.114 100.00% Conn: 1 Mbps: 6226.114 Peak Mbps: 6226.114 Avg Mbps: 6226.114 2000 777200816 6223.830 100.00% Conn: 1 Mbps: 6223.830 Peak Mbps: 6226.114 Avg Mbps: 6223.830 3000 776710088 6213.681 100.00% Conn: 1 Mbps: 6213.681 Peak Mbps: 6226.114 Avg Mbps: 6213.681 4000 776579236 6212.634 100.00% Conn: 1 Mbps: 6212.634 Peak Mbps: 6226.114 Avg Mbps: 6212.634 5000 777004508 6216.036 100.00% Conn: 1 Mbps: 6216.036 Peak Mbps: 6226.114 Avg Mbps: 6216.036 --- 169.254.0.13 tcpbench statistics --- 4662273098 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6212.634/6218.459/6226.114/5.479 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 763223628 6105.789 100.00% Conn: 1 Mbps: 6105.789 Peak Mbps: 6105.789 Avg Mbps: 6105.789 2000 763059248 6110.585 100.00% Conn: 1 Mbps: 6110.585 Peak Mbps: 6110.585 Avg Mbps: 6110.585 3000 763059248 6104.474 100.00% Conn: 1 Mbps: 6104.474 Peak Mbps: 6110.585 Avg Mbps: 6104.474 4000 762536112 6100.289 100.00% Conn: 1 Mbps: 6100.289 Peak Mbps: 6110.585 Avg Mbps: 6100.289 5000 762536112 6100.289 100.00% Conn: 1 Mbps: 6100.289 Peak Mbps: 6110.585 Avg Mbps: 6100.289 --- fc00::13 tcpbench statistics --- 4576917764 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6100.289/6104.285/6110.585/3.845 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.052 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.052/0.052/0.052/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.070 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.070/0.070/0.070/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 273581656 2188.653 100.00% Conn: 1 Mbps: 2188.653 Peak Mbps: 2188.653 Avg Mbps: 2188.653 2001 281419288 2251.354 100.00% Conn: 1 Mbps: 2251.354 Peak Mbps: 2251.354 Avg Mbps: 2251.354 3001 284474288 2275.794 100.00% Conn: 1 Mbps: 2275.794 Peak Mbps: 2275.794 Avg Mbps: 2275.794 4001 282630360 2261.043 100.00% Conn: 1 Mbps: 2261.043 Peak Mbps: 2275.794 Avg Mbps: 2261.043 5002 284774696 2278.198 100.00% Conn: 1 Mbps: 2278.198 Peak Mbps: 2278.198 Avg Mbps: 2278.198 --- 169.254.1.11 tcpbench statistics --- 1691317760 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2188.653/2251.008/2278.198/32.688 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 537551176 4300.409 100.00% Conn: 1 Mbps: 4300.409 Peak Mbps: 4300.409 Avg Mbps: 4300.409 2000 607531744 4860.254 100.00% Conn: 1 Mbps: 4860.254 Peak Mbps: 4860.254 Avg Mbps: 4860.254 3001 607472632 4859.781 100.00% Conn: 1 Mbps: 4859.781 Peak Mbps: 4860.254 Avg Mbps: 4859.781 4001 604858960 4843.715 100.00% Conn: 1 Mbps: 4843.715 Peak Mbps: 4860.254 Avg Mbps: 4843.715 5001 611351928 4890.815 100.00% Conn: 1 Mbps: 4890.815 Peak Mbps: 4890.815 Avg Mbps: 4890.815 --- fc00:0:0:1::11 tcpbench statistics --- 3579546320 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4300.409/4750.995/4890.815/225.808 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.050 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.050/0.050/0.050/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.052 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.052/0.052/0.052/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 784726886 6277.815 100.00% Conn: 1 Mbps: 6277.815 Peak Mbps: 6277.815 Avg Mbps: 6277.815 2000 784464248 6281.996 100.00% Conn: 1 Mbps: 6281.996 Peak Mbps: 6281.996 Avg Mbps: 6281.996 3000 784693260 6277.546 100.00% Conn: 1 Mbps: 6277.546 Peak Mbps: 6281.996 Avg Mbps: 6277.546 4000 785249432 6281.995 100.00% Conn: 1 Mbps: 6281.995 Peak Mbps: 6281.996 Avg Mbps: 6281.995 5000 780963636 6247.709 100.00% Conn: 1 Mbps: 6247.709 Peak Mbps: 6281.996 Avg Mbps: 6247.709 --- 169.254.1.12 tcpbench statistics --- 4706279300 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6247.709/6273.412/6281.996/12.996 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 762979524 6103.836 100.00% Conn: 1 Mbps: 6103.836 Peak Mbps: 6103.836 Avg Mbps: 6103.836 2000 763091944 6110.846 100.00% Conn: 1 Mbps: 6110.846 Peak Mbps: 6110.846 Avg Mbps: 6110.846 3000 763386208 6107.090 100.00% Conn: 1 Mbps: 6107.090 Peak Mbps: 6110.846 Avg Mbps: 6107.090 4000 763484296 6107.874 100.00% Conn: 1 Mbps: 6107.874 Peak Mbps: 6110.846 Avg Mbps: 6107.874 5000 761457144 6091.657 100.00% Conn: 1 Mbps: 6091.657 Peak Mbps: 6110.846 Avg Mbps: 6091.657 --- fc00:0:0:1::12 tcpbench statistics --- 4578210372 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6091.657/6104.261/6110.846/6.685 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 776444894 6211.559 100.00% Conn: 1 Mbps: 6211.559 Peak Mbps: 6211.559 Avg Mbps: 6211.559 2000 774616732 6203.137 100.00% Conn: 1 Mbps: 6203.137 Peak Mbps: 6211.559 Avg Mbps: 6203.137 3000 776023520 6208.188 100.00% Conn: 1 Mbps: 6208.188 Peak Mbps: 6211.559 Avg Mbps: 6208.188 4000 776775988 6214.208 100.00% Conn: 1 Mbps: 6214.208 Peak Mbps: 6214.208 Avg Mbps: 6214.208 5000 776416112 6211.329 100.00% Conn: 1 Mbps: 6211.329 Peak Mbps: 6214.208 Avg Mbps: 6211.329 --- 169.254.0.13 tcpbench statistics --- 4656758790 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6203.137/6209.684/6214.208/3.789 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 783985192 6271.882 100.00% Conn: 1 Mbps: 6271.882 Peak Mbps: 6271.882 Avg Mbps: 6271.882 2000 782317192 6264.802 100.00% Conn: 1 Mbps: 6264.802 Peak Mbps: 6271.882 Avg Mbps: 6264.802 3000 782578760 6260.630 100.00% Conn: 1 Mbps: 6260.630 Peak Mbps: 6271.882 Avg Mbps: 6260.630 4000 784900176 6279.201 100.00% Conn: 1 Mbps: 6279.201 Peak Mbps: 6279.201 Avg Mbps: 6279.201 5000 784638608 6277.109 100.00% Conn: 1 Mbps: 6277.109 Peak Mbps: 6279.201 Avg Mbps: 6277.109 --- fc00::13 tcpbench statistics --- 4701979568 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6260.630/6270.725/6279.201/7.084 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.85s