START sys/net/pair 2025-03-29T06:38:50Z ==== 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.188 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.188/0.188/0.188/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.192 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.192/0.192/0.192/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 294115600 2352.925 100.00% Conn: 1 Mbps: 2352.925 Peak Mbps: 2352.925 Avg Mbps: 2352.925 2000 320507968 2566.630 100.00% Conn: 1 Mbps: 2566.630 Peak Mbps: 2566.630 Avg Mbps: 2566.630 3000 325506980 2604.056 100.00% Conn: 1 Mbps: 2604.056 Peak Mbps: 2604.056 Avg Mbps: 2604.056 4000 325438808 2603.510 100.00% Conn: 1 Mbps: 2603.510 Peak Mbps: 2604.056 Avg Mbps: 2603.510 5000 320876656 2567.013 100.00% Conn: 1 Mbps: 2567.013 Peak Mbps: 2604.056 Avg Mbps: 2567.013 --- 169.254.1.11 tcpbench statistics --- 1905423096 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2352.925/2538.827/2604.056/94.410 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 327164776 2617.318 100.00% Conn: 1 Mbps: 2617.318 Peak Mbps: 2617.318 Avg Mbps: 2617.318 2000 323968104 2594.339 100.00% Conn: 1 Mbps: 2594.339 Peak Mbps: 2617.318 Avg Mbps: 2594.339 3000 325306376 2602.451 100.00% Conn: 1 Mbps: 2602.451 Peak Mbps: 2617.318 Avg Mbps: 2602.451 4000 322404728 2579.238 100.00% Conn: 1 Mbps: 2579.238 Peak Mbps: 2617.318 Avg Mbps: 2579.238 5000 319498400 2555.987 100.00% Conn: 1 Mbps: 2555.987 Peak Mbps: 2617.318 Avg Mbps: 2555.987 --- fc00:0:0:1::11 tcpbench statistics --- 1938545728 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2555.987/2589.867/2617.318/20.942 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.217 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.217/0.217/0.217/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.229 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.229/0.229/0.229/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 221525408 1770.433 100.00% Conn: 1 Mbps: 1770.433 Peak Mbps: 1770.433 Avg Mbps: 1770.433 2001 225141280 1802.933 100.00% Conn: 1 Mbps: 1802.933 Peak Mbps: 1802.933 Avg Mbps: 1802.933 3002 212135696 1695.390 100.00% Conn: 1 Mbps: 1695.390 Peak Mbps: 1802.933 Avg Mbps: 1695.390 4003 237501952 1900.016 100.00% Conn: 1 Mbps: 1900.016 Peak Mbps: 1900.016 Avg Mbps: 1900.016 5003 231383888 1851.071 100.00% Conn: 1 Mbps: 1851.071 Peak Mbps: 1900.016 Avg Mbps: 1851.071 --- 169.254.1.12 tcpbench statistics --- 1372476000 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1695.390/1803.969/1900.016/69.798 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 1002 210186172 1678.133 100.00% Conn: 1 Mbps: 1678.133 Peak Mbps: 1678.133 Avg Mbps: 1678.133 2002 221492680 1771.941 100.00% Conn: 1 Mbps: 1771.941 Peak Mbps: 1771.941 Avg Mbps: 1771.941 3003 221840108 1772.948 100.00% Conn: 1 Mbps: 1772.948 Peak Mbps: 1772.948 Avg Mbps: 1772.948 4003 213883840 1712.784 100.00% Conn: 1 Mbps: 1712.784 Peak Mbps: 1772.948 Avg Mbps: 1712.784 5004 227680340 1821.443 100.00% Conn: 1 Mbps: 1821.443 Peak Mbps: 1821.443 Avg Mbps: 1821.443 --- fc00:0:0:1::12 tcpbench statistics --- 1309792412 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1678.133/1751.450/1821.443/50.302 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.190 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.190/0.190/0.190/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.139 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.139/0.139/0.139/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 536354184 4290.833 100.00% Conn: 1 Mbps: 4290.833 Peak Mbps: 4290.833 Avg Mbps: 4290.833 2000 614325088 4919.520 100.00% Conn: 1 Mbps: 4919.520 Peak Mbps: 4919.520 Avg Mbps: 4919.520 3000 603768376 4834.982 100.00% Conn: 1 Mbps: 4834.982 Peak Mbps: 4919.520 Avg Mbps: 4834.982 4000 593729896 4749.839 100.00% Conn: 1 Mbps: 4749.839 Peak Mbps: 4919.520 Avg Mbps: 4749.839 5001 582675408 4661.403 100.00% Conn: 1 Mbps: 4661.403 Peak Mbps: 4919.520 Avg Mbps: 4661.403 --- 169.254.0.13 tcpbench statistics --- 3523310248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4290.833/4691.316/4919.520/217.910 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 503976592 4031.813 100.00% Conn: 1 Mbps: 4031.813 Peak Mbps: 4031.813 Avg Mbps: 4031.813 2001 500430696 4003.446 100.00% Conn: 1 Mbps: 4003.446 Peak Mbps: 4031.813 Avg Mbps: 4003.446 3000 531002000 4252.268 100.00% Conn: 1 Mbps: 4252.268 Peak Mbps: 4252.268 Avg Mbps: 4252.268 4001 539866232 4318.930 100.00% Conn: 1 Mbps: 4318.930 Peak Mbps: 4318.930 Avg Mbps: 4318.930 5001 598085072 4784.681 100.00% Conn: 1 Mbps: 4784.681 Peak Mbps: 4784.681 Avg Mbps: 4784.681 --- fc00::13 tcpbench statistics --- 3199807088 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4003.446/4278.227/4784.681/281.087 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.154 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.154/0.154/0.154/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.108 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.108/0.108/0.108/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 225076088 1798.810 100.00% Conn: 1 Mbps: 1798.810 Peak Mbps: 1798.810 Avg Mbps: 1798.810 2001 221835576 1774.685 100.00% Conn: 1 Mbps: 1774.685 Peak Mbps: 1798.810 Avg Mbps: 1774.685 3002 211144240 1689.154 100.00% Conn: 1 Mbps: 1689.154 Peak Mbps: 1798.810 Avg Mbps: 1689.154 4002 228487408 1827.899 100.00% Conn: 1 Mbps: 1827.899 Peak Mbps: 1827.899 Avg Mbps: 1827.899 5002 233648088 1869.185 100.00% Conn: 1 Mbps: 1869.185 Peak Mbps: 1869.185 Avg Mbps: 1869.185 --- 169.254.1.11 tcpbench statistics --- 1358144688 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1689.154/1791.946/1869.185/60.282 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 238413076 1905.399 100.00% Conn: 1 Mbps: 1905.399 Peak Mbps: 1905.399 Avg Mbps: 1905.399 2001 225615904 1804.927 100.00% Conn: 1 Mbps: 1804.927 Peak Mbps: 1905.399 Avg Mbps: 1804.927 3002 218027748 1744.222 100.00% Conn: 1 Mbps: 1744.222 Peak Mbps: 1905.399 Avg Mbps: 1744.222 4001 213524348 1709.905 100.00% Conn: 1 Mbps: 1709.905 Peak Mbps: 1905.399 Avg Mbps: 1709.905 5004 197560784 1577.332 100.00% Conn: 1 Mbps: 1577.332 Peak Mbps: 1905.399 Avg Mbps: 1577.332 --- fc00:0:0:1::11 tcpbench statistics --- 1301665232 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 1577.332/1748.357/1905.399/108.266 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.103 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.103/0.103/0.103/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.088 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.088/0.088/0.088/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 316454608 2531.637 100.00% Conn: 1 Mbps: 2531.637 Peak Mbps: 2531.637 Avg Mbps: 2531.637 2000 321554464 2575.011 100.00% Conn: 1 Mbps: 2575.011 Peak Mbps: 2575.011 Avg Mbps: 2575.011 3000 321945424 2575.563 100.00% Conn: 1 Mbps: 2575.563 Peak Mbps: 2575.563 Avg Mbps: 2575.563 4000 321553016 2572.424 100.00% Conn: 1 Mbps: 2572.424 Peak Mbps: 2575.563 Avg Mbps: 2572.424 5000 323108168 2587.453 100.00% Conn: 1 Mbps: 2587.453 Peak Mbps: 2587.453 Avg Mbps: 2587.453 --- 169.254.1.12 tcpbench statistics --- 1929477376 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2531.637/2568.418/2587.453/19.109 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 322276752 2578.214 100.00% Conn: 1 Mbps: 2578.214 Peak Mbps: 2578.214 Avg Mbps: 2578.214 2000 316456224 2534.184 100.00% Conn: 1 Mbps: 2534.184 Peak Mbps: 2578.214 Avg Mbps: 2534.184 3000 312229344 2497.835 100.00% Conn: 1 Mbps: 2497.835 Peak Mbps: 2578.214 Avg Mbps: 2497.835 4000 313623072 2508.985 100.00% Conn: 1 Mbps: 2508.985 Peak Mbps: 2578.214 Avg Mbps: 2508.985 5000 317308740 2538.470 100.00% Conn: 1 Mbps: 2538.470 Peak Mbps: 2578.214 Avg Mbps: 2538.470 --- fc00:0:0:1::12 tcpbench statistics --- 1900712268 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2497.835/2531.537/2578.214/27.851 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.138 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.138/0.138/0.138/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.099 ms --- fc00::13 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-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 499001846 3992.015 100.00% Conn: 1 Mbps: 3992.015 Peak Mbps: 3992.015 Avg Mbps: 3992.015 2000 499736888 4001.897 100.00% Conn: 1 Mbps: 4001.897 Peak Mbps: 4001.897 Avg Mbps: 4001.897 3000 503450166 4027.601 100.00% Conn: 1 Mbps: 4027.601 Peak Mbps: 4027.601 Avg Mbps: 4027.601 4000 501552638 4012.421 100.00% Conn: 1 Mbps: 4012.421 Peak Mbps: 4027.601 Avg Mbps: 4012.421 5000 501519922 4012.159 100.00% Conn: 1 Mbps: 4012.159 Peak Mbps: 4027.601 Avg Mbps: 4012.159 --- 169.254.0.13 tcpbench statistics --- 3010363784 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3992.015/4009.219/4027.601/11.886 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 477167116 3817.337 100.00% Conn: 1 Mbps: 3817.337 Peak Mbps: 3817.337 Avg Mbps: 3817.337 2000 475203664 3805.435 100.00% Conn: 1 Mbps: 3805.435 Peak Mbps: 3817.337 Avg Mbps: 3805.435 3000 478211696 3825.694 100.00% Conn: 1 Mbps: 3825.694 Peak Mbps: 3825.694 Avg Mbps: 3825.694 4000 480369632 3842.957 100.00% Conn: 1 Mbps: 3842.957 Peak Mbps: 3842.957 Avg Mbps: 3842.957 5000 489655296 3917.242 100.00% Conn: 1 Mbps: 3917.242 Peak Mbps: 3917.242 Avg Mbps: 3917.242 --- fc00::13 tcpbench statistics --- 2886764228 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3805.435/3841.733/3917.242/39.682 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.163 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.163/0.163/0.163/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.114 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.114/0.114/0.114/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 233080272 1864.642 100.00% Conn: 1 Mbps: 1864.642 Peak Mbps: 1864.642 Avg Mbps: 1864.642 2001 232230064 1855.985 100.00% Conn: 1 Mbps: 1855.985 Peak Mbps: 1864.642 Avg Mbps: 1855.985 3002 240460592 1923.685 100.00% Conn: 1 Mbps: 1923.685 Peak Mbps: 1923.685 Avg Mbps: 1923.685 4003 249561088 1996.489 100.00% Conn: 1 Mbps: 1996.489 Peak Mbps: 1996.489 Avg Mbps: 1996.489 5003 231931872 1857.312 100.00% Conn: 1 Mbps: 1857.312 Peak Mbps: 1996.489 Avg Mbps: 1857.312 --- 169.254.1.11 tcpbench statistics --- 1404183800 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1855.985/1899.622/1996.489/54.553 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 403427536 3227.420 100.00% Conn: 1 Mbps: 3227.420 Peak Mbps: 3227.420 Avg Mbps: 3227.420 2001 420510160 3364.081 100.00% Conn: 1 Mbps: 3364.081 Peak Mbps: 3364.081 Avg Mbps: 3364.081 3001 413310248 3306.482 100.00% Conn: 1 Mbps: 3306.482 Peak Mbps: 3364.081 Avg Mbps: 3306.482 4001 427073824 3416.591 100.00% Conn: 1 Mbps: 3416.591 Peak Mbps: 3416.591 Avg Mbps: 3416.591 5002 416387544 3327.773 100.00% Conn: 1 Mbps: 3327.773 Peak Mbps: 3416.591 Avg Mbps: 3327.773 --- fc00:0:0:1::11 tcpbench statistics --- 2518834496 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 3227.420/3328.469/3416.591/62.815 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.155 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.155/0.155/0.155/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.126 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.126/0.126/0.126/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 481792362 3854.339 100.00% Conn: 1 Mbps: 3854.339 Peak Mbps: 3854.339 Avg Mbps: 3854.339 2000 490756346 3929.981 100.00% Conn: 1 Mbps: 3929.981 Peak Mbps: 3929.981 Avg Mbps: 3929.981 3000 506999852 4055.999 100.00% Conn: 1 Mbps: 4055.999 Peak Mbps: 4055.999 Avg Mbps: 4055.999 4000 508553862 4068.431 100.00% Conn: 1 Mbps: 4068.431 Peak Mbps: 4068.431 Avg Mbps: 4068.431 5000 508602936 4068.823 100.00% Conn: 1 Mbps: 4068.823 Peak Mbps: 4068.823 Avg Mbps: 4068.823 --- 169.254.1.12 tcpbench statistics --- 2992189582 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3854.339/3995.515/4068.823/87.835 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 484559112 3876.473 100.00% Conn: 1 Mbps: 3876.473 Peak Mbps: 3876.473 Avg Mbps: 3876.473 2000 487006920 3899.955 100.00% Conn: 1 Mbps: 3899.955 Peak Mbps: 3899.955 Avg Mbps: 3899.955 3000 505022416 4040.179 100.00% Conn: 1 Mbps: 4040.179 Peak Mbps: 4040.179 Avg Mbps: 4040.179 4000 503551096 4028.409 100.00% Conn: 1 Mbps: 4028.409 Peak Mbps: 4040.179 Avg Mbps: 4028.409 5000 508128536 4065.028 100.00% Conn: 1 Mbps: 4065.028 Peak Mbps: 4065.028 Avg Mbps: 4065.028 --- fc00:0:0:1::12 tcpbench statistics --- 2993453976 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3876.473/3982.009/4065.028/77.845 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.133 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.133/0.133/0.133/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.116 ms --- fc00::13 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-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 509651864 4077.215 100.00% Conn: 1 Mbps: 4077.215 Peak Mbps: 4077.215 Avg Mbps: 4077.215 2000 514017434 4116.256 100.00% Conn: 1 Mbps: 4116.256 Peak Mbps: 4116.256 Avg Mbps: 4116.256 3000 517010936 4136.087 100.00% Conn: 1 Mbps: 4136.087 Peak Mbps: 4136.087 Avg Mbps: 4136.087 4000 531291470 4250.332 100.00% Conn: 1 Mbps: 4250.332 Peak Mbps: 4250.332 Avg Mbps: 4250.332 5000 529279448 4234.236 100.00% Conn: 1 Mbps: 4234.236 Peak Mbps: 4250.332 Avg Mbps: 4234.236 --- 169.254.0.13 tcpbench statistics --- 3119309012 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4077.215/4162.825/4250.332/67.778 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 503753012 4030.024 100.00% Conn: 1 Mbps: 4030.024 Peak Mbps: 4030.024 Avg Mbps: 4030.024 2000 506624520 4057.053 100.00% Conn: 1 Mbps: 4057.053 Peak Mbps: 4057.053 Avg Mbps: 4057.053 3000 511365440 4090.924 100.00% Conn: 1 Mbps: 4090.924 Peak Mbps: 4090.924 Avg Mbps: 4090.924 4000 516825672 4134.605 100.00% Conn: 1 Mbps: 4134.605 Peak Mbps: 4134.605 Avg Mbps: 4134.605 5000 528403512 4227.228 100.00% Conn: 1 Mbps: 4227.228 Peak Mbps: 4227.228 Avg Mbps: 4227.228 --- fc00::13 tcpbench statistics --- 3085105668 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4030.024/4107.967/4227.228/69.124 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 1m54.18s