START sys/net/pair 2025-03-04T04:54:07Z ==== 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.038 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.038/0.038/0.038/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.068 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.068/0.068/0.068/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 505890200 4047.122 100.00% Conn: 1 Mbps: 4047.122 Peak Mbps: 4047.122 Avg Mbps: 4047.122 2000 504968232 4043.790 100.00% Conn: 1 Mbps: 4043.790 Peak Mbps: 4047.122 Avg Mbps: 4043.790 3000 505023868 4040.191 100.00% Conn: 1 Mbps: 4040.191 Peak Mbps: 4047.122 Avg Mbps: 4040.191 4000 504364184 4034.913 100.00% Conn: 1 Mbps: 4034.913 Peak Mbps: 4047.122 Avg Mbps: 4034.913 5000 504904648 4039.237 100.00% Conn: 1 Mbps: 4039.237 Peak Mbps: 4047.122 Avg Mbps: 4039.237 --- 169.254.1.11 tcpbench statistics --- 3030071676 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4034.913/4041.051/4047.122/4.149 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 507265152 4058.121 100.00% Conn: 1 Mbps: 4058.121 Peak Mbps: 4058.121 Avg Mbps: 4058.121 2000 505497208 4048.026 100.00% Conn: 1 Mbps: 4048.026 Peak Mbps: 4058.121 Avg Mbps: 4048.026 3000 504189088 4033.513 100.00% Conn: 1 Mbps: 4033.513 Peak Mbps: 4058.121 Avg Mbps: 4033.513 4000 504950176 4039.601 100.00% Conn: 1 Mbps: 4039.601 Peak Mbps: 4058.121 Avg Mbps: 4039.601 5000 505156304 4041.250 100.00% Conn: 1 Mbps: 4041.250 Peak Mbps: 4058.121 Avg Mbps: 4041.250 --- fc00:0:0:1::11 tcpbench statistics --- 3032531352 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4033.513/4044.102/4058.121/8.396 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.074 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.074/0.074/0.074/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.160 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.160/0.160/0.160/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 1000 271532176 2172.257 100.00% Conn: 1 Mbps: 2172.257 Peak Mbps: 2172.257 Avg Mbps: 2172.257 2001 279680248 2235.207 100.00% Conn: 1 Mbps: 2235.207 Peak Mbps: 2235.207 Avg Mbps: 2235.207 3001 284996184 2279.969 100.00% Conn: 1 Mbps: 2279.969 Peak Mbps: 2279.969 Avg Mbps: 2279.969 4002 283140680 2265.125 100.00% Conn: 1 Mbps: 2265.125 Peak Mbps: 2279.969 Avg Mbps: 2265.125 5003 284420160 2273.088 100.00% Conn: 1 Mbps: 2273.088 Peak Mbps: 2279.969 Avg Mbps: 2273.088 --- 169.254.1.12 tcpbench statistics --- 1687908024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2172.257/2245.129/2279.969/39.507 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 253000760 2024.006 100.00% Conn: 1 Mbps: 2024.006 Peak Mbps: 2024.006 Avg Mbps: 2024.006 2001 271075072 2168.601 100.00% Conn: 1 Mbps: 2168.601 Peak Mbps: 2168.601 Avg Mbps: 2168.601 3002 270609160 2162.711 100.00% Conn: 1 Mbps: 2162.711 Peak Mbps: 2168.601 Avg Mbps: 2162.711 4002 274538664 2198.508 100.00% Conn: 1 Mbps: 2198.508 Peak Mbps: 2198.508 Avg Mbps: 2198.508 5002 275577272 2204.618 100.00% Conn: 1 Mbps: 2204.618 Peak Mbps: 2204.618 Avg Mbps: 2204.618 --- fc00:0:0:1::12 tcpbench statistics --- 1620952088 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2024.006/2151.689/2204.618/65.885 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.063 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.063/0.063/0.063/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.072 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.072/0.072/0.072/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 583624408 4668.995 100.00% Conn: 1 Mbps: 4668.995 Peak Mbps: 4668.995 Avg Mbps: 4668.995 2000 574915500 4603.928 100.00% Conn: 1 Mbps: 4603.928 Peak Mbps: 4668.995 Avg Mbps: 4603.928 3000 571618340 4572.947 100.00% Conn: 1 Mbps: 4572.947 Peak Mbps: 4668.995 Avg Mbps: 4572.947 4000 566753604 4534.029 100.00% Conn: 1 Mbps: 4534.029 Peak Mbps: 4668.995 Avg Mbps: 4534.029 5000 565287952 4522.304 100.00% Conn: 1 Mbps: 4522.304 Peak Mbps: 4668.995 Avg Mbps: 4522.304 --- 169.254.0.13 tcpbench statistics --- 3411008784 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4522.304/4580.440/4668.995/52.884 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 590299784 4722.398 100.00% Conn: 1 Mbps: 4722.398 Peak Mbps: 4722.398 Avg Mbps: 4722.398 2000 627134184 5022.096 100.00% Conn: 1 Mbps: 5022.096 Peak Mbps: 5022.096 Avg Mbps: 5022.096 3001 627727744 5021.822 100.00% Conn: 1 Mbps: 5021.822 Peak Mbps: 5022.096 Avg Mbps: 5021.822 4000 627112480 5021.922 100.00% Conn: 1 Mbps: 5021.922 Peak Mbps: 5022.096 Avg Mbps: 5021.922 5001 627498616 5019.989 100.00% Conn: 1 Mbps: 5019.989 Peak Mbps: 5022.096 Avg Mbps: 5019.989 --- fc00::13 tcpbench statistics --- 3730308232 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4722.398/4961.645/5022.096/119.626 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.058 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.058/0.058/0.058/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.054 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.054/0.054/0.054/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 268054680 2144.437 100.00% Conn: 1 Mbps: 2144.437 Peak Mbps: 2144.437 Avg Mbps: 2144.437 2001 280301048 2242.408 100.00% Conn: 1 Mbps: 2242.408 Peak Mbps: 2242.408 Avg Mbps: 2242.408 3000 282019424 2258.414 100.00% Conn: 1 Mbps: 2258.414 Peak Mbps: 2258.414 Avg Mbps: 2258.414 4002 282516032 2257.870 100.00% Conn: 1 Mbps: 2257.870 Peak Mbps: 2258.414 Avg Mbps: 2257.870 5002 283037320 2264.299 100.00% Conn: 1 Mbps: 2264.299 Peak Mbps: 2264.299 Avg Mbps: 2264.299 --- 169.254.1.11 tcpbench statistics --- 1679163752 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2144.437/2233.486/2264.299/45.110 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 253411828 2027.295 100.00% Conn: 1 Mbps: 2027.295 Peak Mbps: 2027.295 Avg Mbps: 2027.295 2001 268331868 2146.655 100.00% Conn: 1 Mbps: 2146.655 Peak Mbps: 2146.655 Avg Mbps: 2146.655 3001 269589780 2156.718 100.00% Conn: 1 Mbps: 2156.718 Peak Mbps: 2156.718 Avg Mbps: 2156.718 4002 271214308 2169.714 100.00% Conn: 1 Mbps: 2169.714 Peak Mbps: 2169.714 Avg Mbps: 2169.714 5003 269479896 2153.685 100.00% Conn: 1 Mbps: 2153.685 Peak Mbps: 2169.714 Avg Mbps: 2153.685 --- fc00:0:0:1::11 tcpbench statistics --- 1603282524 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2027.295/2130.814/2169.714/52.296 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.050 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.050/0.050/0.050/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 512539872 4100.319 100.00% Conn: 1 Mbps: 4100.319 Peak Mbps: 4100.319 Avg Mbps: 4100.319 2000 512082304 4100.759 100.00% Conn: 1 Mbps: 4100.759 Peak Mbps: 4100.759 Avg Mbps: 4100.759 3000 512245928 4097.967 100.00% Conn: 1 Mbps: 4097.967 Peak Mbps: 4100.759 Avg Mbps: 4097.967 4000 512182216 4097.458 100.00% Conn: 1 Mbps: 4097.458 Peak Mbps: 4100.759 Avg Mbps: 4097.458 5000 512390728 4099.126 100.00% Conn: 1 Mbps: 4099.126 Peak Mbps: 4100.759 Avg Mbps: 4099.126 --- 169.254.1.12 tcpbench statistics --- 3073686976 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4097.458/4099.126/4100.759/1.282 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 515075316 4120.603 100.00% Conn: 1 Mbps: 4120.603 Peak Mbps: 4120.603 Avg Mbps: 4120.603 2000 515486580 4128.021 100.00% Conn: 1 Mbps: 4128.021 Peak Mbps: 4128.021 Avg Mbps: 4128.021 3000 516049212 4128.394 100.00% Conn: 1 Mbps: 4128.394 Peak Mbps: 4128.394 Avg Mbps: 4128.394 4000 515587968 4128.833 100.00% Conn: 1 Mbps: 4128.833 Peak Mbps: 4128.833 Avg Mbps: 4128.833 5000 516356232 4130.850 100.00% Conn: 1 Mbps: 4130.850 Peak Mbps: 4130.850 Avg Mbps: 4130.850 --- fc00:0:0:1::12 tcpbench statistics --- 3094685916 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4120.603/4127.340/4130.850/3.508 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.044 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.044/0.044/0.044/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.058 ms --- fc00::13 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-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 771988222 6175.906 100.00% Conn: 1 Mbps: 6175.906 Peak Mbps: 6175.906 Avg Mbps: 6175.906 2000 772588340 6186.894 100.00% Conn: 1 Mbps: 6186.894 Peak Mbps: 6186.894 Avg Mbps: 6186.894 3000 773242660 6185.941 100.00% Conn: 1 Mbps: 6185.941 Peak Mbps: 6186.894 Avg Mbps: 6185.941 4000 773537104 6188.297 100.00% Conn: 1 Mbps: 6188.297 Peak Mbps: 6188.297 Avg Mbps: 6188.297 5000 773079080 6184.633 100.00% Conn: 1 Mbps: 6184.633 Peak Mbps: 6188.297 Avg Mbps: 6184.633 --- 169.254.0.13 tcpbench statistics --- 4637579918 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6175.906/6184.334/6188.297/4.381 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 750788596 6006.309 100.00% Conn: 1 Mbps: 6006.309 Peak Mbps: 6006.309 Avg Mbps: 6006.309 2000 750471288 6009.780 100.00% Conn: 1 Mbps: 6009.780 Peak Mbps: 6009.780 Avg Mbps: 6009.780 3000 751452168 6011.617 100.00% Conn: 1 Mbps: 6011.617 Peak Mbps: 6011.617 Avg Mbps: 6011.617 4000 751059816 6008.479 100.00% Conn: 1 Mbps: 6008.479 Peak Mbps: 6011.617 Avg Mbps: 6008.479 5000 754100544 6032.804 100.00% Conn: 1 Mbps: 6032.804 Peak Mbps: 6032.804 Avg Mbps: 6032.804 --- fc00::13 tcpbench statistics --- 4511188252 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6006.309/6013.798/6032.804/9.659 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.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-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.062 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.062/0.062/0.062/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 268700608 2147.457 100.00% Conn: 1 Mbps: 2147.457 Peak Mbps: 2147.457 Avg Mbps: 2147.457 2000 276932600 2217.678 100.00% Conn: 1 Mbps: 2217.678 Peak Mbps: 2217.678 Avg Mbps: 2217.678 3002 277415504 2217.107 100.00% Conn: 1 Mbps: 2217.107 Peak Mbps: 2217.678 Avg Mbps: 2217.107 4002 279622640 2236.981 100.00% Conn: 1 Mbps: 2236.981 Peak Mbps: 2236.981 Avg Mbps: 2236.981 5004 281083008 2246.418 100.00% Conn: 1 Mbps: 2246.418 Peak Mbps: 2246.418 Avg Mbps: 2246.418 --- 169.254.1.11 tcpbench statistics --- 1663081784 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2147.457/2213.128/2246.418/34.717 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 542735264 4341.882 100.00% Conn: 1 Mbps: 4341.882 Peak Mbps: 4341.882 Avg Mbps: 4341.882 2000 607363096 4858.905 100.00% Conn: 1 Mbps: 4858.905 Peak Mbps: 4858.905 Avg Mbps: 4858.905 3001 601780728 4814.246 100.00% Conn: 1 Mbps: 4814.246 Peak Mbps: 4858.905 Avg Mbps: 4814.246 4001 604753336 4838.027 100.00% Conn: 1 Mbps: 4838.027 Peak Mbps: 4858.905 Avg Mbps: 4838.027 5001 608267480 4866.140 100.00% Conn: 1 Mbps: 4866.140 Peak Mbps: 4866.140 Avg Mbps: 4866.140 --- fc00:0:0:1::11 tcpbench statistics --- 3571595448 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4341.882/4743.840/4866.140/201.790 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.060 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.060/0.060/0.060/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.052 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.052/0.052/0.052/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 768061282 6144.490 100.00% Conn: 1 Mbps: 6144.490 Peak Mbps: 6144.490 Avg Mbps: 6144.490 2000 767844076 6148.902 100.00% Conn: 1 Mbps: 6148.902 Peak Mbps: 6148.902 Avg Mbps: 6148.902 3000 767811384 6142.491 100.00% Conn: 1 Mbps: 6142.491 Peak Mbps: 6148.902 Avg Mbps: 6142.491 4000 767615040 6140.920 100.00% Conn: 1 Mbps: 6140.920 Peak Mbps: 6148.902 Avg Mbps: 6140.920 5000 767811372 6142.491 100.00% Conn: 1 Mbps: 6142.491 Peak Mbps: 6148.902 Avg Mbps: 6142.491 --- 169.254.1.12 tcpbench statistics --- 4607445266 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6140.920/6143.859/6148.902/2.764 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 751961404 6015.691 100.00% Conn: 1 Mbps: 6015.691 Peak Mbps: 6015.691 Avg Mbps: 6015.691 2000 751844520 6020.777 100.00% Conn: 1 Mbps: 6020.777 Peak Mbps: 6020.777 Avg Mbps: 6020.777 3000 745370712 5962.966 100.00% Conn: 1 Mbps: 5962.966 Peak Mbps: 6020.777 Avg Mbps: 5962.966 4000 752760008 6022.080 100.00% Conn: 1 Mbps: 6022.080 Peak Mbps: 6022.080 Avg Mbps: 6022.080 5000 753250448 6026.004 100.00% Conn: 1 Mbps: 6026.004 Peak Mbps: 6026.004 Avg Mbps: 6026.004 --- fc00:0:0:1::12 tcpbench statistics --- 4507979796 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5962.966/6009.504/6026.004/23.501 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.059 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.059/0.059/0.059/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 781506678 6252.053 100.00% Conn: 1 Mbps: 6252.053 Peak Mbps: 6252.053 Avg Mbps: 6252.053 2000 781356228 6257.107 100.00% Conn: 1 Mbps: 6257.107 Peak Mbps: 6257.107 Avg Mbps: 6257.107 3000 783122892 6264.983 100.00% Conn: 1 Mbps: 6264.983 Peak Mbps: 6264.983 Avg Mbps: 6264.983 4000 782534004 6260.272 100.00% Conn: 1 Mbps: 6260.272 Peak Mbps: 6264.983 Avg Mbps: 6260.272 5000 783057460 6264.460 100.00% Conn: 1 Mbps: 6264.460 Peak Mbps: 6264.983 Avg Mbps: 6264.460 --- 169.254.0.13 tcpbench statistics --- 4694176698 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6252.053/6259.775/6264.983/4.818 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 769556892 6156.455 100.00% Conn: 1 Mbps: 6156.455 Peak Mbps: 6156.455 Avg Mbps: 6156.455 2000 770415848 6169.496 100.00% Conn: 1 Mbps: 6169.496 Peak Mbps: 6169.496 Avg Mbps: 6169.496 3000 769369576 6154.957 100.00% Conn: 1 Mbps: 6154.957 Peak Mbps: 6169.496 Avg Mbps: 6154.957 4000 769434968 6155.480 100.00% Conn: 1 Mbps: 6155.480 Peak Mbps: 6169.496 Avg Mbps: 6155.480 5000 769500360 6156.003 100.00% Conn: 1 Mbps: 6156.003 Peak Mbps: 6169.496 Avg Mbps: 6156.003 --- fc00::13 tcpbench statistics --- 4618072268 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6154.957/6158.478/6169.496/5.532 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.88s