START sys/net/pair 2025-04-04T01:42:10Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.039 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.039/0.039/0.039/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.045 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 927857468 7422.860 100.00% Conn: 1 Mbps: 7422.860 Peak Mbps: 7422.860 Avg Mbps: 7422.860 2000 928692008 7436.973 100.00% Conn: 1 Mbps: 7436.973 Peak Mbps: 7436.973 Avg Mbps: 7436.973 3000 927929000 7423.432 100.00% Conn: 1 Mbps: 7423.432 Peak Mbps: 7436.973 Avg Mbps: 7423.432 4000 928103856 7424.831 100.00% Conn: 1 Mbps: 7424.831 Peak Mbps: 7436.973 Avg Mbps: 7424.831 5000 928803280 7430.426 100.00% Conn: 1 Mbps: 7430.426 Peak Mbps: 7436.973 Avg Mbps: 7430.426 --- 169.254.1.11 tcpbench statistics --- 5568591344 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7422.860/7427.704/7436.973/5.353 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 934917328 7479.339 100.00% Conn: 1 Mbps: 7479.339 Peak Mbps: 7479.339 Avg Mbps: 7479.339 2000 937644560 7508.665 100.00% Conn: 1 Mbps: 7508.665 Peak Mbps: 7508.665 Avg Mbps: 7508.665 3000 939047816 7512.383 100.00% Conn: 1 Mbps: 7512.383 Peak Mbps: 7512.383 Avg Mbps: 7512.383 4000 939800976 7518.408 100.00% Conn: 1 Mbps: 7518.408 Peak Mbps: 7518.408 Avg Mbps: 7518.408 5000 939571064 7516.569 100.00% Conn: 1 Mbps: 7516.569 Peak Mbps: 7518.408 Avg Mbps: 7516.569 --- fc00:0:0:1::11 tcpbench statistics --- 5626969352 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7479.339/7507.073/7518.408/14.273 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.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 375364368 2999.915 100.00% Conn: 1 Mbps: 2999.915 Peak Mbps: 2999.915 Avg Mbps: 2999.915 2001 388759552 3113.190 100.00% Conn: 1 Mbps: 3113.190 Peak Mbps: 3113.190 Avg Mbps: 3113.190 3001 384615528 3076.924 100.00% Conn: 1 Mbps: 3076.924 Peak Mbps: 3113.190 Avg Mbps: 3076.924 4001 386924544 3098.495 100.00% Conn: 1 Mbps: 3098.495 Peak Mbps: 3113.190 Avg Mbps: 3098.495 5001 385875968 3087.008 100.00% Conn: 1 Mbps: 3087.008 Peak Mbps: 3113.190 Avg Mbps: 3087.008 --- 169.254.1.12 tcpbench statistics --- 2307153784 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2999.915/3075.106/3113.190/39.487 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 356020680 2845.320 100.00% Conn: 1 Mbps: 2845.320 Peak Mbps: 2845.320 Avg Mbps: 2845.320 2001 366739456 2933.916 100.00% Conn: 1 Mbps: 2933.916 Peak Mbps: 2933.916 Avg Mbps: 2933.916 3001 364904448 2922.158 100.00% Conn: 1 Mbps: 2922.158 Peak Mbps: 2933.916 Avg Mbps: 2922.158 4001 366433776 2931.470 100.00% Conn: 1 Mbps: 2931.470 Peak Mbps: 2933.916 Avg Mbps: 2931.470 5002 367525888 2940.207 100.00% Conn: 1 Mbps: 2940.207 Peak Mbps: 2940.207 Avg Mbps: 2940.207 --- fc00:0:0:1::12 tcpbench statistics --- 2187839416 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2845.320/2914.614/2940.207/35.129 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.067 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.067/0.067/0.067/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 764676940 6117.416 100.00% Conn: 1 Mbps: 6117.416 Peak Mbps: 6117.416 Avg Mbps: 6117.416 2000 814360028 6521.402 100.00% Conn: 1 Mbps: 6521.402 Peak Mbps: 6521.402 Avg Mbps: 6521.402 3000 816029108 6528.233 100.00% Conn: 1 Mbps: 6528.233 Peak Mbps: 6528.233 Avg Mbps: 6528.233 4000 818008020 6544.064 100.00% Conn: 1 Mbps: 6544.064 Peak Mbps: 6544.064 Avg Mbps: 6544.064 5000 820723516 6572.360 100.00% Conn: 1 Mbps: 6572.360 Peak Mbps: 6572.360 Avg Mbps: 6572.360 --- 169.254.0.13 tcpbench statistics --- 4864077064 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6117.416/6456.695/6572.360/170.544 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 711276376 5690.211 100.00% Conn: 1 Mbps: 5690.211 Peak Mbps: 5690.211 Avg Mbps: 5690.211 2001 749783192 5998.266 100.00% Conn: 1 Mbps: 5998.266 Peak Mbps: 5998.266 Avg Mbps: 5998.266 3000 747601952 5986.802 100.00% Conn: 1 Mbps: 5986.802 Peak Mbps: 5998.266 Avg Mbps: 5986.802 4001 745220544 5961.764 100.00% Conn: 1 Mbps: 5961.764 Peak Mbps: 5998.266 Avg Mbps: 5961.764 5001 742005824 5936.047 100.00% Conn: 1 Mbps: 5936.047 Peak Mbps: 5998.266 Avg Mbps: 5936.047 --- fc00::13 tcpbench statistics --- 4451498680 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5690.211/5914.618/5998.266/114.235 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.041 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.041/0.041/0.041/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 1001 373022704 2981.200 100.00% Conn: 1 Mbps: 2981.200 Peak Mbps: 2981.200 Avg Mbps: 2981.200 2001 384040960 3075.403 100.00% Conn: 1 Mbps: 3075.403 Peak Mbps: 3075.403 Avg Mbps: 3075.403 3001 385351680 3082.813 100.00% Conn: 1 Mbps: 3082.813 Peak Mbps: 3082.813 Avg Mbps: 3082.813 4001 384303104 3074.425 100.00% Conn: 1 Mbps: 3074.425 Peak Mbps: 3082.813 Avg Mbps: 3074.425 5001 382730240 3064.907 100.00% Conn: 1 Mbps: 3064.907 Peak Mbps: 3082.813 Avg Mbps: 3064.907 --- 169.254.1.11 tcpbench statistics --- 2295653720 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2981.200/3055.750/3082.813/37.707 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 358427592 2864.556 100.00% Conn: 1 Mbps: 2864.556 Peak Mbps: 2864.556 Avg Mbps: 2864.556 2001 365077992 2920.624 100.00% Conn: 1 Mbps: 2920.624 Peak Mbps: 2920.624 Avg Mbps: 2920.624 3002 362573772 2900.590 100.00% Conn: 1 Mbps: 2900.590 Peak Mbps: 2920.624 Avg Mbps: 2900.590 4002 365690880 2925.527 100.00% Conn: 1 Mbps: 2925.527 Peak Mbps: 2925.527 Avg Mbps: 2925.527 5002 363331584 2906.653 100.00% Conn: 1 Mbps: 2906.653 Peak Mbps: 2925.527 Avg Mbps: 2906.653 --- fc00:0:0:1::11 tcpbench statistics --- 2176598396 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2864.556/2903.590/2925.527/21.510 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.039 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.039/0.039/0.039/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 932173168 7457.385 100.00% Conn: 1 Mbps: 7457.385 Peak Mbps: 7457.385 Avg Mbps: 7457.385 2000 934922920 7486.870 100.00% Conn: 1 Mbps: 7486.870 Peak Mbps: 7486.870 Avg Mbps: 7486.870 3000 933037624 7464.301 100.00% Conn: 1 Mbps: 7464.301 Peak Mbps: 7486.870 Avg Mbps: 7464.301 4000 934558024 7476.464 100.00% Conn: 1 Mbps: 7476.464 Peak Mbps: 7486.870 Avg Mbps: 7476.464 5000 934149688 7473.198 100.00% Conn: 1 Mbps: 7473.198 Peak Mbps: 7486.870 Avg Mbps: 7473.198 --- 169.254.1.12 tcpbench statistics --- 5604484000 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7457.385/7471.644/7486.870/10.146 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 904866480 7238.932 100.00% Conn: 1 Mbps: 7238.932 Peak Mbps: 7238.932 Avg Mbps: 7238.932 2000 903527016 7235.452 100.00% Conn: 1 Mbps: 7235.452 Peak Mbps: 7238.932 Avg Mbps: 7235.452 3000 903678384 7229.427 100.00% Conn: 1 Mbps: 7229.427 Peak Mbps: 7238.932 Avg Mbps: 7229.427 4000 901085136 7208.681 100.00% Conn: 1 Mbps: 7208.681 Peak Mbps: 7238.932 Avg Mbps: 7208.681 5000 900989460 7207.916 100.00% Conn: 1 Mbps: 7207.916 Peak Mbps: 7238.932 Avg Mbps: 7207.916 --- fc00:0:0:1::12 tcpbench statistics --- 5414170608 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7207.916/7224.081/7238.932/13.243 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 1258134290 10065.074 100.00% Conn: 1 Mbps: 10065.074 Peak Mbps: 10065.074 Avg Mbps: 10065.074 2000 1261234516 10099.976 100.00% Conn: 1 Mbps: 10099.976 Peak Mbps: 10099.976 Avg Mbps: 10099.976 3000 1264391610 10115.133 100.00% Conn: 1 Mbps: 10115.133 Peak Mbps: 10115.133 Avg Mbps: 10115.133 4000 1263557352 10108.459 100.00% Conn: 1 Mbps: 10108.459 Peak Mbps: 10115.133 Avg Mbps: 10108.459 5000 1265716608 10125.733 100.00% Conn: 1 Mbps: 10125.733 Peak Mbps: 10125.733 Avg Mbps: 10125.733 --- 169.254.0.13 tcpbench statistics --- 7579568884 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10065.074/10102.875/10125.733/20.694 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 1240702836 9925.623 100.00% Conn: 1 Mbps: 9925.623 Peak Mbps: 9925.623 Avg Mbps: 9925.623 2000 1244180888 9963.411 100.00% Conn: 1 Mbps: 9963.411 Peak Mbps: 9963.411 Avg Mbps: 9963.411 3000 1245096376 9960.771 100.00% Conn: 1 Mbps: 9960.771 Peak Mbps: 9963.411 Avg Mbps: 9960.771 4000 1245979168 9967.833 100.00% Conn: 1 Mbps: 9967.833 Peak Mbps: 9967.833 Avg Mbps: 9967.833 5000 1247123528 9976.988 100.00% Conn: 1 Mbps: 9976.988 Peak Mbps: 9976.988 Avg Mbps: 9976.988 --- fc00::13 tcpbench statistics --- 7469454316 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9925.623/9958.925/9976.988/17.540 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.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-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.056 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.056/0.056/0.056/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 373280624 2983.262 100.00% Conn: 1 Mbps: 2983.262 Peak Mbps: 2983.262 Avg Mbps: 2983.262 2001 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 3001 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3068.133 Avg Mbps: 3059.745 4002 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3068.133 Avg Mbps: 3057.648 5002 379584512 3036.676 100.00% Conn: 1 Mbps: 3036.676 Peak Mbps: 3068.133 Avg Mbps: 3036.676 --- 169.254.1.11 tcpbench statistics --- 2279067504 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2983.262/3041.093/3068.133/30.715 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 857916344 6863.331 100.00% Conn: 1 Mbps: 6863.331 Peak Mbps: 6863.331 Avg Mbps: 6863.331 2000 898367488 7186.940 100.00% Conn: 1 Mbps: 7186.940 Peak Mbps: 7186.940 Avg Mbps: 7186.940 3000 914627968 7317.024 100.00% Conn: 1 Mbps: 7317.024 Peak Mbps: 7317.024 Avg Mbps: 7317.024 4001 915132136 7321.057 100.00% Conn: 1 Mbps: 7321.057 Peak Mbps: 7321.057 Avg Mbps: 7321.057 5001 918969160 7351.753 100.00% Conn: 1 Mbps: 7351.753 Peak Mbps: 7351.753 Avg Mbps: 7351.753 --- fc00:0:0:1::11 tcpbench statistics --- 5402332008 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6863.331/7208.021/7351.753/181.424 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.047 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.047/0.047/0.047/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 1255656470 10045.252 100.00% Conn: 1 Mbps: 10045.252 Peak Mbps: 10045.252 Avg Mbps: 10045.252 2000 1253758910 10040.111 100.00% Conn: 1 Mbps: 10040.111 Peak Mbps: 10045.252 Avg Mbps: 10040.111 3000 1254625884 10037.007 100.00% Conn: 1 Mbps: 10037.007 Peak Mbps: 10045.252 Avg Mbps: 10037.007 4000 1253513540 10028.108 100.00% Conn: 1 Mbps: 10028.108 Peak Mbps: 10045.252 Avg Mbps: 10028.108 5000 1254495020 10035.960 100.00% Conn: 1 Mbps: 10035.960 Peak Mbps: 10045.252 Avg Mbps: 10035.960 --- 169.254.1.12 tcpbench statistics --- 7525988672 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10028.108/10037.288/10045.252/5.613 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 1238573700 9908.590 100.00% Conn: 1 Mbps: 9908.590 Peak Mbps: 9908.590 Avg Mbps: 9908.590 2000 1245946472 9977.549 100.00% Conn: 1 Mbps: 9977.549 Peak Mbps: 9977.549 Avg Mbps: 9977.549 3000 1245161768 9961.294 100.00% Conn: 1 Mbps: 9961.294 Peak Mbps: 9977.549 Avg Mbps: 9961.294 4000 1244213584 9953.709 100.00% Conn: 1 Mbps: 9953.709 Peak Mbps: 9977.549 Avg Mbps: 9953.709 5000 1242251824 9938.015 100.00% Conn: 1 Mbps: 9938.015 Peak Mbps: 9977.549 Avg Mbps: 9938.015 --- fc00:0:0:1::12 tcpbench statistics --- 7461178332 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9908.590/9947.831/9977.549/23.389 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.040 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.040/0.040/0.040/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 1255797698 10046.382 100.00% Conn: 1 Mbps: 10046.382 Peak Mbps: 10046.382 Avg Mbps: 10046.382 2000 1257848410 10072.860 100.00% Conn: 1 Mbps: 10072.860 Peak Mbps: 10072.860 Avg Mbps: 10072.860 3000 1258764458 10070.116 100.00% Conn: 1 Mbps: 10070.116 Peak Mbps: 10072.860 Avg Mbps: 10070.116 4000 1261234516 10089.876 100.00% Conn: 1 Mbps: 10089.876 Peak Mbps: 10089.876 Avg Mbps: 10089.876 5000 1260743776 10085.950 100.00% Conn: 1 Mbps: 10085.950 Peak Mbps: 10089.876 Avg Mbps: 10085.950 --- 169.254.0.13 tcpbench statistics --- 7552891588 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10046.382/10073.037/10089.876/15.293 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 1281498436 10251.987 100.00% Conn: 1 Mbps: 10251.987 Peak Mbps: 10251.987 Avg Mbps: 10251.987 2000 1285050888 10290.698 100.00% Conn: 1 Mbps: 10290.698 Peak Mbps: 10290.698 Avg Mbps: 10290.698 3000 1279361784 10234.894 100.00% Conn: 1 Mbps: 10234.894 Peak Mbps: 10290.698 Avg Mbps: 10234.894 4000 1283841136 10270.729 100.00% Conn: 1 Mbps: 10270.729 Peak Mbps: 10290.698 Avg Mbps: 10270.729 5000 1281061976 10248.496 100.00% Conn: 1 Mbps: 10248.496 Peak Mbps: 10290.698 Avg Mbps: 10248.496 --- fc00::13 tcpbench statistics --- 7697499908 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10234.894/10259.361/10290.698/19.402 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