START sys/net/pair 2025-03-26T02:46:11Z ==== 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 930289556 7442.316 100.00% Conn: 1 Mbps: 7442.316 Peak Mbps: 7442.316 Avg Mbps: 7442.316 2000 933039564 7471.788 100.00% Conn: 1 Mbps: 7471.788 Peak Mbps: 7471.788 Avg Mbps: 7471.788 3000 930679008 7445.432 100.00% Conn: 1 Mbps: 7445.432 Peak Mbps: 7471.788 Avg Mbps: 7445.432 4000 931767884 7454.143 100.00% Conn: 1 Mbps: 7454.143 Peak Mbps: 7471.788 Avg Mbps: 7454.143 5000 931251264 7450.010 100.00% Conn: 1 Mbps: 7450.010 Peak Mbps: 7471.788 Avg Mbps: 7450.010 --- 169.254.1.11 tcpbench statistics --- 5587070444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7442.316/7452.738/7471.788/10.337 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 922406944 7379.256 100.00% Conn: 1 Mbps: 7379.256 Peak Mbps: 7379.256 Avg Mbps: 7379.256 2000 924761560 7405.498 100.00% Conn: 1 Mbps: 7405.498 Peak Mbps: 7405.498 Avg Mbps: 7405.498 3000 927369872 7418.959 100.00% Conn: 1 Mbps: 7418.959 Peak Mbps: 7418.959 Avg Mbps: 7418.959 4000 925268952 7402.152 100.00% Conn: 1 Mbps: 7402.152 Peak Mbps: 7418.959 Avg Mbps: 7402.152 5000 924301736 7394.414 100.00% Conn: 1 Mbps: 7394.414 Peak Mbps: 7418.959 Avg Mbps: 7394.414 --- fc00:0:0:1::11 tcpbench statistics --- 5547039256 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7379.256/7400.056/7418.959/13.083 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.063 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.063/0.063/0.063/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.135 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.135/0.135/0.135/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 370714920 2962.757 100.00% Conn: 1 Mbps: 2962.757 Peak Mbps: 2962.757 Avg Mbps: 2962.757 2001 380108800 3040.870 100.00% Conn: 1 Mbps: 3040.870 Peak Mbps: 3040.870 Avg Mbps: 3040.870 3001 382730240 3061.842 100.00% Conn: 1 Mbps: 3061.842 Peak Mbps: 3061.842 Avg Mbps: 3061.842 4002 384249808 3073.998 100.00% Conn: 1 Mbps: 3073.998 Peak Mbps: 3073.998 Avg Mbps: 3073.998 5002 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3073.998 Avg Mbps: 3068.133 --- 169.254.1.12 tcpbench statistics --- 2283002104 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2962.757/3041.520/3073.998/40.939 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 351541680 2809.524 100.00% Conn: 1 Mbps: 2809.524 Peak Mbps: 2809.524 Avg Mbps: 2809.524 2001 358350848 2866.807 100.00% Conn: 1 Mbps: 2866.807 Peak Mbps: 2866.807 Avg Mbps: 2866.807 3002 358350848 2866.807 100.00% Conn: 1 Mbps: 2866.807 Peak Mbps: 2866.807 Avg Mbps: 2866.807 4002 359923712 2879.390 100.00% Conn: 1 Mbps: 2879.390 Peak Mbps: 2879.390 Avg Mbps: 2879.390 5002 359661568 2877.293 100.00% Conn: 1 Mbps: 2877.293 Peak Mbps: 2879.390 Avg Mbps: 2877.293 --- fc00:0:0:1::12 tcpbench statistics --- 2149587376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2809.524/2859.964/2879.390/25.751 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.055 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.055/0.055/0.055/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.068 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.068/0.068/0.068/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 755059860 6040.479 100.00% Conn: 1 Mbps: 6040.479 Peak Mbps: 6040.479 Avg Mbps: 6040.479 2000 802676328 6427.838 100.00% Conn: 1 Mbps: 6427.838 Peak Mbps: 6427.838 Avg Mbps: 6427.838 3000 802827340 6422.619 100.00% Conn: 1 Mbps: 6422.619 Peak Mbps: 6427.838 Avg Mbps: 6422.619 4000 809283720 6474.270 100.00% Conn: 1 Mbps: 6474.270 Peak Mbps: 6474.270 Avg Mbps: 6474.270 5000 800316192 6402.530 100.00% Conn: 1 Mbps: 6402.530 Peak Mbps: 6474.270 Avg Mbps: 6402.530 --- 169.254.0.13 tcpbench statistics --- 4783839800 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6040.479/6353.547/6474.270/158.288 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 708511064 5662.426 100.00% Conn: 1 Mbps: 5662.426 Peak Mbps: 5662.426 Avg Mbps: 5662.426 2001 747293800 5984.335 100.00% Conn: 1 Mbps: 5984.335 Peak Mbps: 5984.335 Avg Mbps: 5984.335 3001 752859256 6022.874 100.00% Conn: 1 Mbps: 6022.874 Peak Mbps: 6022.874 Avg Mbps: 6022.874 4001 754974992 6039.800 100.00% Conn: 1 Mbps: 6039.800 Peak Mbps: 6039.800 Avg Mbps: 6039.800 5001 752844960 6022.760 100.00% Conn: 1 Mbps: 6022.760 Peak Mbps: 6039.800 Avg Mbps: 6022.760 --- fc00::13 tcpbench statistics --- 4475034024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5662.426/5946.439/6039.800/143.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.044 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.044/0.044/0.044/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.049 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.049/0.049/0.049/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 367930912 2943.447 100.00% Conn: 1 Mbps: 2943.447 Peak Mbps: 2943.447 Avg Mbps: 2943.447 2001 378798080 3030.385 100.00% Conn: 1 Mbps: 3030.385 Peak Mbps: 3030.385 Avg Mbps: 3030.385 3001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3057.648 Avg Mbps: 3057.648 4001 381157376 3049.259 100.00% Conn: 1 Mbps: 3049.259 Peak Mbps: 3057.648 Avg Mbps: 3049.259 5002 378476728 3027.814 100.00% Conn: 1 Mbps: 3027.814 Peak Mbps: 3057.648 Avg Mbps: 3027.814 --- 169.254.1.11 tcpbench statistics --- 2269862192 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2943.447/3021.710/3057.648/40.714 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 349371864 2792.183 100.00% Conn: 1 Mbps: 2792.183 Peak Mbps: 2792.183 Avg Mbps: 2792.183 2001 361758720 2894.070 100.00% Conn: 1 Mbps: 2894.070 Peak Mbps: 2894.070 Avg Mbps: 2894.070 3001 361758720 2894.070 100.00% Conn: 1 Mbps: 2894.070 Peak Mbps: 2894.070 Avg Mbps: 2894.070 4002 361240504 2889.924 100.00% Conn: 1 Mbps: 2889.924 Peak Mbps: 2894.070 Avg Mbps: 2889.924 5002 360448000 2883.584 100.00% Conn: 1 Mbps: 2883.584 Peak Mbps: 2894.070 Avg Mbps: 2883.584 --- fc00:0:0:1::11 tcpbench statistics --- 2151355792 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2792.183/2870.766/2894.070/39.479 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.044 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.044/0.044/0.044/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 907073536 7256.588 100.00% Conn: 1 Mbps: 7256.588 Peak Mbps: 7256.588 Avg Mbps: 7256.588 2000 905375032 7250.251 100.00% Conn: 1 Mbps: 7250.251 Peak Mbps: 7256.588 Avg Mbps: 7250.251 3000 905082536 7240.660 100.00% Conn: 1 Mbps: 7240.660 Peak Mbps: 7256.588 Avg Mbps: 7240.660 4000 906642032 7253.136 100.00% Conn: 1 Mbps: 7253.136 Peak Mbps: 7256.588 Avg Mbps: 7253.136 5000 907019960 7256.160 100.00% Conn: 1 Mbps: 7256.160 Peak Mbps: 7256.588 Avg Mbps: 7256.160 --- 169.254.1.12 tcpbench statistics --- 5436718720 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7240.660/7251.359/7256.588/5.818 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 928904004 7431.232 100.00% Conn: 1 Mbps: 7431.232 Peak Mbps: 7431.232 Avg Mbps: 7431.232 2000 930102096 7448.265 100.00% Conn: 1 Mbps: 7448.265 Peak Mbps: 7448.265 Avg Mbps: 7448.265 3000 933003792 7464.030 100.00% Conn: 1 Mbps: 7464.030 Peak Mbps: 7464.030 Avg Mbps: 7464.030 4000 932708196 7461.666 100.00% Conn: 1 Mbps: 7461.666 Peak Mbps: 7464.030 Avg Mbps: 7461.666 5000 931383012 7451.064 100.00% Conn: 1 Mbps: 7451.064 Peak Mbps: 7464.030 Avg Mbps: 7451.064 --- fc00:0:0:1::12 tcpbench statistics --- 5589397632 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7431.232/7451.251/7464.030/11.675 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.049 ms --- fc00::13 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-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 1260327354 10082.619 100.00% Conn: 1 Mbps: 10082.619 Peak Mbps: 10082.619 Avg Mbps: 10082.619 2000 1260482048 10093.950 100.00% Conn: 1 Mbps: 10093.950 Peak Mbps: 10093.950 Avg Mbps: 10093.950 3000 1261463528 10091.708 100.00% Conn: 1 Mbps: 10091.708 Peak Mbps: 10093.950 Avg Mbps: 10091.708 4000 1259664148 10077.313 100.00% Conn: 1 Mbps: 10077.313 Peak Mbps: 10093.950 Avg Mbps: 10077.313 5000 1259107976 10072.864 100.00% Conn: 1 Mbps: 10072.864 Peak Mbps: 10093.950 Avg Mbps: 10072.864 --- 169.254.0.13 tcpbench statistics --- 7562083274 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10072.864/10083.691/10093.950/8.107 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 1203076756 9624.614 100.00% Conn: 1 Mbps: 9624.614 Peak Mbps: 9624.614 Avg Mbps: 9624.614 2000 1213839000 9720.432 100.00% Conn: 1 Mbps: 9720.432 Peak Mbps: 9720.432 Avg Mbps: 9720.432 3000 1210144352 9681.155 100.00% Conn: 1 Mbps: 9681.155 Peak Mbps: 9720.432 Avg Mbps: 9681.155 4000 1213021600 9704.173 100.00% Conn: 1 Mbps: 9704.173 Peak Mbps: 9720.432 Avg Mbps: 9704.173 5000 1214460224 9715.682 100.00% Conn: 1 Mbps: 9715.682 Peak Mbps: 9720.432 Avg Mbps: 9715.682 --- fc00::13 tcpbench statistics --- 7271062004 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9624.614/9689.211/9720.432/35.034 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.047 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.047/0.047/0.047/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 373476368 2984.826 100.00% Conn: 1 Mbps: 2984.826 Peak Mbps: 2984.826 Avg Mbps: 2984.826 2001 375128064 3001.025 100.00% Conn: 1 Mbps: 3001.025 Peak Mbps: 3001.025 Avg Mbps: 3001.025 3001 380108800 3040.870 100.00% Conn: 1 Mbps: 3040.870 Peak Mbps: 3040.870 Avg Mbps: 3040.870 4002 377225216 3017.802 100.00% Conn: 1 Mbps: 3017.802 Peak Mbps: 3040.870 Avg Mbps: 3017.802 5002 376347736 3010.782 100.00% Conn: 1 Mbps: 3010.782 Peak Mbps: 3040.870 Avg Mbps: 3010.782 --- 169.254.1.11 tcpbench statistics --- 2258987112 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2984.826/3011.061/3040.870/18.564 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 847849808 6782.798 100.00% Conn: 1 Mbps: 6782.798 Peak Mbps: 6782.798 Avg Mbps: 6782.798 2000 893137664 7145.101 100.00% Conn: 1 Mbps: 7145.101 Peak Mbps: 7145.101 Avg Mbps: 7145.101 3000 887250928 7105.113 100.00% Conn: 1 Mbps: 7105.113 Peak Mbps: 7145.101 Avg Mbps: 7105.113 4000 889975008 7119.800 100.00% Conn: 1 Mbps: 7119.800 Peak Mbps: 7145.101 Avg Mbps: 7119.800 5001 910201040 7281.608 100.00% Conn: 1 Mbps: 7281.608 Peak Mbps: 7281.608 Avg Mbps: 7281.608 --- fc00:0:0:1::11 tcpbench statistics --- 5341793408 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6782.798/7086.884/7281.608/164.433 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.044 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.044/0.044/0.044/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.048 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.048/0.048/0.048/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 1258078474 10064.628 100.00% Conn: 1 Mbps: 10064.628 Peak Mbps: 10064.628 Avg Mbps: 10064.628 2000 1259075260 10082.685 100.00% Conn: 1 Mbps: 10082.685 Peak Mbps: 10082.685 Avg Mbps: 10082.685 3000 1260154888 10081.239 100.00% Conn: 1 Mbps: 10081.239 Peak Mbps: 10082.685 Avg Mbps: 10081.239 4000 1258486372 10067.891 100.00% Conn: 1 Mbps: 10067.891 Peak Mbps: 10082.685 Avg Mbps: 10067.891 5000 1260318468 10082.548 100.00% Conn: 1 Mbps: 10082.548 Peak Mbps: 10082.685 Avg Mbps: 10082.548 --- 169.254.1.12 tcpbench statistics --- 7555319586 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10064.628/10075.798/10082.685/7.873 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 1235566068 9884.529 100.00% Conn: 1 Mbps: 9884.529 Peak Mbps: 9884.529 Avg Mbps: 9884.529 2000 1240649720 9935.133 100.00% Conn: 1 Mbps: 9935.133 Peak Mbps: 9935.133 Avg Mbps: 9935.133 3000 1244311672 9954.493 100.00% Conn: 1 Mbps: 9954.493 Peak Mbps: 9954.493 Avg Mbps: 9954.493 4000 1241794080 9934.353 100.00% Conn: 1 Mbps: 9934.353 Peak Mbps: 9954.493 Avg Mbps: 9934.353 5000 1244180888 9953.447 100.00% Conn: 1 Mbps: 9953.447 Peak Mbps: 9954.493 Avg Mbps: 9953.447 --- fc00:0:0:1::12 tcpbench statistics --- 7451566108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9884.529/9932.391/9954.493/25.432 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.043 ms --- fc00::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-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 1254276350 10034.211 100.00% Conn: 1 Mbps: 10034.211 Peak Mbps: 10034.211 Avg Mbps: 10034.211 2000 1259467852 10085.829 100.00% Conn: 1 Mbps: 10085.829 Peak Mbps: 10085.829 Avg Mbps: 10085.829 3000 1261365380 10090.923 100.00% Conn: 1 Mbps: 10090.923 Peak Mbps: 10090.923 Avg Mbps: 10090.923 4000 1262297786 10098.382 100.00% Conn: 1 Mbps: 10098.382 Peak Mbps: 10098.382 Avg Mbps: 10098.382 5000 1262772168 10102.177 100.00% Conn: 1 Mbps: 10102.177 Peak Mbps: 10102.177 Avg Mbps: 10102.177 --- 169.254.0.13 tcpbench statistics --- 7562133804 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10034.211/10082.304/10102.177/24.711 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 1264824556 10118.596 100.00% Conn: 1 Mbps: 10118.596 Peak Mbps: 10118.596 Avg Mbps: 10118.596 2000 1263242656 10116.057 100.00% Conn: 1 Mbps: 10116.057 Peak Mbps: 10118.596 Avg Mbps: 10116.057 3000 1259646096 10077.169 100.00% Conn: 1 Mbps: 10077.169 Peak Mbps: 10118.596 Avg Mbps: 10077.169 4000 1262065600 10096.525 100.00% Conn: 1 Mbps: 10096.525 Peak Mbps: 10118.596 Avg Mbps: 10096.525 5000 1260921240 10087.370 100.00% Conn: 1 Mbps: 10087.370 Peak Mbps: 10118.596 Avg Mbps: 10087.370 --- fc00::13 tcpbench statistics --- 7573452364 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10077.169/10099.143/10118.596/16.080 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.91s