START sys/net/pair 2025-03-08T02:46:02Z ==== 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.044 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.044/0.044/0.044/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 908949176 7271.593 100.00% Conn: 1 Mbps: 7271.593 Peak Mbps: 7271.593 Avg Mbps: 7271.593 2000 909664496 7284.601 100.00% Conn: 1 Mbps: 7284.601 Peak Mbps: 7284.601 Avg Mbps: 7284.601 3000 905682548 7245.460 100.00% Conn: 1 Mbps: 7245.460 Peak Mbps: 7284.601 Avg Mbps: 7245.460 4000 909290940 7274.328 100.00% Conn: 1 Mbps: 7274.328 Peak Mbps: 7284.601 Avg Mbps: 7274.328 5000 909100188 7272.802 100.00% Conn: 1 Mbps: 7272.802 Peak Mbps: 7284.601 Avg Mbps: 7272.802 --- 169.254.1.11 tcpbench statistics --- 5449967444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7245.460/7269.757/7284.601/12.994 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 909317816 7274.543 100.00% Conn: 1 Mbps: 7274.543 Peak Mbps: 7274.543 Avg Mbps: 7274.543 2000 903371816 7234.209 100.00% Conn: 1 Mbps: 7234.209 Peak Mbps: 7274.543 Avg Mbps: 7234.209 3000 900977560 7207.820 100.00% Conn: 1 Mbps: 7207.820 Peak Mbps: 7274.543 Avg Mbps: 7207.820 4000 903348032 7226.784 100.00% Conn: 1 Mbps: 7226.784 Peak Mbps: 7274.543 Avg Mbps: 7226.784 5000 904346960 7234.776 100.00% Conn: 1 Mbps: 7234.776 Peak Mbps: 7274.543 Avg Mbps: 7234.776 --- fc00:0:0:1::11 tcpbench statistics --- 5425035264 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7207.820/7235.626/7274.543/21.765 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.065 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.065/0.065/0.065/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.125 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.125/0.125/0.125/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 374266768 2991.143 100.00% Conn: 1 Mbps: 2991.143 Peak Mbps: 2991.143 Avg Mbps: 2991.143 2001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3057.648 Avg Mbps: 3057.648 3000 385613824 3087.999 100.00% Conn: 1 Mbps: 3087.999 Peak Mbps: 3087.999 Avg Mbps: 3087.999 4001 386662400 3093.299 100.00% Conn: 1 Mbps: 3093.299 Peak Mbps: 3093.299 Avg Mbps: 3093.299 5001 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3093.299 Avg Mbps: 3070.231 --- 169.254.1.12 tcpbench statistics --- 2295432648 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2991.143/3060.064/3093.299/36.727 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 1001 351118896 2806.145 100.00% Conn: 1 Mbps: 2806.145 Peak Mbps: 2806.145 Avg Mbps: 2806.145 2002 362807296 2902.458 100.00% Conn: 1 Mbps: 2902.458 Peak Mbps: 2902.458 Avg Mbps: 2902.458 3002 359661568 2880.173 100.00% Conn: 1 Mbps: 2880.173 Peak Mbps: 2902.458 Avg Mbps: 2880.173 4002 360185856 2881.487 100.00% Conn: 1 Mbps: 2881.487 Peak Mbps: 2902.458 Avg Mbps: 2881.487 5003 356515840 2852.127 100.00% Conn: 1 Mbps: 2852.127 Peak Mbps: 2902.458 Avg Mbps: 2852.127 --- fc00:0:0:1::12 tcpbench statistics --- 2145494576 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2806.145/2864.478/2902.458/33.267 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.066 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.066/0.066/0.066/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 738003032 5904.024 100.00% Conn: 1 Mbps: 5904.024 Peak Mbps: 5904.024 Avg Mbps: 5904.024 2000 771194860 6169.559 100.00% Conn: 1 Mbps: 6169.559 Peak Mbps: 6169.559 Avg Mbps: 6169.559 3000 780207332 6247.907 100.00% Conn: 1 Mbps: 6247.907 Peak Mbps: 6247.907 Avg Mbps: 6247.907 4001 792637864 6341.103 100.00% Conn: 1 Mbps: 6341.103 Peak Mbps: 6341.103 Avg Mbps: 6341.103 5001 794716128 6357.729 100.00% Conn: 1 Mbps: 6357.729 Peak Mbps: 6357.729 Avg Mbps: 6357.729 --- 169.254.0.13 tcpbench statistics --- 4677552148 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5904.024/6204.064/6357.729/164.639 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 694937808 5559.502 100.00% Conn: 1 Mbps: 5559.502 Peak Mbps: 5559.502 Avg Mbps: 5559.502 2000 732522824 5860.183 100.00% Conn: 1 Mbps: 5860.183 Peak Mbps: 5860.183 Avg Mbps: 5860.183 3001 739428704 5915.430 100.00% Conn: 1 Mbps: 5915.430 Peak Mbps: 5915.430 Avg Mbps: 5915.430 4000 734521792 5882.056 100.00% Conn: 1 Mbps: 5882.056 Peak Mbps: 5915.430 Avg Mbps: 5882.056 5001 737057712 5896.462 100.00% Conn: 1 Mbps: 5896.462 Peak Mbps: 5915.430 Avg Mbps: 5896.462 --- fc00::13 tcpbench statistics --- 4369929384 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5559.502/5822.727/5915.430/132.846 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.047 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.047/0.047/0.047/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 374931800 2996.458 100.00% Conn: 1 Mbps: 2996.458 Peak Mbps: 2996.458 Avg Mbps: 2996.458 2000 381681664 3056.510 100.00% Conn: 1 Mbps: 3056.510 Peak Mbps: 3056.510 Avg Mbps: 3056.510 3001 387448832 3099.591 100.00% Conn: 1 Mbps: 3099.591 Peak Mbps: 3099.591 Avg Mbps: 3099.591 4001 380458280 3043.666 100.00% Conn: 1 Mbps: 3043.666 Peak Mbps: 3099.591 Avg Mbps: 3043.666 5001 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3099.591 Avg Mbps: 3089.105 --- 169.254.1.11 tcpbench statistics --- 2295223936 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2996.458/3057.066/3099.591/36.573 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 348469424 2784.970 100.00% Conn: 1 Mbps: 2784.970 Peak Mbps: 2784.970 Avg Mbps: 2784.970 2001 355336784 2842.694 100.00% Conn: 1 Mbps: 2842.694 Peak Mbps: 2842.694 Avg Mbps: 2842.694 3001 355467264 2843.738 100.00% Conn: 1 Mbps: 2843.738 Peak Mbps: 2843.738 Avg Mbps: 2843.738 4001 355729408 2845.835 100.00% Conn: 1 Mbps: 2845.835 Peak Mbps: 2845.835 Avg Mbps: 2845.835 5001 360232696 2884.746 100.00% Conn: 1 Mbps: 2884.746 Peak Mbps: 2884.746 Avg Mbps: 2884.746 --- fc00:0:0:1::11 tcpbench statistics --- 2133324280 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2784.970/2840.397/2884.746/31.890 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 897854120 7182.833 100.00% Conn: 1 Mbps: 7182.833 Peak Mbps: 7182.833 Avg Mbps: 7182.833 2000 898009056 7191.264 100.00% Conn: 1 Mbps: 7191.264 Peak Mbps: 7191.264 Avg Mbps: 7191.264 3000 897616648 7180.933 100.00% Conn: 1 Mbps: 7180.933 Peak Mbps: 7191.264 Avg Mbps: 7180.933 4000 894940744 7159.526 100.00% Conn: 1 Mbps: 7159.526 Peak Mbps: 7191.264 Avg Mbps: 7159.526 5000 894568608 7156.549 100.00% Conn: 1 Mbps: 7156.549 Peak Mbps: 7191.264 Avg Mbps: 7156.549 --- 169.254.1.12 tcpbench statistics --- 5379831144 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7156.549/7174.221/7191.264/13.696 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 883082340 7064.659 100.00% Conn: 1 Mbps: 7064.659 Peak Mbps: 7064.659 Avg Mbps: 7064.659 2000 883130892 7072.119 100.00% Conn: 1 Mbps: 7072.119 Peak Mbps: 7072.119 Avg Mbps: 7072.119 3000 879673704 7037.390 100.00% Conn: 1 Mbps: 7037.390 Peak Mbps: 7072.119 Avg Mbps: 7037.390 4000 883226568 7065.813 100.00% Conn: 1 Mbps: 7065.813 Peak Mbps: 7072.119 Avg Mbps: 7065.813 5000 891881676 7135.053 100.00% Conn: 1 Mbps: 7135.053 Peak Mbps: 7135.053 Avg Mbps: 7135.053 --- fc00:0:0:1::12 tcpbench statistics --- 5313773640 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7037.390/7075.007/7135.053/32.313 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.041 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.041/0.041/0.041/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 1260523366 10084.187 100.00% Conn: 1 Mbps: 10084.187 Peak Mbps: 10084.187 Avg Mbps: 10084.187 2000 1265618460 10135.083 100.00% Conn: 1 Mbps: 10135.083 Peak Mbps: 10135.083 Avg Mbps: 10135.083 3000 1265896546 10127.172 100.00% Conn: 1 Mbps: 10127.172 Peak Mbps: 10135.083 Avg Mbps: 10127.172 4000 1266289138 10130.313 100.00% Conn: 1 Mbps: 10130.313 Peak Mbps: 10135.083 Avg Mbps: 10130.313 5000 1264882350 10119.059 100.00% Conn: 1 Mbps: 10119.059 Peak Mbps: 10135.083 Avg Mbps: 10119.059 --- 169.254.0.13 tcpbench statistics --- 7589139122 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10084.187/10119.163/10135.083/18.250 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 1251844964 10014.760 100.00% Conn: 1 Mbps: 10014.760 Peak Mbps: 10014.760 Avg Mbps: 10014.760 2000 1257095808 10066.833 100.00% Conn: 1 Mbps: 10066.833 Peak Mbps: 10066.833 Avg Mbps: 10066.833 3000 1257030416 10056.243 100.00% Conn: 1 Mbps: 10056.243 Peak Mbps: 10066.833 Avg Mbps: 10056.243 4000 1263994664 10111.957 100.00% Conn: 1 Mbps: 10111.957 Peak Mbps: 10111.957 Avg Mbps: 10111.957 5000 1264877456 10119.020 100.00% Conn: 1 Mbps: 10119.020 Peak Mbps: 10119.020 Avg Mbps: 10119.020 --- fc00::13 tcpbench statistics --- 7559001452 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10014.760/10073.763/10119.020/38.323 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.046 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.046/0.046/0.046/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.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-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 375517944 3001.142 100.00% Conn: 1 Mbps: 3001.142 Peak Mbps: 3001.142 Avg Mbps: 3001.142 2001 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 3002 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 4002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3068.133 Avg Mbps: 3047.162 5003 380108800 3040.870 100.00% Conn: 1 Mbps: 3040.870 Peak Mbps: 3068.133 Avg Mbps: 3040.870 --- 169.254.1.11 tcpbench statistics --- 2282615544 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3001.142/3045.088/3068.133/24.558 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 841370592 6730.965 100.00% Conn: 1 Mbps: 6730.965 Peak Mbps: 6730.965 Avg Mbps: 6730.965 2000 908296376 7273.645 100.00% Conn: 1 Mbps: 7273.645 Peak Mbps: 7273.645 Avg Mbps: 7273.645 3000 902390064 7219.121 100.00% Conn: 1 Mbps: 7219.121 Peak Mbps: 7273.645 Avg Mbps: 7219.121 4000 889454592 7115.637 100.00% Conn: 1 Mbps: 7115.637 Peak Mbps: 7273.645 Avg Mbps: 7115.637 5000 903124888 7224.999 100.00% Conn: 1 Mbps: 7224.999 Peak Mbps: 7273.645 Avg Mbps: 7224.999 --- fc00:0:0:1::11 tcpbench statistics --- 5358623000 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6730.965/7112.873/7273.645/197.773 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.045 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.045/0.045/0.045/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 1268747564 10149.981 100.00% Conn: 1 Mbps: 10149.981 Peak Mbps: 10149.981 Avg Mbps: 10149.981 2000 1273552090 10198.615 100.00% Conn: 1 Mbps: 10198.615 Peak Mbps: 10198.615 Avg Mbps: 10198.615 3000 1272161660 10177.293 100.00% Conn: 1 Mbps: 10177.293 Peak Mbps: 10198.615 Avg Mbps: 10177.293 4000 1271114748 10168.918 100.00% Conn: 1 Mbps: 10168.918 Peak Mbps: 10198.615 Avg Mbps: 10168.918 5000 1273879250 10191.034 100.00% Conn: 1 Mbps: 10191.034 Peak Mbps: 10198.615 Avg Mbps: 10191.034 --- 169.254.1.12 tcpbench statistics --- 7632565736 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10149.981/10177.168/10198.615/17.085 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 1187379508 9499.036 100.00% Conn: 1 Mbps: 9499.036 Peak Mbps: 9499.036 Avg Mbps: 9499.036 2000 1180914128 9456.770 100.00% Conn: 1 Mbps: 9456.770 Peak Mbps: 9499.036 Avg Mbps: 9456.770 3000 1192717384 9541.739 100.00% Conn: 1 Mbps: 9541.739 Peak Mbps: 9541.739 Avg Mbps: 9541.739 4000 1191605720 9532.846 100.00% Conn: 1 Mbps: 9532.846 Peak Mbps: 9541.739 Avg Mbps: 9532.846 5000 1199256584 9594.053 100.00% Conn: 1 Mbps: 9594.053 Peak Mbps: 9594.053 Avg Mbps: 9594.053 --- fc00:0:0:1::12 tcpbench statistics --- 7146846732 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9456.770/9524.889/9594.053/45.693 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.037 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.037/0.037/0.037/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.042 ms --- fc00::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-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 1264580848 10116.647 100.00% Conn: 1 Mbps: 10116.647 Peak Mbps: 10116.647 Avg Mbps: 10116.647 2000 1269282652 10164.426 100.00% Conn: 1 Mbps: 10164.426 Peak Mbps: 10164.426 Avg Mbps: 10164.426 3000 1268955492 10151.644 100.00% Conn: 1 Mbps: 10151.644 Peak Mbps: 10164.426 Avg Mbps: 10151.644 4000 1267761358 10142.091 100.00% Conn: 1 Mbps: 10142.091 Peak Mbps: 10164.426 Avg Mbps: 10142.091 5000 1268186666 10145.493 100.00% Conn: 1 Mbps: 10145.493 Peak Mbps: 10164.426 Avg Mbps: 10145.493 --- 169.254.0.13 tcpbench statistics --- 7606741028 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10116.647/10144.060/10164.426/15.682 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 1277021460 10216.172 100.00% Conn: 1 Mbps: 10216.172 Peak Mbps: 10216.172 Avg Mbps: 10216.172 2000 1281944768 10265.824 100.00% Conn: 1 Mbps: 10265.824 Peak Mbps: 10265.824 Avg Mbps: 10265.824 3000 1280081096 10240.649 100.00% Conn: 1 Mbps: 10240.649 Peak Mbps: 10265.824 Avg Mbps: 10240.649 4000 1278904040 10231.232 100.00% Conn: 1 Mbps: 10231.232 Peak Mbps: 10265.824 Avg Mbps: 10231.232 5000 1280179184 10241.433 100.00% Conn: 1 Mbps: 10241.433 Peak Mbps: 10265.824 Avg Mbps: 10241.433 --- fc00::13 tcpbench statistics --- 7677230764 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10216.172/10239.062/10265.824/16.184 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.84s