START sys/net/pair 2025-04-03T03:58:52Z ==== 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.049 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.049/0.049/0.049/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 500835272 4006.682 100.00% Conn: 1 Mbps: 4006.682 Peak Mbps: 4006.682 Avg Mbps: 4006.682 2000 499436424 3999.491 100.00% Conn: 1 Mbps: 3999.491 Peak Mbps: 4006.682 Avg Mbps: 3999.491 3000 499778188 3998.226 100.00% Conn: 1 Mbps: 3998.226 Peak Mbps: 4006.682 Avg Mbps: 3998.226 4000 500104056 4000.832 100.00% Conn: 1 Mbps: 4000.832 Peak Mbps: 4006.682 Avg Mbps: 4000.832 5000 499118504 3992.948 100.00% Conn: 1 Mbps: 3992.948 Peak Mbps: 4006.682 Avg Mbps: 3992.948 --- 169.254.1.11 tcpbench statistics --- 2998263780 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3992.948/3999.636/4006.682/4.423 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 499305440 3994.444 100.00% Conn: 1 Mbps: 3994.444 Peak Mbps: 3994.444 Avg Mbps: 3994.444 2000 498124168 3988.982 100.00% Conn: 1 Mbps: 3988.982 Peak Mbps: 3994.444 Avg Mbps: 3988.982 3000 497973536 3983.788 100.00% Conn: 1 Mbps: 3983.788 Peak Mbps: 3994.444 Avg Mbps: 3983.788 4000 498203448 3985.628 100.00% Conn: 1 Mbps: 3985.628 Peak Mbps: 3994.444 Avg Mbps: 3985.628 5000 498029032 3984.232 100.00% Conn: 1 Mbps: 3984.232 Peak Mbps: 3994.444 Avg Mbps: 3984.232 --- fc00:0:0:1::11 tcpbench statistics --- 2989918352 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3983.788/3987.415/3994.444/3.958 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.083 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.083/0.083/0.083/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.141 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.141/0.141/0.141/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 274057936 2190.273 100.00% Conn: 1 Mbps: 2190.273 Peak Mbps: 2190.273 Avg Mbps: 2190.273 2002 289756656 2315.738 100.00% Conn: 1 Mbps: 2315.738 Peak Mbps: 2315.738 Avg Mbps: 2315.738 3000 291761568 2338.770 100.00% Conn: 1 Mbps: 2338.770 Peak Mbps: 2338.770 Avg Mbps: 2338.770 4000 288988880 2311.911 100.00% Conn: 1 Mbps: 2311.911 Peak Mbps: 2338.770 Avg Mbps: 2311.911 5001 292851360 2342.811 100.00% Conn: 1 Mbps: 2342.811 Peak Mbps: 2342.811 Avg Mbps: 2342.811 --- 169.254.1.12 tcpbench statistics --- 1728708872 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2190.273/2299.901/2342.811/56.152 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 1000 259114596 2072.917 100.00% Conn: 1 Mbps: 2072.917 Peak Mbps: 2072.917 Avg Mbps: 2072.917 2001 276300264 2210.402 100.00% Conn: 1 Mbps: 2210.402 Peak Mbps: 2210.402 Avg Mbps: 2210.402 3002 277274952 2215.984 100.00% Conn: 1 Mbps: 2215.984 Peak Mbps: 2215.984 Avg Mbps: 2215.984 4001 278060832 2226.713 100.00% Conn: 1 Mbps: 2226.713 Peak Mbps: 2226.713 Avg Mbps: 2226.713 5001 278849200 2233.027 100.00% Conn: 1 Mbps: 2233.027 Peak Mbps: 2233.027 Avg Mbps: 2233.027 --- fc00:0:0:1::12 tcpbench statistics --- 1650903976 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2072.917/2191.809/2233.027/59.971 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.067 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.067/0.067/0.067/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.164 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.164/0.164/0.164/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 579622256 4636.978 100.00% Conn: 1 Mbps: 4636.978 Peak Mbps: 4636.978 Avg Mbps: 4636.978 2000 588546040 4708.368 100.00% Conn: 1 Mbps: 4708.368 Peak Mbps: 4708.368 Avg Mbps: 4708.368 3000 562230632 4497.845 100.00% Conn: 1 Mbps: 4497.845 Peak Mbps: 4708.368 Avg Mbps: 4497.845 4000 572820028 4582.560 100.00% Conn: 1 Mbps: 4582.560 Peak Mbps: 4708.368 Avg Mbps: 4582.560 5000 526555000 4212.440 100.00% Conn: 1 Mbps: 4212.440 Peak Mbps: 4708.368 Avg Mbps: 4212.440 --- 169.254.0.13 tcpbench statistics --- 3347045552 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4212.440/4527.638/4708.368/171.972 Mbps ==== run-tcpbench6-1-3 ==== rm -f nc.log nc -6 -v -l -V 13 fc00::13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00::13 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00::13 elapsed_ms bytes mbps bwidth 1001 593833984 4745.926 100.00% Conn: 1 Mbps: 4745.926 Peak Mbps: 4745.926 Avg Mbps: 4745.926 2001 637418360 5099.347 100.00% Conn: 1 Mbps: 5099.347 Peak Mbps: 5099.347 Avg Mbps: 5099.347 3001 634694768 5077.558 100.00% Conn: 1 Mbps: 5077.558 Peak Mbps: 5099.347 Avg Mbps: 5077.558 4001 638232216 5105.858 100.00% Conn: 1 Mbps: 5105.858 Peak Mbps: 5105.858 Avg Mbps: 5105.858 5001 638268736 5111.261 100.00% Conn: 1 Mbps: 5111.261 Peak Mbps: 5111.261 Avg Mbps: 5111.261 --- fc00::13 tcpbench statistics --- 3778869840 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4745.926/5027.990/5111.261/141.497 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.052 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.052/0.052/0.052/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.053 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.053/0.053/0.053/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 274586608 2196.693 100.00% Conn: 1 Mbps: 2196.693 Peak Mbps: 2196.693 Avg Mbps: 2196.693 2001 289013936 2309.802 100.00% Conn: 1 Mbps: 2309.802 Peak Mbps: 2309.802 Avg Mbps: 2309.802 3001 288053360 2306.734 100.00% Conn: 1 Mbps: 2306.734 Peak Mbps: 2309.802 Avg Mbps: 2306.734 4002 290038000 2320.304 100.00% Conn: 1 Mbps: 2320.304 Peak Mbps: 2320.304 Avg Mbps: 2320.304 5002 290333232 2322.666 100.00% Conn: 1 Mbps: 2322.666 Peak Mbps: 2322.666 Avg Mbps: 2322.666 --- 169.254.1.11 tcpbench statistics --- 1721125168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2196.693/2291.240/2322.666/47.657 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 257282612 2058.261 100.00% Conn: 1 Mbps: 2058.261 Peak Mbps: 2058.261 Avg Mbps: 2058.261 2002 272508048 2177.886 100.00% Conn: 1 Mbps: 2177.886 Peak Mbps: 2177.886 Avg Mbps: 2177.886 3002 272236756 2177.894 100.00% Conn: 1 Mbps: 2177.894 Peak Mbps: 2177.894 Avg Mbps: 2177.894 4002 275226664 2204.017 100.00% Conn: 1 Mbps: 2204.017 Peak Mbps: 2204.017 Avg Mbps: 2204.017 5002 274605088 2196.841 100.00% Conn: 1 Mbps: 2196.841 Peak Mbps: 2204.017 Avg Mbps: 2196.841 --- fc00:0:0:1::11 tcpbench statistics --- 1627147052 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2058.261/2162.980/2204.017/53.369 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.054 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.054/0.054/0.054/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.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-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 513696824 4109.575 100.00% Conn: 1 Mbps: 4109.575 Peak Mbps: 4109.575 Avg Mbps: 4109.575 2000 514216656 4117.851 100.00% Conn: 1 Mbps: 4117.851 Peak Mbps: 4117.851 Avg Mbps: 4117.851 3000 514129776 4113.038 100.00% Conn: 1 Mbps: 4113.038 Peak Mbps: 4117.851 Avg Mbps: 4113.038 4000 514179008 4113.432 100.00% Conn: 1 Mbps: 4113.432 Peak Mbps: 4117.851 Avg Mbps: 4113.432 5000 514291952 4114.336 100.00% Conn: 1 Mbps: 4114.336 Peak Mbps: 4117.851 Avg Mbps: 4114.336 --- 169.254.1.12 tcpbench statistics --- 3084154568 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4109.575/4113.646/4117.851/2.651 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 510828444 4086.628 100.00% Conn: 1 Mbps: 4086.628 Peak Mbps: 4086.628 Avg Mbps: 4086.628 2000 511328244 4094.721 100.00% Conn: 1 Mbps: 4094.721 Peak Mbps: 4094.721 Avg Mbps: 4094.721 3000 510705636 4085.645 100.00% Conn: 1 Mbps: 4085.645 Peak Mbps: 4094.721 Avg Mbps: 4085.645 4000 511182588 4089.461 100.00% Conn: 1 Mbps: 4089.461 Peak Mbps: 4094.721 Avg Mbps: 4089.461 5000 510672792 4085.382 100.00% Conn: 1 Mbps: 4085.382 Peak Mbps: 4094.721 Avg Mbps: 4085.382 --- fc00:0:0:1::12 tcpbench statistics --- 3065668956 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4085.382/4088.367/4094.721/3.490 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.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-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.051 ms --- fc00::13 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-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 758473546 6067.788 100.00% Conn: 1 Mbps: 6067.788 Peak Mbps: 6067.788 Avg Mbps: 6067.788 2000 759469224 6081.836 100.00% Conn: 1 Mbps: 6081.836 Peak Mbps: 6081.836 Avg Mbps: 6081.836 3000 758847620 6070.781 100.00% Conn: 1 Mbps: 6070.781 Peak Mbps: 6081.836 Avg Mbps: 6070.781 4000 757506264 6060.050 100.00% Conn: 1 Mbps: 6060.050 Peak Mbps: 6081.836 Avg Mbps: 6060.050 5000 759109348 6072.875 100.00% Conn: 1 Mbps: 6072.875 Peak Mbps: 6081.836 Avg Mbps: 6072.875 --- 169.254.0.13 tcpbench statistics --- 4550944982 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6060.050/6070.666/6081.836/7.080 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 746796660 5974.373 100.00% Conn: 1 Mbps: 5974.373 Peak Mbps: 5974.373 Avg Mbps: 5974.373 2000 748705704 5995.641 100.00% Conn: 1 Mbps: 5995.641 Peak Mbps: 5995.641 Avg Mbps: 5995.641 3000 748280656 5986.245 100.00% Conn: 1 Mbps: 5986.245 Peak Mbps: 5995.641 Avg Mbps: 5986.245 4000 749980848 5999.847 100.00% Conn: 1 Mbps: 5999.847 Peak Mbps: 5999.847 Avg Mbps: 5999.847 5000 749261536 5994.092 100.00% Conn: 1 Mbps: 5994.092 Peak Mbps: 5999.847 Avg Mbps: 5994.092 --- fc00::13 tcpbench statistics --- 4490161700 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5974.373/5990.040/5999.847/8.987 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.064 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.064/0.064/0.064/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.058 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.058/0.058/0.058/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 274430344 2195.443 100.00% Conn: 1 Mbps: 2195.443 Peak Mbps: 2195.443 Avg Mbps: 2195.443 2001 285135464 2281.084 100.00% Conn: 1 Mbps: 2281.084 Peak Mbps: 2281.084 Avg Mbps: 2281.084 3000 287158592 2299.568 100.00% Conn: 1 Mbps: 2299.568 Peak Mbps: 2299.568 Avg Mbps: 2299.568 4002 284656464 2274.977 100.00% Conn: 1 Mbps: 2274.977 Peak Mbps: 2299.568 Avg Mbps: 2274.977 5003 287211784 2295.399 100.00% Conn: 1 Mbps: 2295.399 Peak Mbps: 2299.568 Avg Mbps: 2295.399 --- 169.254.1.11 tcpbench statistics --- 1706181240 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2195.443/2269.294/2299.568/38.009 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 540909560 4327.276 100.00% Conn: 1 Mbps: 4327.276 Peak Mbps: 4327.276 Avg Mbps: 4327.276 2001 615649200 4925.194 100.00% Conn: 1 Mbps: 4925.194 Peak Mbps: 4925.194 Avg Mbps: 4925.194 3001 612583608 4900.669 100.00% Conn: 1 Mbps: 4900.669 Peak Mbps: 4925.194 Avg Mbps: 4900.669 4001 606376544 4851.012 100.00% Conn: 1 Mbps: 4851.012 Peak Mbps: 4925.194 Avg Mbps: 4851.012 5001 609356672 4874.853 100.00% Conn: 1 Mbps: 4874.853 Peak Mbps: 4925.194 Avg Mbps: 4874.853 --- fc00:0:0:1::11 tcpbench statistics --- 3602048064 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4327.276/4775.801/4925.194/225.634 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.050 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.050/0.050/0.050/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.066 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.066/0.066/0.066/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 753500518 6028.004 100.00% Conn: 1 Mbps: 6028.004 Peak Mbps: 6028.004 Avg Mbps: 6028.004 2000 754463676 6041.751 100.00% Conn: 1 Mbps: 6041.751 Peak Mbps: 6041.751 Avg Mbps: 6041.751 3000 756034044 6048.272 100.00% Conn: 1 Mbps: 6048.272 Peak Mbps: 6048.272 Avg Mbps: 6048.272 4000 750995780 6007.966 100.00% Conn: 1 Mbps: 6007.966 Peak Mbps: 6048.272 Avg Mbps: 6007.966 5000 755248860 6041.991 100.00% Conn: 1 Mbps: 6041.991 Peak Mbps: 6048.272 Avg Mbps: 6041.991 --- 169.254.1.12 tcpbench statistics --- 4525851614 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6007.966/6033.597/6048.272/14.426 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 751145228 6009.162 100.00% Conn: 1 Mbps: 6009.162 Peak Mbps: 6009.162 Avg Mbps: 6009.162 2000 749053044 5998.423 100.00% Conn: 1 Mbps: 5998.423 Peak Mbps: 6009.162 Avg Mbps: 5998.423 3000 751713736 6013.710 100.00% Conn: 1 Mbps: 6013.710 Peak Mbps: 6013.710 Avg Mbps: 6013.710 4000 752171480 6017.372 100.00% Conn: 1 Mbps: 6017.372 Peak Mbps: 6017.372 Avg Mbps: 6017.372 5000 752008000 6016.064 100.00% Conn: 1 Mbps: 6016.064 Peak Mbps: 6017.372 Avg Mbps: 6016.064 --- fc00:0:0:1::12 tcpbench statistics --- 4507380176 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5998.423/6010.946/6017.372/6.858 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.054 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.054/0.054/0.054/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.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-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 786120570 6288.965 100.00% Conn: 1 Mbps: 6288.965 Peak Mbps: 6288.965 Avg Mbps: 6288.965 2000 786361776 6297.191 100.00% Conn: 1 Mbps: 6297.191 Peak Mbps: 6297.191 Avg Mbps: 6297.191 3000 785936468 6287.492 100.00% Conn: 1 Mbps: 6287.492 Peak Mbps: 6297.191 Avg Mbps: 6287.492 4000 786100048 6288.800 100.00% Conn: 1 Mbps: 6288.800 Peak Mbps: 6297.191 Avg Mbps: 6288.800 5000 787016096 6296.129 100.00% Conn: 1 Mbps: 6296.129 Peak Mbps: 6297.191 Avg Mbps: 6296.129 --- 169.254.0.13 tcpbench statistics --- 4718125746 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6287.492/6291.715/6297.191/4.083 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 778285356 6226.283 100.00% Conn: 1 Mbps: 6226.283 Peak Mbps: 6226.283 Avg Mbps: 6226.283 2000 778360976 6233.121 100.00% Conn: 1 Mbps: 6233.121 Peak Mbps: 6233.121 Avg Mbps: 6233.121 3000 778295584 6226.365 100.00% Conn: 1 Mbps: 6226.365 Peak Mbps: 6233.121 Avg Mbps: 6226.365 4000 778753328 6230.027 100.00% Conn: 1 Mbps: 6230.027 Peak Mbps: 6233.121 Avg Mbps: 6230.027 5000 780093864 6240.751 100.00% Conn: 1 Mbps: 6240.751 Peak Mbps: 6240.751 Avg Mbps: 6240.751 --- fc00::13 tcpbench statistics --- 4673850276 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6226.283/6231.309/6240.751/5.363 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.90s