START sys/net/pair 2025-03-03T15:41:55Z ==== 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.052 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.052/0.052/0.052/0.000 ms ==== run-ping6-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 518503676 4148.029 100.00% Conn: 1 Mbps: 4148.029 Peak Mbps: 4148.029 Avg Mbps: 4148.029 2000 517589656 4144.862 100.00% Conn: 1 Mbps: 4144.862 Peak Mbps: 4148.029 Avg Mbps: 4144.862 3000 518161912 4145.295 100.00% Conn: 1 Mbps: 4145.295 Peak Mbps: 4148.029 Avg Mbps: 4145.295 4000 518376508 4151.163 100.00% Conn: 1 Mbps: 4151.163 Peak Mbps: 4151.163 Avg Mbps: 4151.163 5000 518455988 4147.648 100.00% Conn: 1 Mbps: 4147.648 Peak Mbps: 4151.163 Avg Mbps: 4147.648 --- 169.254.1.11 tcpbench statistics --- 3109027108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4144.862/4147.400/4151.163/2.258 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 514876032 4119.008 100.00% Conn: 1 Mbps: 4119.008 Peak Mbps: 4119.008 Avg Mbps: 4119.008 2000 512997096 4108.085 100.00% Conn: 1 Mbps: 4108.085 Peak Mbps: 4119.008 Avg Mbps: 4108.085 3000 513900888 4111.207 100.00% Conn: 1 Mbps: 4111.207 Peak Mbps: 4119.008 Avg Mbps: 4111.207 4000 513774040 4110.192 100.00% Conn: 1 Mbps: 4110.192 Peak Mbps: 4119.008 Avg Mbps: 4110.192 5000 513409352 4107.275 100.00% Conn: 1 Mbps: 4107.275 Peak Mbps: 4119.008 Avg Mbps: 4107.275 --- fc00:0:0:1::11 tcpbench statistics --- 3082739376 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4107.275/4111.153/4119.008/4.173 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.061 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.061/0.061/0.061/0.000 ms ==== run-ping6-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.180 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.180/0.180/0.180/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 274350592 2194.805 100.00% Conn: 1 Mbps: 2194.805 Peak Mbps: 2194.805 Avg Mbps: 2194.805 2000 283407008 2267.256 100.00% Conn: 1 Mbps: 2267.256 Peak Mbps: 2267.256 Avg Mbps: 2267.256 3001 285989064 2287.913 100.00% Conn: 1 Mbps: 2287.913 Peak Mbps: 2287.913 Avg Mbps: 2287.913 4001 288334496 2306.676 100.00% Conn: 1 Mbps: 2306.676 Peak Mbps: 2306.676 Avg Mbps: 2306.676 5001 288576912 2310.926 100.00% Conn: 1 Mbps: 2310.926 Peak Mbps: 2310.926 Avg Mbps: 2310.926 --- 169.254.1.12 tcpbench statistics --- 1708392264 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2194.805/2273.515/2310.926/42.287 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1001 256253972 2047.984 100.00% Conn: 1 Mbps: 2047.984 Peak Mbps: 2047.984 Avg Mbps: 2047.984 2002 271230440 2167.676 100.00% Conn: 1 Mbps: 2167.676 Peak Mbps: 2167.676 Avg Mbps: 2167.676 3002 274105032 2192.840 100.00% Conn: 1 Mbps: 2192.840 Peak Mbps: 2192.840 Avg Mbps: 2192.840 4004 274678692 2195.234 100.00% Conn: 1 Mbps: 2195.234 Peak Mbps: 2195.234 Avg Mbps: 2195.234 5003 276138336 2211.318 100.00% Conn: 1 Mbps: 2211.318 Peak Mbps: 2211.318 Avg Mbps: 2211.318 --- fc00:0:0:1::12 tcpbench statistics --- 1626094712 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2047.984/2163.010/2211.318/59.186 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.076 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.076/0.076/0.076/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.073 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.073/0.073/0.073/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 552170424 4417.363 100.00% Conn: 1 Mbps: 4417.363 Peak Mbps: 4417.363 Avg Mbps: 4417.363 2000 573876412 4595.607 100.00% Conn: 1 Mbps: 4595.607 Peak Mbps: 4595.607 Avg Mbps: 4595.607 3000 586171828 4689.375 100.00% Conn: 1 Mbps: 4689.375 Peak Mbps: 4689.375 Avg Mbps: 4689.375 4000 581848256 4654.786 100.00% Conn: 1 Mbps: 4654.786 Peak Mbps: 4689.375 Avg Mbps: 4654.786 5000 576308920 4610.471 100.00% Conn: 1 Mbps: 4610.471 Peak Mbps: 4689.375 Avg Mbps: 4610.471 --- 169.254.0.13 tcpbench statistics --- 3442663352 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4417.363/4593.520/4689.375/94.090 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 600603064 4804.825 100.00% Conn: 1 Mbps: 4804.825 Peak Mbps: 4804.825 Avg Mbps: 4804.825 2000 637399512 5104.300 100.00% Conn: 1 Mbps: 5104.300 Peak Mbps: 5104.300 Avg Mbps: 5104.300 3000 638212064 5110.807 100.00% Conn: 1 Mbps: 5110.807 Peak Mbps: 5110.807 Avg Mbps: 5110.807 4000 634870096 5078.961 100.00% Conn: 1 Mbps: 5078.961 Peak Mbps: 5110.807 Avg Mbps: 5078.961 5000 639196440 5118.690 100.00% Conn: 1 Mbps: 5118.690 Peak Mbps: 5118.690 Avg Mbps: 5118.690 --- fc00::13 tcpbench statistics --- 3786850720 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4804.825/5043.517/5118.690/120.087 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.048 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.048/0.048/0.048/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 273369352 2186.955 100.00% Conn: 1 Mbps: 2186.955 Peak Mbps: 2186.955 Avg Mbps: 2186.955 2001 284846136 2278.769 100.00% Conn: 1 Mbps: 2278.769 Peak Mbps: 2278.769 Avg Mbps: 2278.769 3001 286513632 2292.109 100.00% Conn: 1 Mbps: 2292.109 Peak Mbps: 2292.109 Avg Mbps: 2292.109 4002 285722512 2283.497 100.00% Conn: 1 Mbps: 2283.497 Peak Mbps: 2292.109 Avg Mbps: 2283.497 5005 288926992 2306.802 100.00% Conn: 1 Mbps: 2306.802 Peak Mbps: 2306.802 Avg Mbps: 2306.802 --- 169.254.1.11 tcpbench statistics --- 1705106704 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2186.955/2269.626/2306.802/42.422 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 256668416 2053.347 100.00% Conn: 1 Mbps: 2053.347 Peak Mbps: 2053.347 Avg Mbps: 2053.347 2000 271482164 2174.031 100.00% Conn: 1 Mbps: 2174.031 Peak Mbps: 2174.031 Avg Mbps: 2174.031 3000 269514888 2158.277 100.00% Conn: 1 Mbps: 2158.277 Peak Mbps: 2174.031 Avg Mbps: 2158.277 4000 272445668 2179.565 100.00% Conn: 1 Mbps: 2179.565 Peak Mbps: 2179.565 Avg Mbps: 2179.565 5001 274823500 2196.392 100.00% Conn: 1 Mbps: 2196.392 Peak Mbps: 2196.392 Avg Mbps: 2196.392 --- fc00:0:0:1::11 tcpbench statistics --- 1617779296 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2053.347/2152.323/2196.392/50.965 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 517972768 4143.782 100.00% Conn: 1 Mbps: 4143.782 Peak Mbps: 4143.782 Avg Mbps: 4143.782 2000 518932792 4155.618 100.00% Conn: 1 Mbps: 4155.618 Peak Mbps: 4155.618 Avg Mbps: 4155.618 3000 518439024 4147.512 100.00% Conn: 1 Mbps: 4147.512 Peak Mbps: 4155.618 Avg Mbps: 4147.512 4000 518370968 4146.968 100.00% Conn: 1 Mbps: 4146.968 Peak Mbps: 4155.618 Avg Mbps: 4146.968 5000 517064872 4136.519 100.00% Conn: 1 Mbps: 4136.519 Peak Mbps: 4155.618 Avg Mbps: 4136.519 --- 169.254.1.12 tcpbench statistics --- 3109970960 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4136.519/4146.080/4155.618/6.173 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 526327956 4210.624 100.00% Conn: 1 Mbps: 4210.624 Peak Mbps: 4210.624 Avg Mbps: 4210.624 2000 526432200 4215.673 100.00% Conn: 1 Mbps: 4215.673 Peak Mbps: 4215.673 Avg Mbps: 4215.673 3000 526927716 4215.422 100.00% Conn: 1 Mbps: 4215.422 Peak Mbps: 4215.673 Avg Mbps: 4215.422 4000 527578884 4220.631 100.00% Conn: 1 Mbps: 4220.631 Peak Mbps: 4220.631 Avg Mbps: 4220.631 5000 527157624 4217.261 100.00% Conn: 1 Mbps: 4217.261 Peak Mbps: 4220.631 Avg Mbps: 4217.261 --- fc00:0:0:1::12 tcpbench statistics --- 3161153604 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4210.624/4215.922/4220.631/3.236 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.067 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.067/0.067/0.067/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.053 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.053/0.053/0.053/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 784486302 6275.890 100.00% Conn: 1 Mbps: 6275.890 Peak Mbps: 6275.890 Avg Mbps: 6275.890 2000 786983380 6302.169 100.00% Conn: 1 Mbps: 6302.169 Peak Mbps: 6302.169 Avg Mbps: 6302.169 3000 787179676 6297.437 100.00% Conn: 1 Mbps: 6297.437 Peak Mbps: 6302.169 Avg Mbps: 6297.437 4000 787375972 6299.008 100.00% Conn: 1 Mbps: 6299.008 Peak Mbps: 6302.169 Avg Mbps: 6299.008 5000 787375972 6299.008 100.00% Conn: 1 Mbps: 6299.008 Peak Mbps: 6302.169 Avg Mbps: 6299.008 --- 169.254.0.13 tcpbench statistics --- 4720090238 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6275.890/6294.703/6302.169/9.531 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 767544468 6140.356 100.00% Conn: 1 Mbps: 6140.356 Peak Mbps: 6140.356 Avg Mbps: 6140.356 2000 768715656 6155.881 100.00% Conn: 1 Mbps: 6155.881 Peak Mbps: 6155.881 Avg Mbps: 6155.881 3000 767571296 6140.570 100.00% Conn: 1 Mbps: 6140.570 Peak Mbps: 6155.881 Avg Mbps: 6140.570 4000 768192520 6145.540 100.00% Conn: 1 Mbps: 6145.540 Peak Mbps: 6155.881 Avg Mbps: 6145.540 5000 769206096 6153.649 100.00% Conn: 1 Mbps: 6153.649 Peak Mbps: 6155.881 Avg Mbps: 6153.649 --- fc00::13 tcpbench statistics --- 4609814908 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6140.356/6147.199/6155.881/6.488 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.061 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.061/0.061/0.061/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.061 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.061/0.061/0.061/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 275409808 2203.278 100.00% Conn: 1 Mbps: 2203.278 Peak Mbps: 2203.278 Avg Mbps: 2203.278 2000 282467360 2259.739 100.00% Conn: 1 Mbps: 2259.739 Peak Mbps: 2259.739 Avg Mbps: 2259.739 3002 281209432 2245.185 100.00% Conn: 1 Mbps: 2245.185 Peak Mbps: 2259.739 Avg Mbps: 2245.185 4004 282243024 2255.689 100.00% Conn: 1 Mbps: 2255.689 Peak Mbps: 2259.739 Avg Mbps: 2255.689 5003 282253160 2260.286 100.00% Conn: 1 Mbps: 2260.286 Peak Mbps: 2260.286 Avg Mbps: 2260.286 --- 169.254.1.11 tcpbench statistics --- 1687107120 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2203.278/2244.835/2260.286/21.474 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 538640672 4309.125 100.00% Conn: 1 Mbps: 4309.125 Peak Mbps: 4309.125 Avg Mbps: 4309.125 2001 614406616 4915.253 100.00% Conn: 1 Mbps: 4915.253 Peak Mbps: 4915.253 Avg Mbps: 4915.253 3001 608464752 4867.718 100.00% Conn: 1 Mbps: 4867.718 Peak Mbps: 4915.253 Avg Mbps: 4867.718 4001 608708336 4869.667 100.00% Conn: 1 Mbps: 4869.667 Peak Mbps: 4915.253 Avg Mbps: 4869.667 5001 603439864 4827.519 100.00% Conn: 1 Mbps: 4827.519 Peak Mbps: 4915.253 Avg Mbps: 4827.519 --- fc00:0:0:1::11 tcpbench statistics --- 3573531632 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4309.125/4757.856/4915.253/226.078 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.048 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.048/0.048/0.048/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 785218294 6281.746 100.00% Conn: 1 Mbps: 6281.746 Peak Mbps: 6281.746 Avg Mbps: 6281.746 2000 785249432 6288.284 100.00% Conn: 1 Mbps: 6288.284 Peak Mbps: 6288.284 Avg Mbps: 6288.284 3000 783908076 6271.265 100.00% Conn: 1 Mbps: 6271.265 Peak Mbps: 6288.284 Avg Mbps: 6271.265 4000 784137088 6273.097 100.00% Conn: 1 Mbps: 6273.097 Peak Mbps: 6288.284 Avg Mbps: 6273.097 5000 785249432 6281.995 100.00% Conn: 1 Mbps: 6281.995 Peak Mbps: 6288.284 Avg Mbps: 6281.995 --- 169.254.1.12 tcpbench statistics --- 4708128422 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6271.265/6279.277/6288.284/6.277 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 766249196 6129.994 100.00% Conn: 1 Mbps: 6129.994 Peak Mbps: 6129.994 Avg Mbps: 6129.994 2000 767930952 6149.597 100.00% Conn: 1 Mbps: 6149.597 Peak Mbps: 6149.597 Avg Mbps: 6149.597 3000 768682960 6149.464 100.00% Conn: 1 Mbps: 6149.464 Peak Mbps: 6149.597 Avg Mbps: 6149.464 4000 768388696 6147.110 100.00% Conn: 1 Mbps: 6147.110 Peak Mbps: 6149.597 Avg Mbps: 6147.110 5000 768715656 6149.725 100.00% Conn: 1 Mbps: 6149.725 Peak Mbps: 6149.725 Avg Mbps: 6149.725 --- fc00:0:0:1::12 tcpbench statistics --- 4609369732 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6129.994/6145.178/6149.725/7.653 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.052 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.052/0.052/0.052/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 776685342 6213.483 100.00% Conn: 1 Mbps: 6213.483 Peak Mbps: 6213.483 Avg Mbps: 6213.483 2000 778248208 6232.218 100.00% Conn: 1 Mbps: 6232.218 Peak Mbps: 6232.218 Avg Mbps: 6232.218 3000 776808704 6214.470 100.00% Conn: 1 Mbps: 6214.470 Peak Mbps: 6232.218 Avg Mbps: 6214.470 4000 776383396 6211.067 100.00% Conn: 1 Mbps: 6211.067 Peak Mbps: 6232.218 Avg Mbps: 6211.067 5000 776874136 6214.993 100.00% Conn: 1 Mbps: 6214.993 Peak Mbps: 6232.218 Avg Mbps: 6214.993 --- 169.254.0.13 tcpbench statistics --- 4661939354 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6211.067/6217.246/6232.218/7.606 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 782573212 6260.586 100.00% Conn: 1 Mbps: 6260.586 Peak Mbps: 6260.586 Avg Mbps: 6260.586 2000 785063656 6286.796 100.00% Conn: 1 Mbps: 6286.796 Peak Mbps: 6286.796 Avg Mbps: 6286.796 3000 784671304 6277.370 100.00% Conn: 1 Mbps: 6277.370 Peak Mbps: 6286.796 Avg Mbps: 6277.370 4000 784344344 6274.755 100.00% Conn: 1 Mbps: 6274.755 Peak Mbps: 6286.796 Avg Mbps: 6274.755 5000 784213560 6273.708 100.00% Conn: 1 Mbps: 6273.708 Peak Mbps: 6286.796 Avg Mbps: 6273.708 --- fc00::13 tcpbench statistics --- 4705864340 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6260.586/6274.643/6286.796/8.410 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.88s