START sys/net/pair 2025-03-21T05:01:45Z ==== 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.048 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.048/0.048/0.048/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.043 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.043/0.043/0.043/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 518066536 4144.532 100.00% Conn: 1 Mbps: 4144.532 Peak Mbps: 4144.532 Avg Mbps: 4144.532 2000 516604104 4136.970 100.00% Conn: 1 Mbps: 4136.970 Peak Mbps: 4144.532 Avg Mbps: 4136.970 3000 517063688 4136.510 100.00% Conn: 1 Mbps: 4136.510 Peak Mbps: 4144.532 Avg Mbps: 4136.510 4000 515594708 4124.758 100.00% Conn: 1 Mbps: 4124.758 Peak Mbps: 4144.532 Avg Mbps: 4124.758 5000 516159016 4129.272 100.00% Conn: 1 Mbps: 4129.272 Peak Mbps: 4144.532 Avg Mbps: 4129.272 --- 169.254.1.11 tcpbench statistics --- 3099957040 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4124.758/4134.408/4144.532/6.826 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 506805328 4054.443 100.00% Conn: 1 Mbps: 4054.443 Peak Mbps: 4054.443 Avg Mbps: 4054.443 2000 505742976 4049.994 100.00% Conn: 1 Mbps: 4049.994 Peak Mbps: 4054.443 Avg Mbps: 4049.994 3000 505917392 4047.339 100.00% Conn: 1 Mbps: 4047.339 Peak Mbps: 4054.443 Avg Mbps: 4047.339 4000 506511992 4052.096 100.00% Conn: 1 Mbps: 4052.096 Peak Mbps: 4054.443 Avg Mbps: 4052.096 5000 506297936 4050.383 100.00% Conn: 1 Mbps: 4050.383 Peak Mbps: 4054.443 Avg Mbps: 4050.383 --- fc00:0:0:1::11 tcpbench statistics --- 3037296080 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4047.339/4050.851/4054.443/2.355 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.099 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.099/0.099/0.099/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.155 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.155/0.155/0.155/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 273534152 2186.087 100.00% Conn: 1 Mbps: 2186.087 Peak Mbps: 2186.087 Avg Mbps: 2186.087 2001 286949368 2297.893 100.00% Conn: 1 Mbps: 2297.893 Peak Mbps: 2297.893 Avg Mbps: 2297.893 3001 289491944 2315.936 100.00% Conn: 1 Mbps: 2315.936 Peak Mbps: 2315.936 Avg Mbps: 2315.936 4002 289470112 2313.447 100.00% Conn: 1 Mbps: 2313.447 Peak Mbps: 2315.936 Avg Mbps: 2313.447 5002 287064760 2296.518 100.00% Conn: 1 Mbps: 2296.518 Peak Mbps: 2315.936 Avg Mbps: 2296.518 --- 169.254.1.12 tcpbench statistics --- 1711870520 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2186.087/2281.976/2315.936/48.586 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 254272940 2032.151 100.00% Conn: 1 Mbps: 2032.151 Peak Mbps: 2032.151 Avg Mbps: 2032.151 2001 271515560 2174.299 100.00% Conn: 1 Mbps: 2174.299 Peak Mbps: 2174.299 Avg Mbps: 2174.299 3001 273923280 2191.386 100.00% Conn: 1 Mbps: 2191.386 Peak Mbps: 2191.386 Avg Mbps: 2191.386 4002 275695824 2205.567 100.00% Conn: 1 Mbps: 2205.567 Peak Mbps: 2205.567 Avg Mbps: 2205.567 5003 274306296 2194.450 100.00% Conn: 1 Mbps: 2194.450 Peak Mbps: 2205.567 Avg Mbps: 2194.450 --- fc00:0:0:1::12 tcpbench statistics --- 1624493104 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2032.151/2159.571/2205.567/64.493 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.061 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.061/0.061/0.061/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.071 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/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 563112300 4504.898 100.00% Conn: 1 Mbps: 4504.898 Peak Mbps: 4504.898 Avg Mbps: 4504.898 2000 575331316 4602.651 100.00% Conn: 1 Mbps: 4602.651 Peak Mbps: 4602.651 Avg Mbps: 4602.651 3000 572651440 4581.212 100.00% Conn: 1 Mbps: 4581.212 Peak Mbps: 4602.651 Avg Mbps: 4581.212 4000 561676372 4493.411 100.00% Conn: 1 Mbps: 4493.411 Peak Mbps: 4602.651 Avg Mbps: 4493.411 5000 529225528 4238.042 100.00% Conn: 1 Mbps: 4238.042 Peak Mbps: 4602.651 Avg Mbps: 4238.042 --- 169.254.0.13 tcpbench statistics --- 3351576892 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4238.042/4484.043/4602.651/130.037 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 600246824 4801.975 100.00% Conn: 1 Mbps: 4801.975 Peak Mbps: 4801.975 Avg Mbps: 4801.975 2001 638816160 5110.529 100.00% Conn: 1 Mbps: 5110.529 Peak Mbps: 5110.529 Avg Mbps: 5110.529 3001 637870128 5102.961 100.00% Conn: 1 Mbps: 5102.961 Peak Mbps: 5110.529 Avg Mbps: 5102.961 4001 639893064 5119.145 100.00% Conn: 1 Mbps: 5119.145 Peak Mbps: 5119.145 Avg Mbps: 5119.145 5001 639487568 5121.022 100.00% Conn: 1 Mbps: 5121.022 Peak Mbps: 5121.022 Avg Mbps: 5121.022 --- fc00::13 tcpbench statistics --- 3797421352 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 4801.975/5051.126/5121.022/124.743 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.055 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.055/0.055/0.055/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.065 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.065/0.065/0.065/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 272181536 2177.452 100.00% Conn: 1 Mbps: 2177.452 Peak Mbps: 2177.452 Avg Mbps: 2177.452 2000 284772624 2278.181 100.00% Conn: 1 Mbps: 2278.181 Peak Mbps: 2278.181 Avg Mbps: 2278.181 3001 286152568 2289.221 100.00% Conn: 1 Mbps: 2289.221 Peak Mbps: 2289.221 Avg Mbps: 2289.221 4001 285245064 2284.245 100.00% Conn: 1 Mbps: 2284.245 Peak Mbps: 2289.221 Avg Mbps: 2284.245 5001 285010880 2280.087 100.00% Conn: 1 Mbps: 2280.087 Peak Mbps: 2289.221 Avg Mbps: 2280.087 --- 169.254.1.11 tcpbench statistics --- 1700032064 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2177.452/2261.837/2289.221/42.363 Mbps ==== run-tcpbench6-2-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1000 254186696 2033.494 100.00% Conn: 1 Mbps: 2033.494 Peak Mbps: 2033.494 Avg Mbps: 2033.494 2002 270188184 2159.346 100.00% Conn: 1 Mbps: 2159.346 Peak Mbps: 2159.346 Avg Mbps: 2159.346 3001 269450912 2157.765 100.00% Conn: 1 Mbps: 2157.765 Peak Mbps: 2159.346 Avg Mbps: 2157.765 4001 272691708 2181.534 100.00% Conn: 1 Mbps: 2181.534 Peak Mbps: 2181.534 Avg Mbps: 2181.534 5001 272300592 2180.585 100.00% Conn: 1 Mbps: 2180.585 Peak Mbps: 2181.534 Avg Mbps: 2180.585 --- fc00:0:0:1::11 tcpbench statistics --- 1611286156 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2033.494/2142.545/2181.534/55.450 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.046 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.046/0.046/0.046/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 525191048 4201.528 100.00% Conn: 1 Mbps: 4201.528 Peak Mbps: 4201.528 Avg Mbps: 4201.528 2000 525353224 4207.033 100.00% Conn: 1 Mbps: 4207.033 Peak Mbps: 4207.033 Avg Mbps: 4207.033 3000 524992672 4199.941 100.00% Conn: 1 Mbps: 4199.941 Peak Mbps: 4207.033 Avg Mbps: 4199.941 4000 524910136 4199.281 100.00% Conn: 1 Mbps: 4199.281 Peak Mbps: 4207.033 Avg Mbps: 4199.281 5000 525025976 4200.208 100.00% Conn: 1 Mbps: 4200.208 Peak Mbps: 4207.033 Avg Mbps: 4200.208 --- 169.254.1.12 tcpbench statistics --- 3150154408 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4199.281/4201.598/4207.033/2.814 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 524704320 4197.635 100.00% Conn: 1 Mbps: 4197.635 Peak Mbps: 4197.635 Avg Mbps: 4197.635 2000 525451164 4207.817 100.00% Conn: 1 Mbps: 4207.817 Peak Mbps: 4207.817 Avg Mbps: 4207.817 3000 524961360 4199.691 100.00% Conn: 1 Mbps: 4199.691 Peak Mbps: 4207.817 Avg Mbps: 4199.691 4000 525219828 4201.759 100.00% Conn: 1 Mbps: 4201.759 Peak Mbps: 4207.817 Avg Mbps: 4201.759 5000 525125580 4201.005 100.00% Conn: 1 Mbps: 4201.005 Peak Mbps: 4207.817 Avg Mbps: 4201.005 --- fc00:0:0:1::12 tcpbench statistics --- 3150305088 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4197.635/4201.581/4207.817/3.418 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.045 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.045/0.045/0.045/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.050 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-tcpbench-2-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 791385910 6331.087 100.00% Conn: 1 Mbps: 6331.087 Peak Mbps: 6331.087 Avg Mbps: 6331.087 2000 790909300 6333.608 100.00% Conn: 1 Mbps: 6333.608 Peak Mbps: 6333.608 Avg Mbps: 6333.608 3000 790385844 6323.087 100.00% Conn: 1 Mbps: 6323.087 Peak Mbps: 6333.608 Avg Mbps: 6323.087 4000 791040164 6328.321 100.00% Conn: 1 Mbps: 6328.321 Peak Mbps: 6333.608 Avg Mbps: 6328.321 5000 790680288 6325.442 100.00% Conn: 1 Mbps: 6325.442 Peak Mbps: 6333.608 Avg Mbps: 6325.442 --- 169.254.0.13 tcpbench statistics --- 4744885498 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6323.087/6328.309/6333.608/3.776 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 776173980 6209.392 100.00% Conn: 1 Mbps: 6209.392 Peak Mbps: 6209.392 Avg Mbps: 6209.392 2000 776170344 6215.578 100.00% Conn: 1 Mbps: 6215.578 Peak Mbps: 6215.578 Avg Mbps: 6215.578 3000 775974168 6207.793 100.00% Conn: 1 Mbps: 6207.793 Peak Mbps: 6215.578 Avg Mbps: 6207.793 4000 777445488 6219.564 100.00% Conn: 1 Mbps: 6219.564 Peak Mbps: 6219.564 Avg Mbps: 6219.564 5000 777772448 6222.180 100.00% Conn: 1 Mbps: 6222.180 Peak Mbps: 6222.180 Avg Mbps: 6222.180 --- fc00::13 tcpbench statistics --- 4661930100 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6207.793/6214.901/6222.180/5.587 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.051 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.051/0.051/0.051/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.060 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.060/0.060/0.060/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 271085912 2168.687 100.00% Conn: 1 Mbps: 2168.687 Peak Mbps: 2168.687 Avg Mbps: 2168.687 2001 280598168 2242.543 100.00% Conn: 1 Mbps: 2242.543 Peak Mbps: 2242.543 Avg Mbps: 2242.543 3001 283461864 2269.965 100.00% Conn: 1 Mbps: 2269.965 Peak Mbps: 2269.965 Avg Mbps: 2269.965 4003 283705616 2267.378 100.00% Conn: 1 Mbps: 2267.378 Peak Mbps: 2269.965 Avg Mbps: 2267.378 5004 285084008 2278.394 100.00% Conn: 1 Mbps: 2278.394 Peak Mbps: 2278.394 Avg Mbps: 2278.394 --- 169.254.1.11 tcpbench statistics --- 1684327040 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2168.687/2245.393/2278.394/40.170 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 539677160 4317.417 100.00% Conn: 1 Mbps: 4317.417 Peak Mbps: 4317.417 Avg Mbps: 4317.417 2000 594477064 4755.817 100.00% Conn: 1 Mbps: 4755.817 Peak Mbps: 4755.817 Avg Mbps: 4755.817 3000 595293000 4762.344 100.00% Conn: 1 Mbps: 4762.344 Peak Mbps: 4762.344 Avg Mbps: 4762.344 4001 596354400 4770.835 100.00% Conn: 1 Mbps: 4770.835 Peak Mbps: 4770.835 Avg Mbps: 4770.835 5001 600255120 4802.041 100.00% Conn: 1 Mbps: 4802.041 Peak Mbps: 4802.041 Avg Mbps: 4802.041 --- fc00:0:0:1::11 tcpbench statistics --- 3519434640 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4317.417/4681.691/4802.041/182.825 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.060 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.060/0.060/0.060/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.049 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 782600342 6260.803 100.00% Conn: 1 Mbps: 6260.803 Peak Mbps: 6260.803 Avg Mbps: 6260.803 2000 782566720 6266.801 100.00% Conn: 1 Mbps: 6266.801 Peak Mbps: 6266.801 Avg Mbps: 6266.801 3000 783940792 6271.526 100.00% Conn: 1 Mbps: 6271.526 Peak Mbps: 6271.526 Avg Mbps: 6271.526 4000 783286472 6266.292 100.00% Conn: 1 Mbps: 6266.292 Peak Mbps: 6271.526 Avg Mbps: 6266.292 5000 782534004 6260.272 100.00% Conn: 1 Mbps: 6260.272 Peak Mbps: 6271.526 Avg Mbps: 6260.272 --- 169.254.1.12 tcpbench statistics --- 4697429618 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6260.272/6265.139/6271.526/4.180 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 768963108 6151.705 100.00% Conn: 1 Mbps: 6151.705 Peak Mbps: 6151.705 Avg Mbps: 6151.705 2000 767440512 6145.670 100.00% Conn: 1 Mbps: 6145.670 Peak Mbps: 6151.705 Avg Mbps: 6145.670 3000 768290608 6146.325 100.00% Conn: 1 Mbps: 6146.325 Peak Mbps: 6151.705 Avg Mbps: 6146.325 4000 764138216 6113.106 100.00% Conn: 1 Mbps: 6113.106 Peak Mbps: 6151.705 Avg Mbps: 6113.106 5000 767832864 6142.663 100.00% Conn: 1 Mbps: 6142.663 Peak Mbps: 6151.705 Avg Mbps: 6142.663 --- fc00:0:0:1::12 tcpbench statistics --- 4604825132 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6113.106/6139.894/6151.705/13.708 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.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-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 780431430 6243.451 100.00% Conn: 1 Mbps: 6243.451 Peak Mbps: 6243.451 Avg Mbps: 6243.451 2000 780472896 6250.033 100.00% Conn: 1 Mbps: 6250.033 Peak Mbps: 6250.033 Avg Mbps: 6250.033 3000 781454376 6251.635 100.00% Conn: 1 Mbps: 6251.635 Peak Mbps: 6251.635 Avg Mbps: 6251.635 4000 780538328 6244.307 100.00% Conn: 1 Mbps: 6244.307 Peak Mbps: 6251.635 Avg Mbps: 6244.307 5000 780276600 6242.213 100.00% Conn: 1 Mbps: 6242.213 Peak Mbps: 6251.635 Avg Mbps: 6242.213 --- 169.254.0.13 tcpbench statistics --- 4684398994 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6242.213/6246.328/6251.635/3.773 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 774872116 6198.977 100.00% Conn: 1 Mbps: 6198.977 Peak Mbps: 6198.977 Avg Mbps: 6198.977 2000 776987744 6222.124 100.00% Conn: 1 Mbps: 6222.124 Peak Mbps: 6222.124 Avg Mbps: 6222.124 3000 777020440 6216.164 100.00% Conn: 1 Mbps: 6216.164 Peak Mbps: 6222.124 Avg Mbps: 6216.164 4000 776464608 6211.717 100.00% Conn: 1 Mbps: 6211.717 Peak Mbps: 6222.124 Avg Mbps: 6211.717 5000 778034016 6224.272 100.00% Conn: 1 Mbps: 6224.272 Peak Mbps: 6224.272 Avg Mbps: 6224.272 --- fc00::13 tcpbench statistics --- 4660628236 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6198.977/6214.651/6224.272/9.000 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 1m52.86s