START sys/net/pair 2025-03-06T02:42:53Z ==== 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 938603164 7508.825 100.00% Conn: 1 Mbps: 7508.825 Peak Mbps: 7508.825 Avg Mbps: 7508.825 2000 939636404 7524.616 100.00% Conn: 1 Mbps: 7524.616 Peak Mbps: 7524.616 Avg Mbps: 7524.616 3000 936767176 7494.137 100.00% Conn: 1 Mbps: 7494.137 Peak Mbps: 7524.616 Avg Mbps: 7494.137 4000 938181920 7505.455 100.00% Conn: 1 Mbps: 7505.455 Peak Mbps: 7524.616 Avg Mbps: 7505.455 5000 938015012 7504.120 100.00% Conn: 1 Mbps: 7504.120 Peak Mbps: 7524.616 Avg Mbps: 7504.120 --- 169.254.1.11 tcpbench statistics --- 5626993248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7494.137/7507.431/7524.616/9.888 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 944042456 7552.340 100.00% Conn: 1 Mbps: 7552.340 Peak Mbps: 7552.340 Avg Mbps: 7552.340 2000 949504848 7603.642 100.00% Conn: 1 Mbps: 7603.642 Peak Mbps: 7603.642 Avg Mbps: 7603.642 3000 949171872 7593.375 100.00% Conn: 1 Mbps: 7593.375 Peak Mbps: 7603.642 Avg Mbps: 7593.375 4000 946127520 7569.020 100.00% Conn: 1 Mbps: 7569.020 Peak Mbps: 7603.642 Avg Mbps: 7569.020 5000 948521776 7588.174 100.00% Conn: 1 Mbps: 7588.174 Peak Mbps: 7603.642 Avg Mbps: 7588.174 --- fc00:0:0:1::11 tcpbench statistics --- 5685454208 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7552.340/7581.310/7603.642/18.340 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.116 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.116/0.116/0.116/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 370792848 2963.379 100.00% Conn: 1 Mbps: 2963.379 Peak Mbps: 2963.379 Avg Mbps: 2963.379 2001 381157376 3052.311 100.00% Conn: 1 Mbps: 3052.311 Peak Mbps: 3052.311 Avg Mbps: 3052.311 3001 384565248 3076.522 100.00% Conn: 1 Mbps: 3076.522 Peak Mbps: 3076.522 Avg Mbps: 3076.522 4001 384374304 3074.994 100.00% Conn: 1 Mbps: 3074.994 Peak Mbps: 3076.522 Avg Mbps: 3074.994 5002 385280640 3082.245 100.00% Conn: 1 Mbps: 3082.245 Peak Mbps: 3082.245 Avg Mbps: 3082.245 --- 169.254.1.12 tcpbench statistics --- 2292046384 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2963.379/3049.890/3082.245/44.444 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 352021176 2813.356 100.00% Conn: 1 Mbps: 2813.356 Peak Mbps: 2813.356 Avg Mbps: 2813.356 2001 364380160 2917.959 100.00% Conn: 1 Mbps: 2917.959 Peak Mbps: 2917.959 Avg Mbps: 2917.959 3001 363069440 2904.556 100.00% Conn: 1 Mbps: 2904.556 Peak Mbps: 2917.959 Avg Mbps: 2904.556 4002 364380160 2915.041 100.00% Conn: 1 Mbps: 2915.041 Peak Mbps: 2917.959 Avg Mbps: 2915.041 5002 365166592 2921.333 100.00% Conn: 1 Mbps: 2921.333 Peak Mbps: 2921.333 Avg Mbps: 2921.333 --- fc00:0:0:1::12 tcpbench statistics --- 2173659832 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2813.356/2894.449/2921.333/40.933 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 767601664 6140.813 100.00% Conn: 1 Mbps: 6140.813 Peak Mbps: 6140.813 Avg Mbps: 6140.813 2000 807024304 6456.194 100.00% Conn: 1 Mbps: 6456.194 Peak Mbps: 6456.194 Avg Mbps: 6456.194 3000 805466216 6443.730 100.00% Conn: 1 Mbps: 6443.730 Peak Mbps: 6456.194 Avg Mbps: 6443.730 4000 806531876 6458.714 100.00% Conn: 1 Mbps: 6458.714 Peak Mbps: 6458.714 Avg Mbps: 6458.714 5000 821385780 6571.086 100.00% Conn: 1 Mbps: 6571.086 Peak Mbps: 6571.086 Avg Mbps: 6571.086 --- 169.254.0.13 tcpbench statistics --- 4836922936 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6140.813/6414.107/6571.086/144.202 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 718119256 5744.954 100.00% Conn: 1 Mbps: 5744.954 Peak Mbps: 5744.954 Avg Mbps: 5744.954 2000 768777120 6150.217 100.00% Conn: 1 Mbps: 6150.217 Peak Mbps: 6150.217 Avg Mbps: 6150.217 3000 747414800 5985.304 100.00% Conn: 1 Mbps: 5985.304 Peak Mbps: 6150.217 Avg Mbps: 5985.304 4000 750455512 6009.654 100.00% Conn: 1 Mbps: 6009.654 Peak Mbps: 6150.217 Avg Mbps: 6009.654 5000 746587688 5972.702 100.00% Conn: 1 Mbps: 5972.702 Peak Mbps: 6150.217 Avg Mbps: 5972.702 --- fc00::13 tcpbench statistics --- 4482503264 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5744.954/5972.566/6150.217/130.311 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.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 372431128 2976.473 100.00% Conn: 1 Mbps: 2976.473 Peak Mbps: 2976.473 Avg Mbps: 2976.473 2001 384731776 3077.854 100.00% Conn: 1 Mbps: 3077.854 Peak Mbps: 3077.854 Avg Mbps: 3077.854 3001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3077.854 Avg Mbps: 3055.550 4001 384040960 3072.328 100.00% Conn: 1 Mbps: 3072.328 Peak Mbps: 3077.854 Avg Mbps: 3072.328 5002 384303104 3074.425 100.00% Conn: 1 Mbps: 3074.425 Peak Mbps: 3077.854 Avg Mbps: 3074.425 --- 169.254.1.11 tcpbench statistics --- 2291491736 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2976.473/3051.326/3077.854/38.208 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 351727492 2811.009 100.00% Conn: 1 Mbps: 2811.009 Peak Mbps: 2811.009 Avg Mbps: 2811.009 2001 362020864 2896.167 100.00% Conn: 1 Mbps: 2896.167 Peak Mbps: 2896.167 Avg Mbps: 2896.167 3002 359137280 2873.098 100.00% Conn: 1 Mbps: 2873.098 Peak Mbps: 2896.167 Avg Mbps: 2873.098 4002 358875136 2871.001 100.00% Conn: 1 Mbps: 2871.001 Peak Mbps: 2896.167 Avg Mbps: 2871.001 5003 361234432 2889.875 100.00% Conn: 1 Mbps: 2889.875 Peak Mbps: 2896.167 Avg Mbps: 2889.875 --- fc00:0:0:1::11 tcpbench statistics --- 2154229636 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2811.009/2868.230/2896.167/30.182 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.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-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 909842112 7278.737 100.00% Conn: 1 Mbps: 7278.737 Peak Mbps: 7278.737 Avg Mbps: 7278.737 2000 906988104 7263.168 100.00% Conn: 1 Mbps: 7263.168 Peak Mbps: 7278.737 Avg Mbps: 7263.168 3000 905543000 7244.344 100.00% Conn: 1 Mbps: 7244.344 Peak Mbps: 7278.737 Avg Mbps: 7244.344 4000 905267880 7242.143 100.00% Conn: 1 Mbps: 7242.143 Peak Mbps: 7278.737 Avg Mbps: 7242.143 5000 907083672 7256.669 100.00% Conn: 1 Mbps: 7256.669 Peak Mbps: 7278.737 Avg Mbps: 7256.669 --- 169.254.1.12 tcpbench statistics --- 5440661624 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7242.143/7257.012/7278.737/13.353 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 904463784 7235.710 100.00% Conn: 1 Mbps: 7235.710 Peak Mbps: 7235.710 Avg Mbps: 7235.710 2000 903052920 7231.655 100.00% Conn: 1 Mbps: 7231.655 Peak Mbps: 7235.710 Avg Mbps: 7231.655 3000 900429684 7203.437 100.00% Conn: 1 Mbps: 7203.437 Peak Mbps: 7235.710 Avg Mbps: 7203.437 4000 902480292 7219.842 100.00% Conn: 1 Mbps: 7219.842 Peak Mbps: 7235.710 Avg Mbps: 7219.842 5000 903081480 7224.652 100.00% Conn: 1 Mbps: 7224.652 Peak Mbps: 7235.710 Avg Mbps: 7224.652 --- fc00:0:0:1::12 tcpbench statistics --- 5414337684 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7203.437/7223.059/7235.710/11.241 Mbps ==== run-ping-2-3 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.042 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.042/0.042/0.042/0.000 ms ==== run-ping6-2-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.047 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-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 1269812430 10158.499 100.00% Conn: 1 Mbps: 10158.499 Peak Mbps: 10158.499 Avg Mbps: 10158.499 2000 1273470300 10197.960 100.00% Conn: 1 Mbps: 10197.960 Peak Mbps: 10197.960 Avg Mbps: 10197.960 3000 1274320916 10194.567 100.00% Conn: 1 Mbps: 10194.567 Peak Mbps: 10197.960 Avg Mbps: 10194.567 4000 1274517212 10196.138 100.00% Conn: 1 Mbps: 10196.138 Peak Mbps: 10197.960 Avg Mbps: 10196.138 5000 1274059188 10192.474 100.00% Conn: 1 Mbps: 10192.474 Peak Mbps: 10197.960 Avg Mbps: 10192.474 --- 169.254.0.13 tcpbench statistics --- 7638734298 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10158.499/10187.928/10197.960/14.825 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 1220598932 9764.791 100.00% Conn: 1 Mbps: 9764.791 Peak Mbps: 9764.791 Avg Mbps: 9764.791 2000 1226198088 9819.404 100.00% Conn: 1 Mbps: 9819.404 Peak Mbps: 9819.404 Avg Mbps: 9819.404 3000 1226525048 9812.200 100.00% Conn: 1 Mbps: 9812.200 Peak Mbps: 9819.404 Avg Mbps: 9812.200 4000 1233293120 9866.345 100.00% Conn: 1 Mbps: 9866.345 Peak Mbps: 9866.345 Avg Mbps: 9866.345 5000 1220574376 9764.595 100.00% Conn: 1 Mbps: 9764.595 Peak Mbps: 9866.345 Avg Mbps: 9764.595 --- fc00::13 tcpbench statistics --- 7355839852 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9764.595/9805.467/9866.345/38.133 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.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 1000 376179704 3009.438 100.00% Conn: 1 Mbps: 3009.438 Peak Mbps: 3009.438 Avg Mbps: 3009.438 2001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3055.550 Avg Mbps: 3055.550 3001 382992384 3067.006 100.00% Conn: 1 Mbps: 3067.006 Peak Mbps: 3067.006 Avg Mbps: 3067.006 4001 388235264 3105.882 100.00% Conn: 1 Mbps: 3105.882 Peak Mbps: 3105.882 Avg Mbps: 3105.882 5001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3105.882 Avg Mbps: 3055.550 --- 169.254.1.11 tcpbench statistics --- 2293763064 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3009.438/3058.685/3105.882/30.795 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 838159240 6705.274 100.00% Conn: 1 Mbps: 6705.274 Peak Mbps: 6705.274 Avg Mbps: 6705.274 2000 879230976 7033.848 100.00% Conn: 1 Mbps: 7033.848 Peak Mbps: 7033.848 Avg Mbps: 7033.848 3000 893049392 7144.395 100.00% Conn: 1 Mbps: 7144.395 Peak Mbps: 7144.395 Avg Mbps: 7144.395 4000 918631432 7349.051 100.00% Conn: 1 Mbps: 7349.051 Peak Mbps: 7349.051 Avg Mbps: 7349.051 5001 883881560 7071.052 100.00% Conn: 1 Mbps: 7071.052 Peak Mbps: 7349.051 Avg Mbps: 7071.052 --- fc00:0:0:1::11 tcpbench statistics --- 5314879976 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6705.274/7060.724/7349.051/208.474 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.041 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.041/0.041/0.041/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 1273210646 10185.685 100.00% Conn: 1 Mbps: 10185.685 Peak Mbps: 10185.685 Avg Mbps: 10185.685 2000 1273470300 10197.960 100.00% Conn: 1 Mbps: 10197.960 Peak Mbps: 10197.960 Avg Mbps: 10197.960 3000 1273503016 10188.024 100.00% Conn: 1 Mbps: 10188.024 Peak Mbps: 10197.960 Avg Mbps: 10188.024 4000 1274026472 10192.212 100.00% Conn: 1 Mbps: 10192.212 Peak Mbps: 10197.960 Avg Mbps: 10192.212 5000 1273568448 10188.548 100.00% Conn: 1 Mbps: 10188.548 Peak Mbps: 10197.960 Avg Mbps: 10188.548 --- 169.254.1.12 tcpbench statistics --- 7639711530 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10185.685/10190.486/10197.960/4.283 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 1242982044 9943.856 100.00% Conn: 1 Mbps: 9943.856 Peak Mbps: 9943.856 Avg Mbps: 9943.856 2000 1248071712 9994.568 100.00% Conn: 1 Mbps: 9994.568 Peak Mbps: 9994.568 Avg Mbps: 9994.568 3000 1247548576 9980.389 100.00% Conn: 1 Mbps: 9980.389 Peak Mbps: 9994.568 Avg Mbps: 9980.389 4000 1241401728 9931.214 100.00% Conn: 1 Mbps: 9931.214 Peak Mbps: 9994.568 Avg Mbps: 9931.214 5000 1246273432 9970.187 100.00% Conn: 1 Mbps: 9970.187 Peak Mbps: 9994.568 Avg Mbps: 9970.187 --- fc00:0:0:1::12 tcpbench statistics --- 7471471956 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9931.214/9964.043/9994.568/23.332 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.044 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 1276247120 10209.977 100.00% Conn: 1 Mbps: 10209.977 Peak Mbps: 10209.977 Avg Mbps: 10209.977 2000 1283448680 10277.867 100.00% Conn: 1 Mbps: 10277.867 Peak Mbps: 10277.867 Avg Mbps: 10277.867 3000 1284053926 10272.431 100.00% Conn: 1 Mbps: 10272.431 Peak Mbps: 10277.867 Avg Mbps: 10272.431 4000 1282058250 10256.466 100.00% Conn: 1 Mbps: 10256.466 Peak Mbps: 10277.867 Avg Mbps: 10256.466 5000 1283792198 10270.338 100.00% Conn: 1 Mbps: 10270.338 Peak Mbps: 10277.867 Avg Mbps: 10270.338 --- 169.254.0.13 tcpbench statistics --- 7690905956 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10209.977/10257.416/10277.867/24.747 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 1283923124 10271.385 100.00% Conn: 1 Mbps: 10271.385 Peak Mbps: 10271.385 Avg Mbps: 10271.385 2000 1289824504 10328.925 100.00% Conn: 1 Mbps: 10328.925 Peak Mbps: 10328.925 Avg Mbps: 10328.925 3000 1293355672 10346.845 100.00% Conn: 1 Mbps: 10346.845 Peak Mbps: 10346.845 Avg Mbps: 10346.845 4000 1294598120 10356.785 100.00% Conn: 1 Mbps: 10356.785 Peak Mbps: 10356.785 Avg Mbps: 10356.785 5000 1290347640 10322.781 100.00% Conn: 1 Mbps: 10322.781 Peak Mbps: 10356.785 Avg Mbps: 10322.781 --- fc00::13 tcpbench statistics --- 7746712572 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10271.385/10325.344/10356.785/29.603 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m51.90s