START sys/net/pair 2025-03-20T04:51:17Z ==== 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.049 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.049/0.049/0.049/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 526038380 4208.307 100.00% Conn: 1 Mbps: 4208.307 Peak Mbps: 4208.307 Avg Mbps: 4208.307 2000 524957452 4203.863 100.00% Conn: 1 Mbps: 4203.863 Peak Mbps: 4208.307 Avg Mbps: 4203.863 3000 524925660 4199.405 100.00% Conn: 1 Mbps: 4199.405 Peak Mbps: 4208.307 Avg Mbps: 4199.405 4000 524210340 4193.683 100.00% Conn: 1 Mbps: 4193.683 Peak Mbps: 4208.307 Avg Mbps: 4193.683 5000 521873628 4174.989 100.00% Conn: 1 Mbps: 4174.989 Peak Mbps: 4208.307 Avg Mbps: 4174.989 --- 169.254.1.11 tcpbench statistics --- 3146644992 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4174.989/4196.050/4208.307/11.591 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 514210080 4113.681 100.00% Conn: 1 Mbps: 4113.681 Peak Mbps: 4113.681 Avg Mbps: 4113.681 2000 514067376 4116.656 100.00% Conn: 1 Mbps: 4116.656 Peak Mbps: 4116.656 Avg Mbps: 4116.656 3000 514947384 4119.579 100.00% Conn: 1 Mbps: 4119.579 Peak Mbps: 4119.579 Avg Mbps: 4119.579 4000 515256576 4122.053 100.00% Conn: 1 Mbps: 4122.053 Peak Mbps: 4122.053 Avg Mbps: 4122.053 5000 514741256 4117.930 100.00% Conn: 1 Mbps: 4117.930 Peak Mbps: 4122.053 Avg Mbps: 4117.930 --- fc00:0:0:1::11 tcpbench statistics --- 3087876720 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4113.681/4117.980/4122.053/2.807 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.088 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.088/0.088/0.088/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.133 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.133/0.133/0.133/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 272658496 2181.268 100.00% Conn: 1 Mbps: 2181.268 Peak Mbps: 2181.268 Avg Mbps: 2181.268 2000 285609736 2284.878 100.00% Conn: 1 Mbps: 2284.878 Peak Mbps: 2284.878 Avg Mbps: 2284.878 3001 285422504 2283.380 100.00% Conn: 1 Mbps: 2283.380 Peak Mbps: 2284.878 Avg Mbps: 2283.380 4003 288967616 2307.127 100.00% Conn: 1 Mbps: 2307.127 Peak Mbps: 2307.127 Avg Mbps: 2307.127 5003 287467968 2299.744 100.00% Conn: 1 Mbps: 2299.744 Peak Mbps: 2307.127 Avg Mbps: 2299.744 --- 169.254.1.12 tcpbench statistics --- 1707147640 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2181.268/2271.279/2307.127/45.888 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 253296628 2026.373 100.00% Conn: 1 Mbps: 2026.373 Peak Mbps: 2026.373 Avg Mbps: 2026.373 2000 270582340 2166.826 100.00% Conn: 1 Mbps: 2166.826 Peak Mbps: 2166.826 Avg Mbps: 2166.826 3000 271026548 2168.212 100.00% Conn: 1 Mbps: 2168.212 Peak Mbps: 2168.212 Avg Mbps: 2168.212 4001 271164540 2169.316 100.00% Conn: 1 Mbps: 2169.316 Peak Mbps: 2169.316 Avg Mbps: 2169.316 5002 273351304 2186.810 100.00% Conn: 1 Mbps: 2186.810 Peak Mbps: 2186.810 Avg Mbps: 2186.810 --- fc00:0:0:1::12 tcpbench statistics --- 1611587636 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2026.373/2143.508/2186.810/59.018 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.071 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.071/0.071/0.071/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 579329160 4634.633 100.00% Conn: 1 Mbps: 4634.633 Peak Mbps: 4634.633 Avg Mbps: 4634.633 2000 579583776 4641.312 100.00% Conn: 1 Mbps: 4641.312 Peak Mbps: 4641.312 Avg Mbps: 4641.312 3000 574472792 4600.383 100.00% Conn: 1 Mbps: 4600.383 Peak Mbps: 4641.312 Avg Mbps: 4600.383 4000 558608304 4468.866 100.00% Conn: 1 Mbps: 4468.866 Peak Mbps: 4641.312 Avg Mbps: 4468.866 5000 566819148 4539.092 100.00% Conn: 1 Mbps: 4539.092 Peak Mbps: 4641.312 Avg Mbps: 4539.092 --- 169.254.0.13 tcpbench statistics --- 3421888680 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4468.866/4576.857/4641.312/65.014 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 598334096 4786.673 100.00% Conn: 1 Mbps: 4786.673 Peak Mbps: 4786.673 Avg Mbps: 4786.673 2000 633505304 5073.116 100.00% Conn: 1 Mbps: 5073.116 Peak Mbps: 5073.116 Avg Mbps: 5073.116 3000 630879840 5047.039 100.00% Conn: 1 Mbps: 5047.039 Peak Mbps: 5073.116 Avg Mbps: 5047.039 4000 631115600 5048.925 100.00% Conn: 1 Mbps: 5048.925 Peak Mbps: 5073.116 Avg Mbps: 5048.925 5001 632559664 5060.477 100.00% Conn: 1 Mbps: 5060.477 Peak Mbps: 5073.116 Avg Mbps: 5060.477 --- fc00::13 tcpbench statistics --- 3755839376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4786.673/5003.246/5073.116/108.688 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 1001 274241600 2191.741 100.00% Conn: 1 Mbps: 2191.741 Peak Mbps: 2191.741 Avg Mbps: 2191.741 2000 284866912 2281.217 100.00% Conn: 1 Mbps: 2281.217 Peak Mbps: 2281.217 Avg Mbps: 2281.217 3001 286047368 2288.379 100.00% Conn: 1 Mbps: 2288.379 Peak Mbps: 2288.379 Avg Mbps: 2288.379 4002 285632568 2285.061 100.00% Conn: 1 Mbps: 2285.061 Peak Mbps: 2288.379 Avg Mbps: 2285.061 5001 287607864 2303.166 100.00% Conn: 1 Mbps: 2303.166 Peak Mbps: 2303.166 Avg Mbps: 2303.166 --- 169.254.1.11 tcpbench statistics --- 1703280600 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2191.741/2269.913/2303.166/39.787 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 253620260 2028.962 100.00% Conn: 1 Mbps: 2028.962 Peak Mbps: 2028.962 Avg Mbps: 2028.962 2001 267792112 2142.337 100.00% Conn: 1 Mbps: 2142.337 Peak Mbps: 2142.337 Avg Mbps: 2142.337 3001 270843340 2166.747 100.00% Conn: 1 Mbps: 2166.747 Peak Mbps: 2166.747 Avg Mbps: 2166.747 4003 271429372 2169.266 100.00% Conn: 1 Mbps: 2169.266 Peak Mbps: 2169.266 Avg Mbps: 2169.266 5003 273079616 2186.824 100.00% Conn: 1 Mbps: 2186.824 Peak Mbps: 2186.824 Avg Mbps: 2186.824 --- fc00:0:0:1::11 tcpbench statistics --- 1610859172 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2028.962/2138.827/2186.824/56.732 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.045 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.045/0.045/0.045/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.058 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.058/0.058/0.058/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 534232360 4273.859 100.00% Conn: 1 Mbps: 4273.859 Peak Mbps: 4273.859 Avg Mbps: 4273.859 2000 533776240 4274.484 100.00% Conn: 1 Mbps: 4274.484 Peak Mbps: 4274.484 Avg Mbps: 4274.484 3000 534579880 4276.639 100.00% Conn: 1 Mbps: 4276.639 Peak Mbps: 4276.639 Avg Mbps: 4276.639 4000 534314896 4274.519 100.00% Conn: 1 Mbps: 4274.519 Peak Mbps: 4276.639 Avg Mbps: 4274.519 5000 534576984 4280.897 100.00% Conn: 1 Mbps: 4280.897 Peak Mbps: 4280.897 Avg Mbps: 4280.897 --- 169.254.1.12 tcpbench statistics --- 3205973360 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4273.859/4276.080/4280.897/2.586 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 520813020 4166.504 100.00% Conn: 1 Mbps: 4166.504 Peak Mbps: 4166.504 Avg Mbps: 4166.504 2000 518943768 4155.706 100.00% Conn: 1 Mbps: 4155.706 Peak Mbps: 4166.504 Avg Mbps: 4155.706 3000 519143688 4153.150 100.00% Conn: 1 Mbps: 4153.150 Peak Mbps: 4166.504 Avg Mbps: 4153.150 4000 519587796 4156.702 100.00% Conn: 1 Mbps: 4156.702 Peak Mbps: 4166.504 Avg Mbps: 4156.702 5000 520271808 4162.174 100.00% Conn: 1 Mbps: 4162.174 Peak Mbps: 4166.504 Avg Mbps: 4162.174 --- fc00:0:0:1::12 tcpbench statistics --- 3118724868 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4153.150/4158.847/4166.504/4.830 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.046 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.046/0.046/0.046/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.062 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.062/0.062/0.062/0.000 ms ==== run-tcpbench-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 782262862 6258.103 100.00% Conn: 1 Mbps: 6258.103 Peak Mbps: 6258.103 Avg Mbps: 6258.103 2000 783221016 6272.040 100.00% Conn: 1 Mbps: 6272.040 Peak Mbps: 6272.040 Avg Mbps: 6272.040 3000 783450052 6267.600 100.00% Conn: 1 Mbps: 6267.600 Peak Mbps: 6272.040 Avg Mbps: 6267.600 4000 779507774 6236.062 100.00% Conn: 1 Mbps: 6236.062 Peak Mbps: 6272.040 Avg Mbps: 6236.062 5000 783875360 6271.003 100.00% Conn: 1 Mbps: 6271.003 Peak Mbps: 6272.040 Avg Mbps: 6271.003 --- 169.254.0.13 tcpbench statistics --- 4695374524 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6236.062/6260.962/6272.040/13.385 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 780674612 6245.397 100.00% Conn: 1 Mbps: 6245.397 Peak Mbps: 6245.397 Avg Mbps: 6245.397 2000 782709544 6267.944 100.00% Conn: 1 Mbps: 6267.944 Peak Mbps: 6267.944 Avg Mbps: 6267.944 3000 782840328 6262.723 100.00% Conn: 1 Mbps: 6262.723 Peak Mbps: 6267.944 Avg Mbps: 6262.723 4000 782219104 6257.753 100.00% Conn: 1 Mbps: 6257.753 Peak Mbps: 6267.944 Avg Mbps: 6257.753 5000 782873024 6262.984 100.00% Conn: 1 Mbps: 6262.984 Peak Mbps: 6267.944 Avg Mbps: 6262.984 --- fc00::13 tcpbench statistics --- 4694320420 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6245.397/6259.360/6267.944/7.690 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.050 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.050/0.050/0.050/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.058 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.058/0.058/0.058/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 273726504 2187.624 100.00% Conn: 1 Mbps: 2187.624 Peak Mbps: 2187.624 Avg Mbps: 2187.624 2002 283737808 2269.902 100.00% Conn: 1 Mbps: 2269.902 Peak Mbps: 2269.902 Avg Mbps: 2269.902 3002 283942976 2271.544 100.00% Conn: 1 Mbps: 2271.544 Peak Mbps: 2271.544 Avg Mbps: 2271.544 4003 281783896 2254.271 100.00% Conn: 1 Mbps: 2254.271 Peak Mbps: 2271.544 Avg Mbps: 2254.271 5003 284686744 2277.494 100.00% Conn: 1 Mbps: 2277.494 Peak Mbps: 2277.494 Avg Mbps: 2277.494 --- 169.254.1.11 tcpbench statistics --- 1690308192 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2187.624/2252.167/2277.494/33.171 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 541221528 4329.772 100.00% Conn: 1 Mbps: 4329.772 Peak Mbps: 4329.772 Avg Mbps: 4329.772 2000 606064704 4848.518 100.00% Conn: 1 Mbps: 4848.518 Peak Mbps: 4848.518 Avg Mbps: 4848.518 3000 608554096 4873.306 100.00% Conn: 1 Mbps: 4873.306 Peak Mbps: 4873.306 Avg Mbps: 4873.306 4000 597896376 4783.171 100.00% Conn: 1 Mbps: 4783.171 Peak Mbps: 4873.306 Avg Mbps: 4783.171 5001 608158664 4865.269 100.00% Conn: 1 Mbps: 4865.269 Peak Mbps: 4873.306 Avg Mbps: 4865.269 --- fc00:0:0:1::11 tcpbench statistics --- 3564725816 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4329.772/4740.007/4873.306/207.552 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.060 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.060/0.060/0.060/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.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 789180142 6313.441 100.00% Conn: 1 Mbps: 6313.441 Peak Mbps: 6313.441 Avg Mbps: 6313.441 2000 790614856 6331.250 100.00% Conn: 1 Mbps: 6331.250 Peak Mbps: 6331.250 Avg Mbps: 6331.250 3000 789044488 6312.356 100.00% Conn: 1 Mbps: 6312.356 Peak Mbps: 6331.250 Avg Mbps: 6312.356 4000 788324736 6306.598 100.00% Conn: 1 Mbps: 6306.598 Peak Mbps: 6331.250 Avg Mbps: 6306.598 5000 788619180 6308.953 100.00% Conn: 1 Mbps: 6308.953 Peak Mbps: 6331.250 Avg Mbps: 6308.953 --- 169.254.1.12 tcpbench statistics --- 4734304434 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6306.598/6314.520/6331.250/8.712 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 763589188 6108.714 100.00% Conn: 1 Mbps: 6108.714 Peak Mbps: 6108.714 Avg Mbps: 6108.714 2000 768682960 6155.619 100.00% Conn: 1 Mbps: 6155.619 Peak Mbps: 6155.619 Avg Mbps: 6155.619 3000 764595960 6116.768 100.00% Conn: 1 Mbps: 6116.768 Peak Mbps: 6155.619 Avg Mbps: 6116.768 4000 766982768 6135.862 100.00% Conn: 1 Mbps: 6135.862 Peak Mbps: 6155.619 Avg Mbps: 6135.862 5000 766557720 6132.462 100.00% Conn: 1 Mbps: 6132.462 Peak Mbps: 6155.619 Avg Mbps: 6132.462 --- fc00:0:0:1::12 tcpbench statistics --- 4597914500 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6108.714/6129.885/6155.619/16.278 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.042 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.042/0.042/0.042/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.047 ms --- fc00::13 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-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 796522954 6372.184 100.00% Conn: 1 Mbps: 6372.184 Peak Mbps: 6372.184 Avg Mbps: 6372.184 2000 797190772 6383.910 100.00% Conn: 1 Mbps: 6383.910 Peak Mbps: 6383.910 Avg Mbps: 6383.910 3000 798041388 6384.331 100.00% Conn: 1 Mbps: 6384.331 Peak Mbps: 6384.331 Avg Mbps: 6384.331 4000 797550648 6380.405 100.00% Conn: 1 Mbps: 6380.405 Peak Mbps: 6384.331 Avg Mbps: 6380.405 5000 796765464 6374.124 100.00% Conn: 1 Mbps: 6374.124 Peak Mbps: 6384.331 Avg Mbps: 6374.124 --- 169.254.0.13 tcpbench statistics --- 4781855210 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6372.184/6378.991/6384.331/4.995 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 785723460 6285.788 100.00% Conn: 1 Mbps: 6285.788 Peak Mbps: 6285.788 Avg Mbps: 6285.788 2000 800430776 6409.856 100.00% Conn: 1 Mbps: 6409.856 Peak Mbps: 6409.856 Avg Mbps: 6409.856 3000 800136512 6401.092 100.00% Conn: 1 Mbps: 6401.092 Peak Mbps: 6409.856 Avg Mbps: 6401.092 4000 800921216 6407.370 100.00% Conn: 1 Mbps: 6407.370 Peak Mbps: 6409.856 Avg Mbps: 6407.370 5000 799580680 6396.645 100.00% Conn: 1 Mbps: 6396.645 Peak Mbps: 6409.856 Avg Mbps: 6396.645 --- fc00::13 tcpbench statistics --- 4786307932 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6285.788/6380.150/6409.856/47.409 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 1m53.08s