START sys/net/pair 2025-03-16T04:43:44Z ==== 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.044 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.044/0.044/0.044/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 506764480 4054.116 100.00% Conn: 1 Mbps: 4054.116 Peak Mbps: 4054.116 Avg Mbps: 4054.116 2000 506422716 4055.437 100.00% Conn: 1 Mbps: 4055.437 Peak Mbps: 4055.437 Avg Mbps: 4055.437 3000 506859856 4058.938 100.00% Conn: 1 Mbps: 4058.938 Peak Mbps: 4058.938 Avg Mbps: 4058.938 4000 506923440 4055.388 100.00% Conn: 1 Mbps: 4055.388 Peak Mbps: 4058.938 Avg Mbps: 4055.388 5000 506883700 4055.070 100.00% Conn: 1 Mbps: 4055.070 Peak Mbps: 4058.938 Avg Mbps: 4055.070 --- 169.254.1.11 tcpbench statistics --- 3040563036 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4054.116/4055.790/4058.938/1.644 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 504894680 4039.157 100.00% Conn: 1 Mbps: 4039.157 Peak Mbps: 4039.157 Avg Mbps: 4039.157 2000 503887824 4035.138 100.00% Conn: 1 Mbps: 4035.138 Peak Mbps: 4039.157 Avg Mbps: 4035.138 3000 503087096 4024.697 100.00% Conn: 1 Mbps: 4024.697 Peak Mbps: 4039.157 Avg Mbps: 4024.697 4000 502730336 4021.843 100.00% Conn: 1 Mbps: 4021.843 Peak Mbps: 4039.157 Avg Mbps: 4021.843 5000 503301152 4026.409 100.00% Conn: 1 Mbps: 4026.409 Peak Mbps: 4039.157 Avg Mbps: 4026.409 --- fc00:0:0:1::11 tcpbench statistics --- 3021297376 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4021.843/4029.449/4039.157/6.577 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.080 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.080/0.080/0.080/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.136 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.136/0.136/0.136/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 275461040 2203.688 100.00% Conn: 1 Mbps: 2203.688 Peak Mbps: 2203.688 Avg Mbps: 2203.688 2000 286076664 2290.904 100.00% Conn: 1 Mbps: 2290.904 Peak Mbps: 2290.904 Avg Mbps: 2290.904 3000 288123912 2304.991 100.00% Conn: 1 Mbps: 2304.991 Peak Mbps: 2304.991 Avg Mbps: 2304.991 4002 289173384 2311.076 100.00% Conn: 1 Mbps: 2311.076 Peak Mbps: 2311.076 Avg Mbps: 2311.076 5002 290494136 2323.953 100.00% Conn: 1 Mbps: 2323.953 Peak Mbps: 2323.953 Avg Mbps: 2323.953 --- 169.254.1.12 tcpbench statistics --- 1720974712 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2203.688/2286.923/2323.953/42.953 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1002 257044532 2052.252 100.00% Conn: 1 Mbps: 2052.252 Peak Mbps: 2052.252 Avg Mbps: 2052.252 2001 273725580 2191.997 100.00% Conn: 1 Mbps: 2191.997 Peak Mbps: 2191.997 Avg Mbps: 2191.997 3002 275823468 2206.588 100.00% Conn: 1 Mbps: 2206.588 Peak Mbps: 2206.588 Avg Mbps: 2206.588 4002 275213260 2201.706 100.00% Conn: 1 Mbps: 2201.706 Peak Mbps: 2206.588 Avg Mbps: 2201.706 5003 275933028 2207.464 100.00% Conn: 1 Mbps: 2207.464 Peak Mbps: 2207.464 Avg Mbps: 2207.464 --- fc00:0:0:1::12 tcpbench statistics --- 1635422988 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2052.252/2172.001/2207.464/60.127 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.066 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.066/0.066/0.066/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 568510112 4548.081 100.00% Conn: 1 Mbps: 4548.081 Peak Mbps: 4548.081 Avg Mbps: 4548.081 2000 580240800 4646.573 100.00% Conn: 1 Mbps: 4646.573 Peak Mbps: 4646.573 Avg Mbps: 4646.573 3000 590429436 4723.435 100.00% Conn: 1 Mbps: 4723.435 Peak Mbps: 4723.435 Avg Mbps: 4723.435 4000 577532212 4620.258 100.00% Conn: 1 Mbps: 4620.258 Peak Mbps: 4723.435 Avg Mbps: 4620.258 5000 571745508 4578.543 100.00% Conn: 1 Mbps: 4578.543 Peak Mbps: 4723.435 Avg Mbps: 4578.543 --- 169.254.0.13 tcpbench statistics --- 3419853120 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4548.081/4623.378/4723.435/60.397 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 602654336 4821.235 100.00% Conn: 1 Mbps: 4821.235 Peak Mbps: 4821.235 Avg Mbps: 4821.235 2000 641656984 5133.256 100.00% Conn: 1 Mbps: 5133.256 Peak Mbps: 5133.256 Avg Mbps: 5133.256 3000 639200728 5118.725 100.00% Conn: 1 Mbps: 5118.725 Peak Mbps: 5133.256 Avg Mbps: 5118.725 4000 639052568 5112.421 100.00% Conn: 1 Mbps: 5112.421 Peak Mbps: 5133.256 Avg Mbps: 5112.421 5000 637356368 5103.955 100.00% Conn: 1 Mbps: 5103.955 Peak Mbps: 5133.256 Avg Mbps: 5103.955 --- fc00::13 tcpbench statistics --- 3798633952 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4821.235/5057.918/5133.256/118.728 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.057 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.057/0.057/0.057/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 1000 273070952 2184.568 100.00% Conn: 1 Mbps: 2184.568 Peak Mbps: 2184.568 Avg Mbps: 2184.568 2001 287288320 2298.307 100.00% Conn: 1 Mbps: 2298.307 Peak Mbps: 2298.307 Avg Mbps: 2298.307 3001 286872176 2294.977 100.00% Conn: 1 Mbps: 2294.977 Peak Mbps: 2298.307 Avg Mbps: 2294.977 4003 288116664 2302.631 100.00% Conn: 1 Mbps: 2302.631 Peak Mbps: 2302.631 Avg Mbps: 2302.631 5002 287610592 2303.188 100.00% Conn: 1 Mbps: 2303.188 Peak Mbps: 2303.188 Avg Mbps: 2303.188 --- 169.254.1.11 tcpbench statistics --- 1711502376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2184.568/2276.734/2303.188/46.181 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 257627000 2061.016 100.00% Conn: 1 Mbps: 2061.016 Peak Mbps: 2061.016 Avg Mbps: 2061.016 2001 268773544 2150.188 100.00% Conn: 1 Mbps: 2150.188 Peak Mbps: 2150.188 Avg Mbps: 2150.188 3003 274340228 2192.529 100.00% Conn: 1 Mbps: 2192.529 Peak Mbps: 2192.529 Avg Mbps: 2192.529 4003 274190572 2193.525 100.00% Conn: 1 Mbps: 2193.525 Peak Mbps: 2193.525 Avg Mbps: 2193.525 5004 274743264 2197.946 100.00% Conn: 1 Mbps: 2197.946 Peak Mbps: 2197.946 Avg Mbps: 2197.946 --- fc00:0:0:1::11 tcpbench statistics --- 1625036436 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2061.016/2159.041/2197.946/51.984 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.066 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.066/0.066/0.066/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.048 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.048/0.048/0.048/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 512353080 4098.825 100.00% Conn: 1 Mbps: 4098.825 Peak Mbps: 4098.825 Avg Mbps: 4098.825 2000 514003800 4116.147 100.00% Conn: 1 Mbps: 4116.147 Peak Mbps: 4116.147 Avg Mbps: 4116.147 3000 513373920 4106.991 100.00% Conn: 1 Mbps: 4106.991 Peak Mbps: 4116.147 Avg Mbps: 4106.991 4000 513540440 4108.324 100.00% Conn: 1 Mbps: 4108.324 Peak Mbps: 4116.147 Avg Mbps: 4108.324 5000 512671640 4101.373 100.00% Conn: 1 Mbps: 4101.373 Peak Mbps: 4116.147 Avg Mbps: 4101.373 --- 169.254.1.12 tcpbench statistics --- 3077631328 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4098.825/4106.332/4116.147/6.028 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 513670164 4109.361 100.00% Conn: 1 Mbps: 4109.361 Peak Mbps: 4109.361 Avg Mbps: 4109.361 2000 512769096 4106.259 100.00% Conn: 1 Mbps: 4106.259 Peak Mbps: 4109.361 Avg Mbps: 4106.259 3000 513001860 4104.015 100.00% Conn: 1 Mbps: 4104.015 Peak Mbps: 4109.361 Avg Mbps: 4104.015 4000 512947596 4103.581 100.00% Conn: 1 Mbps: 4103.581 Peak Mbps: 4109.361 Avg Mbps: 4103.581 5000 512510628 4100.085 100.00% Conn: 1 Mbps: 4100.085 Peak Mbps: 4109.361 Avg Mbps: 4100.085 --- fc00:0:0:1::12 tcpbench statistics --- 3077161500 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4100.085/4104.660/4109.361/3.071 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.056 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.056/0.056/0.056/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.061 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.061/0.061/0.061/0.000 ms ==== run-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 777384648 6219.077 100.00% Conn: 1 Mbps: 6219.077 Peak Mbps: 6219.077 Avg Mbps: 6219.077 2000 778182776 6231.694 100.00% Conn: 1 Mbps: 6231.694 Peak Mbps: 6231.694 Avg Mbps: 6231.694 3000 777692036 6221.536 100.00% Conn: 1 Mbps: 6221.536 Peak Mbps: 6231.694 Avg Mbps: 6221.536 4000 777528456 6220.228 100.00% Conn: 1 Mbps: 6220.228 Peak Mbps: 6231.694 Avg Mbps: 6220.228 5000 777953764 6223.630 100.00% Conn: 1 Mbps: 6223.630 Peak Mbps: 6231.694 Avg Mbps: 6223.630 --- 169.254.0.13 tcpbench statistics --- 4666171988 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6219.077/6223.233/6231.694/4.493 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 771189532 6169.516 100.00% Conn: 1 Mbps: 6169.516 Peak Mbps: 6169.516 Avg Mbps: 6169.516 2000 771135160 6175.257 100.00% Conn: 1 Mbps: 6175.257 Peak Mbps: 6175.257 Avg Mbps: 6175.257 3000 771200552 6175.780 100.00% Conn: 1 Mbps: 6175.780 Peak Mbps: 6175.780 Avg Mbps: 6175.780 4000 770710112 6165.681 100.00% Conn: 1 Mbps: 6165.681 Peak Mbps: 6175.780 Avg Mbps: 6165.681 5000 771102464 6168.820 100.00% Conn: 1 Mbps: 6168.820 Peak Mbps: 6175.780 Avg Mbps: 6168.820 --- fc00::13 tcpbench statistics --- 4626636460 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6165.681/6171.011/6175.780/3.904 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.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-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 275079600 2198.438 100.00% Conn: 1 Mbps: 2198.438 Peak Mbps: 2198.438 Avg Mbps: 2198.438 2002 284278192 2271.954 100.00% Conn: 1 Mbps: 2271.954 Peak Mbps: 2271.954 Avg Mbps: 2271.954 3002 285171104 2283.652 100.00% Conn: 1 Mbps: 2283.652 Peak Mbps: 2283.652 Avg Mbps: 2283.652 4004 285540408 2279.764 100.00% Conn: 1 Mbps: 2279.764 Peak Mbps: 2283.652 Avg Mbps: 2279.764 5004 284243152 2273.945 100.00% Conn: 1 Mbps: 2273.945 Peak Mbps: 2283.652 Avg Mbps: 2273.945 --- 169.254.1.11 tcpbench statistics --- 1694606080 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2198.438/2261.551/2283.652/31.828 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 536149000 4289.192 100.00% Conn: 1 Mbps: 4289.192 Peak Mbps: 4289.192 Avg Mbps: 4289.192 2000 605409408 4848.123 100.00% Conn: 1 Mbps: 4848.123 Peak Mbps: 4848.123 Avg Mbps: 4848.123 3000 606041672 4848.333 100.00% Conn: 1 Mbps: 4848.333 Peak Mbps: 4848.333 Avg Mbps: 4848.333 4001 609015296 4872.122 100.00% Conn: 1 Mbps: 4872.122 Peak Mbps: 4872.122 Avg Mbps: 4872.122 5001 610458472 4883.668 100.00% Conn: 1 Mbps: 4883.668 Peak Mbps: 4883.668 Avg Mbps: 4883.668 --- fc00:0:0:1::11 tcpbench statistics --- 3573517744 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4289.192/4748.288/4883.668/229.960 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.049 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.049/0.049/0.049/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 769613550 6156.908 100.00% Conn: 1 Mbps: 6156.908 Peak Mbps: 6156.908 Avg Mbps: 6156.908 2000 770232308 6168.026 100.00% Conn: 1 Mbps: 6168.026 Peak Mbps: 6168.026 Avg Mbps: 6168.026 3000 771311948 6170.496 100.00% Conn: 1 Mbps: 6170.496 Peak Mbps: 6170.496 Avg Mbps: 6170.496 4000 771966292 6175.730 100.00% Conn: 1 Mbps: 6175.730 Peak Mbps: 6175.730 Avg Mbps: 6175.730 5000 770821220 6166.570 100.00% Conn: 1 Mbps: 6166.570 Peak Mbps: 6175.730 Avg Mbps: 6166.570 --- 169.254.1.12 tcpbench statistics --- 4624373934 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6156.908/6167.546/6175.730/6.165 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 765631932 6125.055 100.00% Conn: 1 Mbps: 6125.055 Peak Mbps: 6125.055 Avg Mbps: 6125.055 2000 765642232 6131.269 100.00% Conn: 1 Mbps: 6131.269 Peak Mbps: 6131.269 Avg Mbps: 6131.269 3000 766198064 6129.585 100.00% Conn: 1 Mbps: 6129.585 Peak Mbps: 6131.269 Avg Mbps: 6129.585 4000 766492328 6131.939 100.00% Conn: 1 Mbps: 6131.939 Peak Mbps: 6131.939 Avg Mbps: 6131.939 5000 766099976 6128.800 100.00% Conn: 1 Mbps: 6128.800 Peak Mbps: 6131.939 Avg Mbps: 6128.800 --- fc00:0:0:1::12 tcpbench statistics --- 4596229900 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6125.055/6129.330/6131.939/2.416 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.048 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/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 768276862 6146.215 100.00% Conn: 1 Mbps: 6146.215 Peak Mbps: 6146.215 Avg Mbps: 6146.215 2000 768924148 6157.551 100.00% Conn: 1 Mbps: 6157.551 Peak Mbps: 6157.551 Avg Mbps: 6157.551 3000 762053788 6102.533 100.00% Conn: 1 Mbps: 6102.533 Peak Mbps: 6157.551 Avg Mbps: 6102.533 4000 768891432 6151.131 100.00% Conn: 1 Mbps: 6151.131 Peak Mbps: 6157.551 Avg Mbps: 6151.131 5000 770069208 6160.554 100.00% Conn: 1 Mbps: 6160.554 Peak Mbps: 6160.554 Avg Mbps: 6160.554 --- 169.254.0.13 tcpbench statistics --- 4606714278 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6102.533/6143.597/6160.554/21.129 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 773293492 6186.348 100.00% Conn: 1 Mbps: 6186.348 Peak Mbps: 6186.348 Avg Mbps: 6186.348 2000 771200552 6175.780 100.00% Conn: 1 Mbps: 6175.780 Peak Mbps: 6186.348 Avg Mbps: 6175.780 3000 771625600 6173.005 100.00% Conn: 1 Mbps: 6173.005 Peak Mbps: 6186.348 Avg Mbps: 6173.005 4000 771723688 6173.790 100.00% Conn: 1 Mbps: 6173.790 Peak Mbps: 6186.348 Avg Mbps: 6173.790 5000 773260400 6186.083 100.00% Conn: 1 Mbps: 6186.083 Peak Mbps: 6186.348 Avg Mbps: 6186.083 --- fc00::13 tcpbench statistics --- 4633579428 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6173.005/6179.001/6186.348/5.960 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.86s