START sys/net/pair 2025-03-23T02:46:03Z ==== 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.046 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.046/0.046/0.046/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 928906604 7431.253 100.00% Conn: 1 Mbps: 7431.253 Peak Mbps: 7431.253 Avg Mbps: 7431.253 2000 933587976 7476.180 100.00% Conn: 1 Mbps: 7476.180 Peak Mbps: 7476.180 Avg Mbps: 7476.180 3000 932546788 7460.374 100.00% Conn: 1 Mbps: 7460.374 Peak Mbps: 7476.180 Avg Mbps: 7460.374 4000 934557632 7476.461 100.00% Conn: 1 Mbps: 7476.461 Peak Mbps: 7476.461 Avg Mbps: 7476.461 5000 932626268 7461.010 100.00% Conn: 1 Mbps: 7461.010 Peak Mbps: 7476.461 Avg Mbps: 7461.010 --- 169.254.1.11 tcpbench statistics --- 5594573356 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7431.253/7461.056/7476.461/16.461 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 942766048 7542.128 100.00% Conn: 1 Mbps: 7542.128 Peak Mbps: 7542.128 Avg Mbps: 7542.128 2000 942575776 7548.154 100.00% Conn: 1 Mbps: 7548.154 Peak Mbps: 7548.154 Avg Mbps: 7548.154 3000 943289296 7546.314 100.00% Conn: 1 Mbps: 7546.314 Peak Mbps: 7548.154 Avg Mbps: 7546.314 4000 942306224 7538.450 100.00% Conn: 1 Mbps: 7538.450 Peak Mbps: 7548.154 Avg Mbps: 7538.450 5000 944002816 7552.023 100.00% Conn: 1 Mbps: 7552.023 Peak Mbps: 7552.023 Avg Mbps: 7552.023 --- fc00:0:0:1::11 tcpbench statistics --- 5656675568 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7538.450/7545.414/7552.023/4.718 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.064 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.064/0.064/0.064/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.129 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.129/0.129/0.129/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 370018728 2957.193 100.00% Conn: 1 Mbps: 2957.193 Peak Mbps: 2957.193 Avg Mbps: 2957.193 2001 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3070.231 Avg Mbps: 3070.231 3001 381157376 3049.259 100.00% Conn: 1 Mbps: 3049.259 Peak Mbps: 3070.231 Avg Mbps: 3049.259 4002 383382976 3067.064 100.00% Conn: 1 Mbps: 3067.064 Peak Mbps: 3070.231 Avg Mbps: 3067.064 5002 384725664 3077.805 100.00% Conn: 1 Mbps: 3077.805 Peak Mbps: 3077.805 Avg Mbps: 3077.805 --- 169.254.1.12 tcpbench statistics --- 2288275064 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2957.193/3044.310/3077.805/44.554 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 350233224 2801.866 100.00% Conn: 1 Mbps: 2801.866 Peak Mbps: 2801.866 Avg Mbps: 2801.866 2001 358612992 2868.904 100.00% Conn: 1 Mbps: 2868.904 Peak Mbps: 2868.904 Avg Mbps: 2868.904 3001 359399424 2875.195 100.00% Conn: 1 Mbps: 2875.195 Peak Mbps: 2875.195 Avg Mbps: 2875.195 4001 367951828 2943.615 100.00% Conn: 1 Mbps: 2943.615 Peak Mbps: 2943.615 Avg Mbps: 2943.615 5002 363321860 2906.575 100.00% Conn: 1 Mbps: 2906.575 Peak Mbps: 2943.615 Avg Mbps: 2906.575 --- fc00:0:0:1::12 tcpbench statistics --- 2161278048 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2801.866/2879.231/2943.615/46.907 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.057 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.057/0.057/0.057/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.065 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.065/0.065/0.065/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 760210304 6081.682 100.00% Conn: 1 Mbps: 6081.682 Peak Mbps: 6081.682 Avg Mbps: 6081.682 2000 800538316 6404.307 100.00% Conn: 1 Mbps: 6404.307 Peak Mbps: 6404.307 Avg Mbps: 6404.307 3000 801627400 6419.439 100.00% Conn: 1 Mbps: 6419.439 Peak Mbps: 6419.439 Avg Mbps: 6419.439 4001 805450180 6443.601 100.00% Conn: 1 Mbps: 6443.601 Peak Mbps: 6443.601 Avg Mbps: 6443.601 5000 805434564 6449.926 100.00% Conn: 1 Mbps: 6449.926 Peak Mbps: 6449.926 Avg Mbps: 6449.926 --- 169.254.0.13 tcpbench statistics --- 4784456928 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6081.682/6359.791/6449.926/140.023 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 1001 714123048 5707.277 100.00% Conn: 1 Mbps: 5707.277 Peak Mbps: 5707.277 Avg Mbps: 5707.277 2002 759296272 6074.370 100.00% Conn: 1 Mbps: 6074.370 Peak Mbps: 6074.370 Avg Mbps: 6074.370 3002 751772600 6014.181 100.00% Conn: 1 Mbps: 6014.181 Peak Mbps: 6074.370 Avg Mbps: 6014.181 4002 753581224 6028.650 100.00% Conn: 1 Mbps: 6028.650 Peak Mbps: 6074.370 Avg Mbps: 6028.650 5003 762476440 6099.812 100.00% Conn: 1 Mbps: 6099.812 Peak Mbps: 6099.812 Avg Mbps: 6099.812 --- fc00::13 tcpbench statistics --- 4501982832 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5707.277/5984.858/6099.812/142.166 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.043 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.043/0.043/0.043/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.050 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.050/0.050/0.050/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 373226728 2985.814 100.00% Conn: 1 Mbps: 2985.814 Peak Mbps: 2985.814 Avg Mbps: 2985.814 2001 379846656 3038.773 100.00% Conn: 1 Mbps: 3038.773 Peak Mbps: 3038.773 Avg Mbps: 3038.773 3001 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 4001 387332744 3098.662 100.00% Conn: 1 Mbps: 3098.662 Peak Mbps: 3098.662 Avg Mbps: 3098.662 5002 384050680 3072.405 100.00% Conn: 1 Mbps: 3072.405 Peak Mbps: 3098.662 Avg Mbps: 3072.405 --- 169.254.1.11 tcpbench statistics --- 2292538728 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2985.814/3052.758/3098.662/38.488 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 1000 357252220 2858.018 100.00% Conn: 1 Mbps: 2858.018 Peak Mbps: 2858.018 Avg Mbps: 2858.018 2001 365690880 2925.527 100.00% Conn: 1 Mbps: 2925.527 Peak Mbps: 2925.527 Avg Mbps: 2925.527 3001 365166592 2921.333 100.00% Conn: 1 Mbps: 2921.333 Peak Mbps: 2925.527 Avg Mbps: 2921.333 4002 365617456 2924.940 100.00% Conn: 1 Mbps: 2924.940 Peak Mbps: 2925.527 Avg Mbps: 2924.940 5002 365797588 2926.381 100.00% Conn: 1 Mbps: 2926.381 Peak Mbps: 2926.381 Avg Mbps: 2926.381 --- fc00:0:0:1::11 tcpbench statistics --- 2184779968 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2858.018/2911.240/2926.381/26.666 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.037 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.037/0.037/0.037/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.043 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.043/0.043/0.043/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 922500528 7380.004 100.00% Conn: 1 Mbps: 7380.004 Peak Mbps: 7380.004 Avg Mbps: 7380.004 2000 923567704 7395.938 100.00% Conn: 1 Mbps: 7395.938 Peak Mbps: 7395.938 Avg Mbps: 7395.938 3000 919830416 7358.643 100.00% Conn: 1 Mbps: 7358.643 Peak Mbps: 7395.938 Avg Mbps: 7358.643 4000 922929136 7383.433 100.00% Conn: 1 Mbps: 7383.433 Peak Mbps: 7395.938 Avg Mbps: 7383.433 5000 921911192 7375.290 100.00% Conn: 1 Mbps: 7375.290 Peak Mbps: 7395.938 Avg Mbps: 7375.290 --- 169.254.1.12 tcpbench statistics --- 5533174344 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7358.643/7378.662/7395.938/12.125 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 919362108 7354.897 100.00% Conn: 1 Mbps: 7354.897 Peak Mbps: 7354.897 Avg Mbps: 7354.897 2000 919894752 7366.525 100.00% Conn: 1 Mbps: 7366.525 Peak Mbps: 7366.525 Avg Mbps: 7366.525 3000 919126488 7353.012 100.00% Conn: 1 Mbps: 7353.012 Peak Mbps: 7366.525 Avg Mbps: 7353.012 4000 919029384 7352.235 100.00% Conn: 1 Mbps: 7352.235 Peak Mbps: 7366.525 Avg Mbps: 7352.235 5000 917290080 7338.321 100.00% Conn: 1 Mbps: 7338.321 Peak Mbps: 7366.525 Avg Mbps: 7338.321 --- fc00:0:0:1::12 tcpbench statistics --- 5513073888 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7338.321/7352.998/7366.525/8.973 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.042 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.042/0.042/0.042/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.046 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/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 1271973962 10175.792 100.00% Conn: 1 Mbps: 10175.792 Peak Mbps: 10175.792 Avg Mbps: 10175.792 2000 1273830176 10200.842 100.00% Conn: 1 Mbps: 10200.842 Peak Mbps: 10200.842 Avg Mbps: 10200.842 3000 1276611036 10212.888 100.00% Conn: 1 Mbps: 10212.888 Peak Mbps: 10212.888 Avg Mbps: 10212.888 4000 1274860730 10198.886 100.00% Conn: 1 Mbps: 10198.886 Peak Mbps: 10212.888 Avg Mbps: 10198.886 5000 1275073384 10200.587 100.00% Conn: 1 Mbps: 10200.587 Peak Mbps: 10212.888 Avg Mbps: 10200.587 --- 169.254.0.13 tcpbench statistics --- 7645705082 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10175.792/10197.799/10212.888/12.085 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 1250076500 10000.612 100.00% Conn: 1 Mbps: 10000.612 Peak Mbps: 10000.612 Avg Mbps: 10000.612 2000 1254120472 10043.007 100.00% Conn: 1 Mbps: 10043.007 Peak Mbps: 10043.007 Avg Mbps: 10043.007 3000 1253924296 10031.394 100.00% Conn: 1 Mbps: 10031.394 Peak Mbps: 10043.007 Avg Mbps: 10031.394 4000 1254414736 10035.318 100.00% Conn: 1 Mbps: 10035.318 Peak Mbps: 10043.007 Avg Mbps: 10035.318 5000 1253303072 10026.425 100.00% Conn: 1 Mbps: 10026.425 Peak Mbps: 10043.007 Avg Mbps: 10026.425 --- fc00::13 tcpbench statistics --- 7519501804 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10000.612/10027.351/10043.007/14.427 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.045 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.045/0.045/0.045/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.055 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.055/0.055/0.055/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 1001 376525688 3009.196 100.00% Conn: 1 Mbps: 3009.196 Peak Mbps: 3009.196 Avg Mbps: 3009.196 2001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3055.550 Avg Mbps: 3055.550 3001 383722624 3069.781 100.00% Conn: 1 Mbps: 3069.781 Peak Mbps: 3069.781 Avg Mbps: 3069.781 4001 384125824 3073.007 100.00% Conn: 1 Mbps: 3073.007 Peak Mbps: 3073.007 Avg Mbps: 3073.007 5002 385351680 3082.813 100.00% Conn: 1 Mbps: 3082.813 Peak Mbps: 3082.813 Avg Mbps: 3082.813 --- 169.254.1.11 tcpbench statistics --- 2291778424 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 3009.196/3058.070/3082.813/25.952 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 845160368 6761.283 100.00% Conn: 1 Mbps: 6761.283 Peak Mbps: 6761.283 Avg Mbps: 6761.283 2000 934543360 7476.347 100.00% Conn: 1 Mbps: 7476.347 Peak Mbps: 7476.347 Avg Mbps: 7476.347 3000 919011336 7352.091 100.00% Conn: 1 Mbps: 7352.091 Peak Mbps: 7476.347 Avg Mbps: 7352.091 4000 903769880 7237.396 100.00% Conn: 1 Mbps: 7237.396 Peak Mbps: 7476.347 Avg Mbps: 7237.396 5001 924134064 7393.073 100.00% Conn: 1 Mbps: 7393.073 Peak Mbps: 7476.347 Avg Mbps: 7393.073 --- fc00:0:0:1::11 tcpbench statistics --- 5462417976 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6761.283/7244.038/7476.347/253.358 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.042 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.042/0.042/0.042/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.049 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.049/0.049/0.049/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 1258037718 10064.302 100.00% Conn: 1 Mbps: 10064.302 Peak Mbps: 10064.302 Avg Mbps: 10064.302 2000 1258388224 10077.183 100.00% Conn: 1 Mbps: 10077.183 Peak Mbps: 10077.183 Avg Mbps: 10077.183 3000 1259369704 10074.958 100.00% Conn: 1 Mbps: 10074.958 Peak Mbps: 10077.183 Avg Mbps: 10074.958 4000 1258191928 10065.535 100.00% Conn: 1 Mbps: 10065.535 Peak Mbps: 10077.183 Avg Mbps: 10065.535 5000 1258748100 10069.985 100.00% Conn: 1 Mbps: 10069.985 Peak Mbps: 10077.183 Avg Mbps: 10069.985 --- 169.254.1.12 tcpbench statistics --- 7546232856 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10064.302/10070.393/10077.183/5.056 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 1248034548 9984.276 100.00% Conn: 1 Mbps: 9984.276 Peak Mbps: 9984.276 Avg Mbps: 9984.276 2000 1251635576 10023.108 100.00% Conn: 1 Mbps: 10023.108 Peak Mbps: 10023.108 Avg Mbps: 10023.108 3000 1251406704 10011.254 100.00% Conn: 1 Mbps: 10011.254 Peak Mbps: 10023.108 Avg Mbps: 10011.254 4000 1250425824 10003.407 100.00% Conn: 1 Mbps: 10003.407 Peak Mbps: 10023.108 Avg Mbps: 10003.407 5000 1248235192 9985.882 100.00% Conn: 1 Mbps: 9985.882 Peak Mbps: 10023.108 Avg Mbps: 9985.882 --- fc00:0:0:1::12 tcpbench statistics --- 7498299996 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9984.276/10001.585/10023.108/14.874 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.039 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.039/0.039/0.039/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.044 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/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 1262631900 10101.055 100.00% Conn: 1 Mbps: 10101.055 Peak Mbps: 10101.055 Avg Mbps: 10101.055 2000 1263377414 10117.136 100.00% Conn: 1 Mbps: 10117.136 Peak Mbps: 10117.136 Avg Mbps: 10117.136 3000 1263917228 10111.338 100.00% Conn: 1 Mbps: 10111.338 Peak Mbps: 10117.136 Avg Mbps: 10111.338 4000 1266599940 10132.800 100.00% Conn: 1 Mbps: 10132.800 Peak Mbps: 10132.800 Avg Mbps: 10132.800 5000 1262232354 10097.859 100.00% Conn: 1 Mbps: 10097.859 Peak Mbps: 10132.800 Avg Mbps: 10097.859 --- 169.254.0.13 tcpbench statistics --- 7583493964 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10097.859/10112.038/10132.800/12.484 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 1288215356 10305.723 100.00% Conn: 1 Mbps: 10305.723 Peak Mbps: 10305.723 Avg Mbps: 10305.723 2000 1288876320 10321.332 100.00% Conn: 1 Mbps: 10321.332 Peak Mbps: 10321.332 Avg Mbps: 10321.332 3000 1289497544 10315.980 100.00% Conn: 1 Mbps: 10315.980 Peak Mbps: 10321.332 Avg Mbps: 10315.980 4000 1288614752 10308.918 100.00% Conn: 1 Mbps: 10308.918 Peak Mbps: 10321.332 Avg Mbps: 10308.918 5000 1290184160 10321.473 100.00% Conn: 1 Mbps: 10321.473 Peak Mbps: 10321.473 Avg Mbps: 10321.473 --- fc00::13 tcpbench statistics --- 7734068276 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10305.723/10314.685/10321.473/6.411 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 1m51.90s