START sys/net/pair 2025-03-08T06:32:28Z ==== 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.170 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.170/0.170/0.170/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.183 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.183/0.183/0.183/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 280413388 2243.307 100.00% Conn: 1 Mbps: 2243.307 Peak Mbps: 2243.307 Avg Mbps: 2243.307 2000 318476360 2550.361 100.00% Conn: 1 Mbps: 2550.361 Peak Mbps: 2550.361 Avg Mbps: 2550.361 3000 328888240 2631.106 100.00% Conn: 1 Mbps: 2631.106 Peak Mbps: 2631.106 Avg Mbps: 2631.106 4000 329499116 2635.993 100.00% Conn: 1 Mbps: 2635.993 Peak Mbps: 2635.993 Avg Mbps: 2635.993 5000 328530300 2628.242 100.00% Conn: 1 Mbps: 2628.242 Peak Mbps: 2635.993 Avg Mbps: 2628.242 --- 169.254.1.11 tcpbench statistics --- 1910212972 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2243.307/2537.802/2635.993/150.606 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 327546360 2620.371 100.00% Conn: 1 Mbps: 2620.371 Peak Mbps: 2620.371 Avg Mbps: 2620.371 2000 324635744 2599.686 100.00% Conn: 1 Mbps: 2599.686 Peak Mbps: 2620.371 Avg Mbps: 2599.686 3000 328503440 2628.028 100.00% Conn: 1 Mbps: 2628.028 Peak Mbps: 2628.028 Avg Mbps: 2628.028 4000 325696928 2605.575 100.00% Conn: 1 Mbps: 2605.575 Peak Mbps: 2628.028 Avg Mbps: 2605.575 5000 324011512 2592.092 100.00% Conn: 1 Mbps: 2592.092 Peak Mbps: 2628.028 Avg Mbps: 2592.092 --- fc00:0:0:1::11 tcpbench statistics --- 1957651168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2592.092/2609.150/2628.028/13.233 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.219 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.219/0.219/0.219/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.236 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.236/0.236/0.236/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 241597936 1930.853 100.00% Conn: 1 Mbps: 1930.853 Peak Mbps: 1930.853 Avg Mbps: 1930.853 2001 242160616 1939.224 100.00% Conn: 1 Mbps: 1939.224 Peak Mbps: 1939.224 Avg Mbps: 1939.224 3003 228499344 1826.169 100.00% Conn: 1 Mbps: 1826.169 Peak Mbps: 1939.224 Avg Mbps: 1826.169 4003 224756352 1799.851 100.00% Conn: 1 Mbps: 1799.851 Peak Mbps: 1939.224 Avg Mbps: 1799.851 5004 243123784 1944.990 100.00% Conn: 1 Mbps: 1944.990 Peak Mbps: 1944.990 Avg Mbps: 1944.990 --- 169.254.1.12 tcpbench statistics --- 1413416344 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 1799.851/1888.217/1944.990/62.131 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 225265820 1800.326 100.00% Conn: 1 Mbps: 1800.326 Peak Mbps: 1800.326 Avg Mbps: 1800.326 2001 237643344 1901.147 100.00% Conn: 1 Mbps: 1901.147 Peak Mbps: 1901.147 Avg Mbps: 1901.147 3002 238380416 1907.043 100.00% Conn: 1 Mbps: 1907.043 Peak Mbps: 1907.043 Avg Mbps: 1907.043 4001 226575116 1816.233 100.00% Conn: 1 Mbps: 1816.233 Peak Mbps: 1907.043 Avg Mbps: 1816.233 5004 222972584 1778.445 100.00% Conn: 1 Mbps: 1778.445 Peak Mbps: 1907.043 Avg Mbps: 1778.445 --- fc00:0:0:1::12 tcpbench statistics --- 1385337572 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1778.445/1840.639/1907.043/53.216 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.142 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.142/0.142/0.142/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 491141600 3929.133 100.00% Conn: 1 Mbps: 3929.133 Peak Mbps: 3929.133 Avg Mbps: 3929.133 2000 584094956 4672.760 100.00% Conn: 1 Mbps: 4672.760 Peak Mbps: 4672.760 Avg Mbps: 4672.760 3001 530322352 4242.579 100.00% Conn: 1 Mbps: 4242.579 Peak Mbps: 4672.760 Avg Mbps: 4242.579 4001 560560432 4488.972 100.00% Conn: 1 Mbps: 4488.972 Peak Mbps: 4672.760 Avg Mbps: 4488.972 5002 647451608 5179.613 100.00% Conn: 1 Mbps: 5179.613 Peak Mbps: 5179.613 Avg Mbps: 5179.613 --- 169.254.0.13 tcpbench statistics --- 3423355724 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3929.133/4502.611/5179.613/420.467 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 483699888 3869.599 100.00% Conn: 1 Mbps: 3869.599 Peak Mbps: 3869.599 Avg Mbps: 3869.599 2000 450568920 3608.160 100.00% Conn: 1 Mbps: 3608.160 Peak Mbps: 3869.599 Avg Mbps: 3608.160 3000 498093240 3984.746 100.00% Conn: 1 Mbps: 3984.746 Peak Mbps: 3984.746 Avg Mbps: 3984.746 4001 538820280 4310.562 100.00% Conn: 1 Mbps: 4310.562 Peak Mbps: 4310.562 Avg Mbps: 4310.562 5001 565061312 4520.490 100.00% Conn: 1 Mbps: 4520.490 Peak Mbps: 4520.490 Avg Mbps: 4520.490 --- fc00::13 tcpbench statistics --- 3150344816 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3608.160/4058.711/4520.490/322.769 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.126 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.126/0.126/0.126/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.107 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.107/0.107/0.107/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 239967368 1917.821 100.00% Conn: 1 Mbps: 1917.821 Peak Mbps: 1917.821 Avg Mbps: 1917.821 2001 258766224 2070.130 100.00% Conn: 1 Mbps: 2070.130 Peak Mbps: 2070.130 Avg Mbps: 2070.130 3002 247216208 1977.730 100.00% Conn: 1 Mbps: 1977.730 Peak Mbps: 2070.130 Avg Mbps: 1977.730 4002 224040288 1792.322 100.00% Conn: 1 Mbps: 1792.322 Peak Mbps: 2070.130 Avg Mbps: 1792.322 5003 237475560 1897.907 100.00% Conn: 1 Mbps: 1897.907 Peak Mbps: 2070.130 Avg Mbps: 1897.907 --- 169.254.1.11 tcpbench statistics --- 1433146192 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 1792.322/1931.182/2070.130/91.696 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 209632276 1675.383 100.00% Conn: 1 Mbps: 1675.383 Peak Mbps: 1675.383 Avg Mbps: 1675.383 2001 216097508 1728.780 100.00% Conn: 1 Mbps: 1728.780 Peak Mbps: 1728.780 Avg Mbps: 1728.780 3002 238995152 1911.961 100.00% Conn: 1 Mbps: 1911.961 Peak Mbps: 1911.961 Avg Mbps: 1911.961 4003 221243356 1769.947 100.00% Conn: 1 Mbps: 1769.947 Peak Mbps: 1911.961 Avg Mbps: 1769.947 5004 213479752 1706.132 100.00% Conn: 1 Mbps: 1706.132 Peak Mbps: 1911.961 Avg Mbps: 1706.132 --- fc00:0:0:1::11 tcpbench statistics --- 1337009088 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1675.383/1758.441/1911.961/82.723 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.133 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.133/0.133/0.133/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.081 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.081/0.081/0.081/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 328975464 2631.804 100.00% Conn: 1 Mbps: 2631.804 Peak Mbps: 2631.804 Avg Mbps: 2631.804 2000 343182688 2748.210 100.00% Conn: 1 Mbps: 2748.210 Peak Mbps: 2748.210 Avg Mbps: 2748.210 3000 339283168 2714.265 100.00% Conn: 1 Mbps: 2714.265 Peak Mbps: 2748.210 Avg Mbps: 2714.265 4000 339198344 2713.587 100.00% Conn: 1 Mbps: 2713.587 Peak Mbps: 2748.210 Avg Mbps: 2713.587 5000 325355464 2602.844 100.00% Conn: 1 Mbps: 2602.844 Peak Mbps: 2748.210 Avg Mbps: 2602.844 --- 169.254.1.12 tcpbench statistics --- 2001870424 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2602.844/2682.142/2748.210/55.150 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 322857948 2582.864 100.00% Conn: 1 Mbps: 2582.864 Peak Mbps: 2582.864 Avg Mbps: 2582.864 2000 327071820 2619.194 100.00% Conn: 1 Mbps: 2619.194 Peak Mbps: 2619.194 Avg Mbps: 2619.194 3000 324794316 2598.355 100.00% Conn: 1 Mbps: 2598.355 Peak Mbps: 2619.194 Avg Mbps: 2598.355 4000 325552584 2604.421 100.00% Conn: 1 Mbps: 2604.421 Peak Mbps: 2619.194 Avg Mbps: 2604.421 5000 324780036 2598.240 100.00% Conn: 1 Mbps: 2598.240 Peak Mbps: 2619.194 Avg Mbps: 2598.240 --- fc00:0:0:1::12 tcpbench statistics --- 1948067448 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2582.864/2600.615/2619.194/11.709 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.150 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.150/0.150/0.150/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.160 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.160/0.160/0.160/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 502453714 4019.630 100.00% Conn: 1 Mbps: 4019.630 Peak Mbps: 4019.630 Avg Mbps: 4019.630 2000 503090290 4028.751 100.00% Conn: 1 Mbps: 4028.751 Peak Mbps: 4028.751 Avg Mbps: 4028.751 3000 506214668 4049.717 100.00% Conn: 1 Mbps: 4049.717 Peak Mbps: 4049.717 Avg Mbps: 4049.717 4000 504595226 4036.762 100.00% Conn: 1 Mbps: 4036.762 Peak Mbps: 4049.717 Avg Mbps: 4036.762 5000 509257256 4074.058 100.00% Conn: 1 Mbps: 4074.058 Peak Mbps: 4074.058 Avg Mbps: 4074.058 --- 169.254.0.13 tcpbench statistics --- 3028390642 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4019.630/4041.784/4074.058/18.923 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 474421156 3795.369 100.00% Conn: 1 Mbps: 3795.369 Peak Mbps: 3795.369 Avg Mbps: 3795.369 2000 493516880 3952.087 100.00% Conn: 1 Mbps: 3952.087 Peak Mbps: 3952.087 Avg Mbps: 3952.087 3000 496652240 3973.218 100.00% Conn: 1 Mbps: 3973.218 Peak Mbps: 3973.218 Avg Mbps: 3973.218 4000 496063712 3968.510 100.00% Conn: 1 Mbps: 3968.510 Peak Mbps: 3973.218 Avg Mbps: 3968.510 5000 497502336 3980.019 100.00% Conn: 1 Mbps: 3980.019 Peak Mbps: 3980.019 Avg Mbps: 3980.019 --- fc00::13 tcpbench statistics --- 2955057240 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3795.369/3933.841/3980.019/69.846 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.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-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.150 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.150/0.150/0.150/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 240376992 1921.095 100.00% Conn: 1 Mbps: 1921.095 Peak Mbps: 1921.095 Avg Mbps: 1921.095 2001 254495184 2037.999 100.00% Conn: 1 Mbps: 2037.999 Peak Mbps: 2037.999 Avg Mbps: 2037.999 3001 241931904 1935.455 100.00% Conn: 1 Mbps: 1935.455 Peak Mbps: 2037.999 Avg Mbps: 1935.455 4003 233580400 1866.776 100.00% Conn: 1 Mbps: 1866.776 Peak Mbps: 2037.999 Avg Mbps: 1866.776 5003 259207808 2073.662 100.00% Conn: 1 Mbps: 2073.662 Peak Mbps: 2073.662 Avg Mbps: 2073.662 --- 169.254.1.11 tcpbench statistics --- 1452971056 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1866.776/1966.998/2073.662/76.896 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 1001 410639608 3281.835 100.00% Conn: 1 Mbps: 3281.835 Peak Mbps: 3281.835 Avg Mbps: 3281.835 2001 418704072 3349.633 100.00% Conn: 1 Mbps: 3349.633 Peak Mbps: 3349.633 Avg Mbps: 3349.633 3001 441080264 3532.174 100.00% Conn: 1 Mbps: 3532.174 Peak Mbps: 3532.174 Avg Mbps: 3532.174 4001 430451824 3443.615 100.00% Conn: 1 Mbps: 3443.615 Peak Mbps: 3532.174 Avg Mbps: 3443.615 5001 436555944 3492.448 100.00% Conn: 1 Mbps: 3492.448 Peak Mbps: 3532.174 Avg Mbps: 3492.448 --- fc00:0:0:1::11 tcpbench statistics --- 2555941472 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 3281.835/3419.941/3532.174/92.120 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.135 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.135/0.135/0.135/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.094 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.094/0.094/0.094/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 540684722 4325.478 100.00% Conn: 1 Mbps: 4325.478 Peak Mbps: 4325.478 Avg Mbps: 4325.478 2000 550413984 4407.720 100.00% Conn: 1 Mbps: 4407.720 Peak Mbps: 4407.720 Avg Mbps: 4407.720 3000 544443314 4355.547 100.00% Conn: 1 Mbps: 4355.547 Peak Mbps: 4407.720 Avg Mbps: 4355.547 4000 548663678 4389.309 100.00% Conn: 1 Mbps: 4389.309 Peak Mbps: 4407.720 Avg Mbps: 4389.309 5000 535021106 4280.169 100.00% Conn: 1 Mbps: 4280.169 Peak Mbps: 4407.720 Avg Mbps: 4280.169 --- 169.254.1.12 tcpbench statistics --- 3241946694 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4280.169/4351.644/4407.720/45.545 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 510751720 4086.014 100.00% Conn: 1 Mbps: 4086.014 Peak Mbps: 4086.014 Avg Mbps: 4086.014 2000 515458776 4127.798 100.00% Conn: 1 Mbps: 4127.798 Peak Mbps: 4127.798 Avg Mbps: 4127.798 3000 533697384 4269.579 100.00% Conn: 1 Mbps: 4269.579 Peak Mbps: 4269.579 Avg Mbps: 4269.579 4000 510080860 4084.732 100.00% Conn: 1 Mbps: 4084.732 Peak Mbps: 4269.579 Avg Mbps: 4084.732 5000 524852540 4198.820 100.00% Conn: 1 Mbps: 4198.820 Peak Mbps: 4269.579 Avg Mbps: 4198.820 --- fc00:0:0:1::12 tcpbench statistics --- 3112373948 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4084.732/4153.389/4269.579/71.375 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.137 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.137/0.137/0.137/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.074 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.074/0.074/0.074/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 538980590 4311.845 100.00% Conn: 1 Mbps: 4311.845 Peak Mbps: 4311.845 Avg Mbps: 4311.845 2000 523226976 4190.006 100.00% Conn: 1 Mbps: 4190.006 Peak Mbps: 4311.845 Avg Mbps: 4190.006 3000 526499004 4211.992 100.00% Conn: 1 Mbps: 4211.992 Peak Mbps: 4311.845 Avg Mbps: 4211.992 4000 521983780 4175.870 100.00% Conn: 1 Mbps: 4175.870 Peak Mbps: 4311.845 Avg Mbps: 4175.870 5000 523521420 4188.171 100.00% Conn: 1 Mbps: 4188.171 Peak Mbps: 4311.845 Avg Mbps: 4188.171 --- 169.254.0.13 tcpbench statistics --- 3170263418 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4175.870/4215.577/4311.845/49.522 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 535511596 4284.093 100.00% Conn: 1 Mbps: 4284.093 Peak Mbps: 4284.093 Avg Mbps: 4284.093 2000 533566024 4272.801 100.00% Conn: 1 Mbps: 4272.801 Peak Mbps: 4284.093 Avg Mbps: 4272.801 3000 531146520 4249.172 100.00% Conn: 1 Mbps: 4249.172 Peak Mbps: 4284.093 Avg Mbps: 4249.172 4000 529675200 4237.402 100.00% Conn: 1 Mbps: 4237.402 Peak Mbps: 4284.093 Avg Mbps: 4237.402 5000 530557992 4244.464 100.00% Conn: 1 Mbps: 4244.464 Peak Mbps: 4284.093 Avg Mbps: 4244.464 --- fc00::13 tcpbench statistics --- 3181566180 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4237.402/4257.586/4284.093/17.802 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.24s