START sys/net/pair 2025-03-12T04:53:30Z ==== 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.037 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.037/0.037/0.037/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.046 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.046/0.046/0.046/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 516914076 4135.313 100.00% Conn: 1 Mbps: 4135.313 Peak Mbps: 4135.313 Avg Mbps: 4135.313 2000 516111328 4133.024 100.00% Conn: 1 Mbps: 4133.024 Peak Mbps: 4135.313 Avg Mbps: 4133.024 3000 515785460 4126.284 100.00% Conn: 1 Mbps: 4126.284 Peak Mbps: 4135.313 Avg Mbps: 4126.284 4000 515602656 4124.821 100.00% Conn: 1 Mbps: 4124.821 Peak Mbps: 4135.313 Avg Mbps: 4124.821 5000 515650344 4125.203 100.00% Conn: 1 Mbps: 4125.203 Peak Mbps: 4135.313 Avg Mbps: 4125.203 --- 169.254.1.11 tcpbench statistics --- 3095849324 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4124.821/4128.929/4135.313/4.365 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 517191008 4137.528 100.00% Conn: 1 Mbps: 4137.528 Peak Mbps: 4137.528 Avg Mbps: 4137.528 2000 515082160 4124.782 100.00% Conn: 1 Mbps: 4124.782 Peak Mbps: 4137.528 Avg Mbps: 4124.782 3000 515359640 4122.877 100.00% Conn: 1 Mbps: 4122.877 Peak Mbps: 4137.528 Avg Mbps: 4122.877 4000 515066304 4120.530 100.00% Conn: 1 Mbps: 4120.530 Peak Mbps: 4137.528 Avg Mbps: 4120.530 5000 515193152 4121.545 100.00% Conn: 1 Mbps: 4121.545 Peak Mbps: 4137.528 Avg Mbps: 4121.545 --- fc00:0:0:1::11 tcpbench statistics --- 3092546312 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4120.530/4125.453/4137.528/6.203 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.084 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.084/0.084/0.084/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.159 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.159/0.159/0.159/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 274020448 2192.164 100.00% Conn: 1 Mbps: 2192.164 Peak Mbps: 2192.164 Avg Mbps: 2192.164 2000 284690048 2277.520 100.00% Conn: 1 Mbps: 2277.520 Peak Mbps: 2277.520 Avg Mbps: 2277.520 3001 288324792 2306.598 100.00% Conn: 1 Mbps: 2306.598 Peak Mbps: 2306.598 Avg Mbps: 2306.598 4002 288765056 2310.120 100.00% Conn: 1 Mbps: 2310.120 Peak Mbps: 2310.120 Avg Mbps: 2310.120 5004 287433560 2297.171 100.00% Conn: 1 Mbps: 2297.171 Peak Mbps: 2310.120 Avg Mbps: 2297.171 --- 169.254.1.12 tcpbench statistics --- 1709393496 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2192.164/2276.715/2310.120/43.765 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 259272664 2074.181 100.00% Conn: 1 Mbps: 2074.181 Peak Mbps: 2074.181 Avg Mbps: 2074.181 2000 271064636 2168.517 100.00% Conn: 1 Mbps: 2168.517 Peak Mbps: 2168.517 Avg Mbps: 2168.517 3001 272895516 2180.983 100.00% Conn: 1 Mbps: 2180.983 Peak Mbps: 2180.983 Avg Mbps: 2180.983 4001 272563980 2182.695 100.00% Conn: 1 Mbps: 2182.695 Peak Mbps: 2182.695 Avg Mbps: 2182.695 5000 274590044 2198.919 100.00% Conn: 1 Mbps: 2198.919 Peak Mbps: 2198.919 Avg Mbps: 2198.919 --- fc00:0:0:1::12 tcpbench statistics --- 1626387664 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2074.181/2161.059/2198.919/44.501 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.064 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.064/0.064/0.064/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.071 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/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 565077556 4520.620 100.00% Conn: 1 Mbps: 4520.620 Peak Mbps: 4520.620 Avg Mbps: 4520.620 2000 565952256 4532.150 100.00% Conn: 1 Mbps: 4532.150 Peak Mbps: 4532.150 Avg Mbps: 4532.150 3000 572316084 4583.112 100.00% Conn: 1 Mbps: 4583.112 Peak Mbps: 4583.112 Avg Mbps: 4583.112 4000 567374948 4539.000 100.00% Conn: 1 Mbps: 4539.000 Peak Mbps: 4583.112 Avg Mbps: 4539.000 5000 565410532 4523.284 100.00% Conn: 1 Mbps: 4523.284 Peak Mbps: 4583.112 Avg Mbps: 4523.284 --- 169.254.0.13 tcpbench statistics --- 3396314084 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4520.620/4539.633/4583.112/22.696 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 603789208 4830.314 100.00% Conn: 1 Mbps: 4830.314 Peak Mbps: 4830.314 Avg Mbps: 4830.314 2000 638647328 5109.179 100.00% Conn: 1 Mbps: 5109.179 Peak Mbps: 5109.179 Avg Mbps: 5109.179 3001 645052240 5160.418 100.00% Conn: 1 Mbps: 5160.418 Peak Mbps: 5160.418 Avg Mbps: 5160.418 4001 637724824 5106.905 100.00% Conn: 1 Mbps: 5106.905 Peak Mbps: 5160.418 Avg Mbps: 5106.905 5001 640382392 5128.187 100.00% Conn: 1 Mbps: 5128.187 Peak Mbps: 5160.418 Avg Mbps: 5128.187 --- fc00::13 tcpbench statistics --- 3807666136 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4830.314/5067.001/5160.418/119.886 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.051 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.051/0.051/0.051/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 271948248 2173.413 100.00% Conn: 1 Mbps: 2173.413 Peak Mbps: 2173.413 Avg Mbps: 2173.413 2002 284766160 2278.129 100.00% Conn: 1 Mbps: 2278.129 Peak Mbps: 2278.129 Avg Mbps: 2278.129 3002 284120912 2272.967 100.00% Conn: 1 Mbps: 2272.967 Peak Mbps: 2278.129 Avg Mbps: 2272.967 4004 286177304 2287.131 100.00% Conn: 1 Mbps: 2287.131 Peak Mbps: 2287.131 Avg Mbps: 2287.131 5005 287211272 2295.395 100.00% Conn: 1 Mbps: 2295.395 Peak Mbps: 2295.395 Avg Mbps: 2295.395 --- 169.254.1.11 tcpbench statistics --- 1698335840 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2173.413/2261.407/2295.395/44.661 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 254430628 2035.445 100.00% Conn: 1 Mbps: 2035.445 Peak Mbps: 2035.445 Avg Mbps: 2035.445 2001 272654368 2179.056 100.00% Conn: 1 Mbps: 2179.056 Peak Mbps: 2179.056 Avg Mbps: 2179.056 3001 272602112 2183.000 100.00% Conn: 1 Mbps: 2183.000 Peak Mbps: 2183.000 Avg Mbps: 2183.000 4002 272442020 2177.359 100.00% Conn: 1 Mbps: 2177.359 Peak Mbps: 2183.000 Avg Mbps: 2177.359 5002 272806796 2184.639 100.00% Conn: 1 Mbps: 2184.639 Peak Mbps: 2184.639 Avg Mbps: 2184.639 --- fc00:0:0:1::11 tcpbench statistics --- 1617310956 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2035.445/2151.900/2184.639/58.286 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.042 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.042/0.042/0.042/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 518502736 4148.022 100.00% Conn: 1 Mbps: 4148.022 Peak Mbps: 4148.022 Avg Mbps: 4148.022 2000 516653640 4137.366 100.00% Conn: 1 Mbps: 4137.366 Peak Mbps: 4148.022 Avg Mbps: 4137.366 3000 519358504 4154.868 100.00% Conn: 1 Mbps: 4154.868 Peak Mbps: 4154.868 Avg Mbps: 4154.868 4000 519585840 4156.687 100.00% Conn: 1 Mbps: 4156.687 Peak Mbps: 4156.687 Avg Mbps: 4156.687 5000 520124496 4160.996 100.00% Conn: 1 Mbps: 4160.996 Peak Mbps: 4160.996 Avg Mbps: 4160.996 --- 169.254.1.12 tcpbench statistics --- 3114058664 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4137.366/4151.588/4160.996/8.249 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 523046412 4184.371 100.00% Conn: 1 Mbps: 4184.371 Peak Mbps: 4184.371 Avg Mbps: 4184.371 2000 523681872 4193.649 100.00% Conn: 1 Mbps: 4193.649 Peak Mbps: 4193.649 Avg Mbps: 4193.649 3000 523550496 4188.404 100.00% Conn: 1 Mbps: 4188.404 Peak Mbps: 4193.649 Avg Mbps: 4188.404 4000 524173104 4193.385 100.00% Conn: 1 Mbps: 4193.385 Peak Mbps: 4193.649 Avg Mbps: 4193.385 5000 523714716 4189.718 100.00% Conn: 1 Mbps: 4189.718 Peak Mbps: 4193.649 Avg Mbps: 4189.718 --- fc00:0:0:1::12 tcpbench statistics --- 3142339704 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4184.371/4189.905/4193.649/3.436 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.045 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.045/0.045/0.045/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.050 ms --- fc00::13 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-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 780463626 6243.709 100.00% Conn: 1 Mbps: 6243.709 Peak Mbps: 6243.709 Avg Mbps: 6243.709 2000 781781536 6260.513 100.00% Conn: 1 Mbps: 6260.513 Peak Mbps: 6260.513 Avg Mbps: 6260.513 3000 782206844 6257.655 100.00% Conn: 1 Mbps: 6257.655 Peak Mbps: 6260.513 Avg Mbps: 6257.655 4000 781258080 6250.065 100.00% Conn: 1 Mbps: 6250.065 Peak Mbps: 6260.513 Avg Mbps: 6250.065 5000 781323512 6250.588 100.00% Conn: 1 Mbps: 6250.588 Peak Mbps: 6260.513 Avg Mbps: 6250.588 --- 169.254.0.13 tcpbench statistics --- 4689371306 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6243.709/6252.506/6260.513/5.961 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 768086724 6144.694 100.00% Conn: 1 Mbps: 6144.694 Peak Mbps: 6144.694 Avg Mbps: 6144.694 2000 772246824 6184.159 100.00% Conn: 1 Mbps: 6184.159 Peak Mbps: 6184.159 Avg Mbps: 6184.159 3000 773129616 6185.037 100.00% Conn: 1 Mbps: 6185.037 Peak Mbps: 6185.037 Avg Mbps: 6185.037 4000 772050648 6176.405 100.00% Conn: 1 Mbps: 6176.405 Peak Mbps: 6185.037 Avg Mbps: 6176.405 5000 772769960 6182.160 100.00% Conn: 1 Mbps: 6182.160 Peak Mbps: 6185.037 Avg Mbps: 6182.160 --- fc00::13 tcpbench statistics --- 4632034612 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6144.694/6174.491/6185.037/15.199 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.062 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.062/0.062/0.062/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.057 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.057/0.057/0.057/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 274505320 2193.849 100.00% Conn: 1 Mbps: 2193.849 Peak Mbps: 2193.849 Avg Mbps: 2193.849 2002 283163008 2263.041 100.00% Conn: 1 Mbps: 2263.041 Peak Mbps: 2263.041 Avg Mbps: 2263.041 3002 283520840 2268.167 100.00% Conn: 1 Mbps: 2268.167 Peak Mbps: 2268.167 Avg Mbps: 2268.167 4003 284462592 2275.701 100.00% Conn: 1 Mbps: 2275.701 Peak Mbps: 2275.701 Avg Mbps: 2275.701 5003 287370120 2298.961 100.00% Conn: 1 Mbps: 2298.961 Peak Mbps: 2298.961 Avg Mbps: 2298.961 --- 169.254.1.11 tcpbench statistics --- 1695945856 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2193.849/2259.944/2298.961/35.260 Mbps # path MTU discovery must create a dynamic route /sbin/route -T 13 -n get -host -inet 169.254.1.11 | grep DYNAMIC flags: ==== run-tcpbench6-3-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 13 -b fc00::13 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1001 540113096 4316.588 100.00% Conn: 1 Mbps: 4316.588 Peak Mbps: 4316.588 Avg Mbps: 4316.588 2001 611789080 4894.313 100.00% Conn: 1 Mbps: 4894.313 Peak Mbps: 4894.313 Avg Mbps: 4894.313 3001 608032400 4864.259 100.00% Conn: 1 Mbps: 4864.259 Peak Mbps: 4894.313 Avg Mbps: 4864.259 4002 594953520 4759.628 100.00% Conn: 1 Mbps: 4759.628 Peak Mbps: 4894.313 Avg Mbps: 4759.628 5001 601109848 4813.692 100.00% Conn: 1 Mbps: 4813.692 Peak Mbps: 4894.313 Avg Mbps: 4813.692 --- fc00:0:0:1::11 tcpbench statistics --- 3559214576 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4316.588/4729.696/4894.313/211.573 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.047 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.047/0.047/0.047/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.049 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.049/0.049/0.049/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 768010710 6144.086 100.00% Conn: 1 Mbps: 6144.086 Peak Mbps: 6144.086 Avg Mbps: 6144.086 2000 771835872 6180.868 100.00% Conn: 1 Mbps: 6180.868 Peak Mbps: 6180.868 Avg Mbps: 6180.868 3000 772392044 6179.136 100.00% Conn: 1 Mbps: 6179.136 Peak Mbps: 6180.868 Avg Mbps: 6179.136 4000 771148836 6169.191 100.00% Conn: 1 Mbps: 6169.191 Peak Mbps: 6180.868 Avg Mbps: 6169.191 5000 771099762 6168.798 100.00% Conn: 1 Mbps: 6168.798 Peak Mbps: 6180.868 Avg Mbps: 6168.798 --- 169.254.1.12 tcpbench statistics --- 4625881430 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6144.086/6168.416/6180.868/13.135 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 769786988 6158.296 100.00% Conn: 1 Mbps: 6158.296 Peak Mbps: 6158.296 Avg Mbps: 6158.296 2000 770938984 6173.686 100.00% Conn: 1 Mbps: 6173.686 Peak Mbps: 6173.686 Avg Mbps: 6173.686 3000 768519480 6148.156 100.00% Conn: 1 Mbps: 6148.156 Peak Mbps: 6173.686 Avg Mbps: 6148.156 4000 769467664 6155.741 100.00% Conn: 1 Mbps: 6155.741 Peak Mbps: 6173.686 Avg Mbps: 6155.741 5000 769206096 6153.649 100.00% Conn: 1 Mbps: 6153.649 Peak Mbps: 6173.686 Avg Mbps: 6153.649 --- fc00:0:0:1::12 tcpbench statistics --- 4617484964 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6148.156/6157.905/6173.686/8.568 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.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 784418490 6275.348 100.00% Conn: 1 Mbps: 6275.348 Peak Mbps: 6275.348 Avg Mbps: 6275.348 2000 784889100 6285.398 100.00% Conn: 1 Mbps: 6285.398 Peak Mbps: 6285.398 Avg Mbps: 6285.398 3000 783907608 6271.261 100.00% Conn: 1 Mbps: 6271.261 Peak Mbps: 6285.398 Avg Mbps: 6271.261 4000 783187856 6265.503 100.00% Conn: 1 Mbps: 6265.503 Peak Mbps: 6285.398 Avg Mbps: 6265.503 5000 783776756 6270.214 100.00% Conn: 1 Mbps: 6270.214 Peak Mbps: 6285.398 Avg Mbps: 6270.214 --- 169.254.0.13 tcpbench statistics --- 4703007814 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6265.503/6273.545/6285.398/6.704 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 788748580 6309.989 100.00% Conn: 1 Mbps: 6309.989 Peak Mbps: 6309.989 Avg Mbps: 6309.989 2000 789117960 6319.263 100.00% Conn: 1 Mbps: 6319.263 Peak Mbps: 6319.263 Avg Mbps: 6319.263 3000 788889088 6311.113 100.00% Conn: 1 Mbps: 6311.113 Peak Mbps: 6319.263 Avg Mbps: 6311.113 4000 788365952 6306.928 100.00% Conn: 1 Mbps: 6306.928 Peak Mbps: 6319.263 Avg Mbps: 6306.928 5000 788594824 6308.759 100.00% Conn: 1 Mbps: 6308.759 Peak Mbps: 6319.263 Avg Mbps: 6308.759 --- fc00::13 tcpbench statistics --- 4732834364 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6306.928/6311.210/6319.263/4.259 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.87s