START sys/net/pair 2025-03-06T14:12:15Z ==== 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.045 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.045/0.045/0.045/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 516834596 4134.677 100.00% Conn: 1 Mbps: 4134.677 Peak Mbps: 4134.677 Avg Mbps: 4134.677 2000 516397456 4135.315 100.00% Conn: 1 Mbps: 4135.315 Peak Mbps: 4135.315 Avg Mbps: 4135.315 3000 515554968 4124.440 100.00% Conn: 1 Mbps: 4124.440 Peak Mbps: 4135.315 Avg Mbps: 4124.440 4000 515833148 4126.665 100.00% Conn: 1 Mbps: 4126.665 Peak Mbps: 4135.315 Avg Mbps: 4126.665 5000 515459592 4123.677 100.00% Conn: 1 Mbps: 4123.677 Peak Mbps: 4135.315 Avg Mbps: 4123.677 --- 169.254.1.11 tcpbench statistics --- 3094879668 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4123.677/4128.955/4135.315/5.033 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 504918464 4039.348 100.00% Conn: 1 Mbps: 4039.348 Peak Mbps: 4039.348 Avg Mbps: 4039.348 2000 505473424 4047.835 100.00% Conn: 1 Mbps: 4047.835 Peak Mbps: 4047.835 Avg Mbps: 4047.835 3000 505481352 4043.851 100.00% Conn: 1 Mbps: 4043.851 Peak Mbps: 4047.835 Avg Mbps: 4043.851 4000 505378288 4043.026 100.00% Conn: 1 Mbps: 4043.026 Peak Mbps: 4047.835 Avg Mbps: 4043.026 5000 505528920 4044.231 100.00% Conn: 1 Mbps: 4044.231 Peak Mbps: 4047.835 Avg Mbps: 4044.231 --- fc00:0:0:1::11 tcpbench statistics --- 3031572064 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4039.348/4043.658/4047.835/2.713 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.070 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.070/0.070/0.070/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.131 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.131/0.131/0.131/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 274132840 2193.063 100.00% Conn: 1 Mbps: 2193.063 Peak Mbps: 2193.063 Avg Mbps: 2193.063 2000 289548800 2318.709 100.00% Conn: 1 Mbps: 2318.709 Peak Mbps: 2318.709 Avg Mbps: 2318.709 3000 289942608 2321.863 100.00% Conn: 1 Mbps: 2321.863 Peak Mbps: 2321.863 Avg Mbps: 2321.863 4001 288879824 2311.039 100.00% Conn: 1 Mbps: 2311.039 Peak Mbps: 2321.863 Avg Mbps: 2311.039 5002 289727688 2315.506 100.00% Conn: 1 Mbps: 2315.506 Peak Mbps: 2321.863 Avg Mbps: 2315.506 --- 169.254.1.12 tcpbench statistics --- 1722215232 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2193.063/2292.036/2321.863/49.616 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 255299388 2040.355 100.00% Conn: 1 Mbps: 2040.355 Peak Mbps: 2040.355 Avg Mbps: 2040.355 2002 270904984 2167.240 100.00% Conn: 1 Mbps: 2167.240 Peak Mbps: 2167.240 Avg Mbps: 2167.240 3002 273572276 2190.769 100.00% Conn: 1 Mbps: 2190.769 Peak Mbps: 2190.769 Avg Mbps: 2190.769 4002 276299176 2210.393 100.00% Conn: 1 Mbps: 2210.393 Peak Mbps: 2210.393 Avg Mbps: 2210.393 5002 278687316 2229.499 100.00% Conn: 1 Mbps: 2229.499 Peak Mbps: 2229.499 Avg Mbps: 2229.499 --- fc00:0:0:1::12 tcpbench statistics --- 1630605200 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2040.355/2167.651/2229.499/66.919 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.072 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.072/0.072/0.072/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.084 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.084/0.084/0.084/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 576600196 4612.802 100.00% Conn: 1 Mbps: 4612.802 Peak Mbps: 4612.802 Avg Mbps: 4612.802 2000 563679408 4513.949 100.00% Conn: 1 Mbps: 4513.949 Peak Mbps: 4612.802 Avg Mbps: 4513.949 3000 581077020 4648.616 100.00% Conn: 1 Mbps: 4648.616 Peak Mbps: 4648.616 Avg Mbps: 4648.616 4000 555413488 4447.756 100.00% Conn: 1 Mbps: 4447.756 Peak Mbps: 4648.616 Avg Mbps: 4447.756 5000 549413448 4395.308 100.00% Conn: 1 Mbps: 4395.308 Peak Mbps: 4648.616 Avg Mbps: 4395.308 --- 169.254.0.13 tcpbench statistics --- 3349090428 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4395.308/4523.686/4648.616/95.802 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 601245752 4809.966 100.00% Conn: 1 Mbps: 4809.966 Peak Mbps: 4809.966 Avg Mbps: 4809.966 2001 640028880 5120.231 100.00% Conn: 1 Mbps: 5120.231 Peak Mbps: 5120.231 Avg Mbps: 5120.231 3000 637033528 5101.370 100.00% Conn: 1 Mbps: 5101.370 Peak Mbps: 5120.231 Avg Mbps: 5101.370 4000 639525128 5116.201 100.00% Conn: 1 Mbps: 5116.201 Peak Mbps: 5120.231 Avg Mbps: 5116.201 5001 641354936 5130.839 100.00% Conn: 1 Mbps: 5130.839 Peak Mbps: 5130.839 Avg Mbps: 5130.839 --- fc00::13 tcpbench statistics --- 3792723032 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4809.966/5055.721/5130.839/123.241 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.059 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.059/0.059/0.059/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.052 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.052/0.052/0.052/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 276333688 2208.461 100.00% Conn: 1 Mbps: 2208.461 Peak Mbps: 2208.461 Avg Mbps: 2208.461 2001 285023128 2282.467 100.00% Conn: 1 Mbps: 2282.467 Peak Mbps: 2282.467 Avg Mbps: 2282.467 3002 287614328 2300.915 100.00% Conn: 1 Mbps: 2300.915 Peak Mbps: 2300.915 Avg Mbps: 2300.915 4002 286975928 2295.807 100.00% Conn: 1 Mbps: 2295.807 Peak Mbps: 2300.915 Avg Mbps: 2295.807 5003 288026840 2304.215 100.00% Conn: 1 Mbps: 2304.215 Peak Mbps: 2304.215 Avg Mbps: 2304.215 --- 169.254.1.11 tcpbench statistics --- 1712319536 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2208.461/2278.373/2304.215/35.733 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 257006472 2056.052 100.00% Conn: 1 Mbps: 2056.052 Peak Mbps: 2056.052 Avg Mbps: 2056.052 2002 269497300 2153.825 100.00% Conn: 1 Mbps: 2153.825 Peak Mbps: 2153.825 Avg Mbps: 2153.825 3002 271635228 2175.257 100.00% Conn: 1 Mbps: 2175.257 Peak Mbps: 2175.257 Avg Mbps: 2175.257 4002 273122596 2184.981 100.00% Conn: 1 Mbps: 2184.981 Peak Mbps: 2184.981 Avg Mbps: 2184.981 5003 273324596 2186.597 100.00% Conn: 1 Mbps: 2186.597 Peak Mbps: 2186.597 Avg Mbps: 2186.597 --- fc00:0:0:1::11 tcpbench statistics --- 1616404460 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2056.052/2151.342/2186.597/49.057 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.055 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.055/0.055/0.055/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.046 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.046/0.046/0.046/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 513598360 4108.787 100.00% Conn: 1 Mbps: 4108.787 Peak Mbps: 4108.787 Avg Mbps: 4108.787 2000 514262992 4118.222 100.00% Conn: 1 Mbps: 4118.222 Peak Mbps: 4118.222 Avg Mbps: 4118.222 3000 514277472 4114.220 100.00% Conn: 1 Mbps: 4114.220 Peak Mbps: 4118.222 Avg Mbps: 4114.220 4000 514672776 4117.382 100.00% Conn: 1 Mbps: 4117.382 Peak Mbps: 4118.222 Avg Mbps: 4117.382 5000 513966152 4111.729 100.00% Conn: 1 Mbps: 4111.729 Peak Mbps: 4118.222 Avg Mbps: 4111.729 --- 169.254.1.12 tcpbench statistics --- 3084219728 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4108.787/4114.068/4118.222/3.511 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 517371540 4138.972 100.00% Conn: 1 Mbps: 4138.972 Peak Mbps: 4138.972 Avg Mbps: 4138.972 2000 517518624 4144.293 100.00% Conn: 1 Mbps: 4144.293 Peak Mbps: 4144.293 Avg Mbps: 4144.293 3000 517507200 4140.058 100.00% Conn: 1 Mbps: 4140.058 Peak Mbps: 4144.293 Avg Mbps: 4140.058 4000 518518224 4148.146 100.00% Conn: 1 Mbps: 4148.146 Peak Mbps: 4148.146 Avg Mbps: 4148.146 5000 519275064 4154.201 100.00% Conn: 1 Mbps: 4154.201 Peak Mbps: 4154.201 Avg Mbps: 4154.201 --- fc00:0:0:1::12 tcpbench statistics --- 3108925932 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4138.972/4145.134/4154.201/5.581 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.052 ms --- fc00::13 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-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 777056562 6216.452 100.00% Conn: 1 Mbps: 6216.452 Peak Mbps: 6216.452 Avg Mbps: 6216.452 2000 777005000 6222.262 100.00% Conn: 1 Mbps: 6222.262 Peak Mbps: 6222.262 Avg Mbps: 6222.262 3000 777839258 6222.714 100.00% Conn: 1 Mbps: 6222.714 Peak Mbps: 6222.714 Avg Mbps: 6222.714 4000 777495740 6219.966 100.00% Conn: 1 Mbps: 6219.966 Peak Mbps: 6222.714 Avg Mbps: 6219.966 5000 768237112 6145.897 100.00% Conn: 1 Mbps: 6145.897 Peak Mbps: 6222.714 Avg Mbps: 6145.897 --- 169.254.0.13 tcpbench statistics --- 4654867684 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6145.897/6205.458/6222.714/29.863 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 760151428 6081.211 100.00% Conn: 1 Mbps: 6081.211 Peak Mbps: 6081.211 Avg Mbps: 6081.211 2000 760705136 6091.733 100.00% Conn: 1 Mbps: 6091.733 Peak Mbps: 6091.733 Avg Mbps: 6091.733 3000 757958672 6069.739 100.00% Conn: 1 Mbps: 6069.739 Peak Mbps: 6091.733 Avg Mbps: 6069.739 4000 759070336 6072.563 100.00% Conn: 1 Mbps: 6072.563 Peak Mbps: 6091.733 Avg Mbps: 6072.563 5000 758187544 6065.500 100.00% Conn: 1 Mbps: 6065.500 Peak Mbps: 6091.733 Avg Mbps: 6065.500 --- fc00::13 tcpbench statistics --- 4549290868 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6065.500/6076.149/6091.733/9.336 Mbps ==== run-ping-3-1 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.051 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/0.000 ms ==== run-ping6-3-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.056 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.056/0.056/0.056/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 274769408 2198.155 100.00% Conn: 1 Mbps: 2198.155 Peak Mbps: 2198.155 Avg Mbps: 2198.155 2001 284006200 2269.780 100.00% Conn: 1 Mbps: 2269.780 Peak Mbps: 2269.780 Avg Mbps: 2269.780 3002 284016496 2272.132 100.00% Conn: 1 Mbps: 2272.132 Peak Mbps: 2272.132 Avg Mbps: 2272.132 4003 284488936 2273.638 100.00% Conn: 1 Mbps: 2273.638 Peak Mbps: 2273.638 Avg Mbps: 2273.638 5004 280459144 2241.432 100.00% Conn: 1 Mbps: 2241.432 Peak Mbps: 2273.638 Avg Mbps: 2241.432 --- 169.254.1.11 tcpbench statistics --- 1691242640 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2198.155/2251.027/2273.638/28.968 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 544761456 4358.092 100.00% Conn: 1 Mbps: 4358.092 Peak Mbps: 4358.092 Avg Mbps: 4358.092 2000 603302288 4826.418 100.00% Conn: 1 Mbps: 4826.418 Peak Mbps: 4826.418 Avg Mbps: 4826.418 3000 603139528 4825.116 100.00% Conn: 1 Mbps: 4825.116 Peak Mbps: 4826.418 Avg Mbps: 4825.116 4000 601818568 4819.368 100.00% Conn: 1 Mbps: 4819.368 Peak Mbps: 4826.418 Avg Mbps: 4819.368 5000 599610504 4796.884 100.00% Conn: 1 Mbps: 4796.884 Peak Mbps: 4826.418 Avg Mbps: 4796.884 --- fc00:0:0:1::11 tcpbench statistics --- 3562095112 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4358.092/4725.176/4826.418/183.849 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.061 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.061/0.061/0.061/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.051 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.051/0.051/0.051/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 765964210 6127.714 100.00% Conn: 1 Mbps: 6127.714 Peak Mbps: 6127.714 Avg Mbps: 6127.714 2000 767059336 6142.617 100.00% Conn: 1 Mbps: 6142.617 Peak Mbps: 6142.617 Avg Mbps: 6142.617 3000 764360266 6114.882 100.00% Conn: 1 Mbps: 6114.882 Peak Mbps: 6142.617 Avg Mbps: 6114.882 4000 766470448 6131.764 100.00% Conn: 1 Mbps: 6131.764 Peak Mbps: 6142.617 Avg Mbps: 6131.764 5000 766830324 6134.643 100.00% Conn: 1 Mbps: 6134.643 Peak Mbps: 6142.617 Avg Mbps: 6134.643 --- 169.254.1.12 tcpbench statistics --- 4596566144 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6114.882/6130.324/6142.617/9.134 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 763649972 6109.200 100.00% Conn: 1 Mbps: 6109.200 Peak Mbps: 6109.200 Avg Mbps: 6109.200 2000 762666896 6107.443 100.00% Conn: 1 Mbps: 6107.443 Peak Mbps: 6109.200 Avg Mbps: 6107.443 3000 762895768 6103.166 100.00% Conn: 1 Mbps: 6103.166 Peak Mbps: 6109.200 Avg Mbps: 6103.166 4000 763255424 6106.043 100.00% Conn: 1 Mbps: 6106.043 Peak Mbps: 6109.200 Avg Mbps: 6106.043 5000 762732288 6101.858 100.00% Conn: 1 Mbps: 6101.858 Peak Mbps: 6109.200 Avg Mbps: 6101.858 --- fc00:0:0:1::12 tcpbench statistics --- 4577965332 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6101.858/6105.542/6109.200/2.700 Mbps ==== run-ping-3-3 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.040 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.040/0.040/0.040/0.000 ms ==== run-ping6-3-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.046 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 792889074 6343.113 100.00% Conn: 1 Mbps: 6343.113 Peak Mbps: 6343.113 Avg Mbps: 6343.113 2000 790647572 6331.512 100.00% Conn: 1 Mbps: 6331.512 Peak Mbps: 6343.113 Avg Mbps: 6331.512 3000 790876584 6327.013 100.00% Conn: 1 Mbps: 6327.013 Peak Mbps: 6343.113 Avg Mbps: 6327.013 4000 791596336 6332.771 100.00% Conn: 1 Mbps: 6332.771 Peak Mbps: 6343.113 Avg Mbps: 6332.771 5000 792087076 6336.697 100.00% Conn: 1 Mbps: 6336.697 Peak Mbps: 6343.113 Avg Mbps: 6336.697 --- 169.254.0.13 tcpbench statistics --- 4750576310 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6327.013/6334.221/6343.113/5.415 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 792078244 6336.626 100.00% Conn: 1 Mbps: 6336.626 Peak Mbps: 6336.626 Avg Mbps: 6336.626 2000 792616432 6347.279 100.00% Conn: 1 Mbps: 6347.279 Peak Mbps: 6347.279 Avg Mbps: 6347.279 3000 795330200 6362.642 100.00% Conn: 1 Mbps: 6362.642 Peak Mbps: 6362.642 Avg Mbps: 6362.642 4000 792714520 6341.716 100.00% Conn: 1 Mbps: 6341.716 Peak Mbps: 6362.642 Avg Mbps: 6341.716 5000 794382016 6355.056 100.00% Conn: 1 Mbps: 6355.056 Peak Mbps: 6362.642 Avg Mbps: 6355.056 --- fc00::13 tcpbench statistics --- 4759803236 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6336.626/6348.664/6362.642/9.288 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.85s