START sys/net/pair 2025-03-30T04:44:58Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.038 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.038/0.038/0.038/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.044 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 519377956 4155.024 100.00% Conn: 1 Mbps: 4155.024 Peak Mbps: 4155.024 Avg Mbps: 4155.024 2000 518010900 4148.235 100.00% Conn: 1 Mbps: 4148.235 Peak Mbps: 4155.024 Avg Mbps: 4148.235 3000 518416248 4147.330 100.00% Conn: 1 Mbps: 4147.330 Peak Mbps: 4155.024 Avg Mbps: 4147.330 4000 518265236 4146.122 100.00% Conn: 1 Mbps: 4146.122 Peak Mbps: 4155.024 Avg Mbps: 4146.122 5000 518241392 4145.931 100.00% Conn: 1 Mbps: 4145.931 Peak Mbps: 4155.024 Avg Mbps: 4145.931 --- 169.254.1.11 tcpbench statistics --- 3110259048 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4145.931/4148.528/4155.024/3.354 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 516089016 4128.712 100.00% Conn: 1 Mbps: 4128.712 Peak Mbps: 4128.712 Avg Mbps: 4128.712 2000 514408280 4119.386 100.00% Conn: 1 Mbps: 4119.386 Peak Mbps: 4128.712 Avg Mbps: 4119.386 3000 514550984 4116.408 100.00% Conn: 1 Mbps: 4116.408 Peak Mbps: 4128.712 Avg Mbps: 4116.408 4000 515296216 4122.370 100.00% Conn: 1 Mbps: 4122.370 Peak Mbps: 4128.712 Avg Mbps: 4122.370 5000 515066304 4120.530 100.00% Conn: 1 Mbps: 4120.530 Peak Mbps: 4128.712 Avg Mbps: 4120.530 --- fc00:0:0:1::11 tcpbench statistics --- 3090492960 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4116.408/4121.481/4128.712/4.101 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.141 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.141/0.141/0.141/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 277166568 2217.333 100.00% Conn: 1 Mbps: 2217.333 Peak Mbps: 2217.333 Avg Mbps: 2217.333 2000 287772560 2304.485 100.00% Conn: 1 Mbps: 2304.485 Peak Mbps: 2304.485 Avg Mbps: 2304.485 3001 286925808 2295.406 100.00% Conn: 1 Mbps: 2295.406 Peak Mbps: 2304.485 Avg Mbps: 2295.406 4001 288600368 2311.114 100.00% Conn: 1 Mbps: 2311.114 Peak Mbps: 2311.114 Avg Mbps: 2311.114 5001 287735136 2301.881 100.00% Conn: 1 Mbps: 2301.881 Peak Mbps: 2311.114 Avg Mbps: 2301.881 --- 169.254.1.12 tcpbench statistics --- 1718694176 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2217.333/2286.044/2311.114/34.723 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 257376648 2059.013 100.00% Conn: 1 Mbps: 2059.013 Peak Mbps: 2059.013 Avg Mbps: 2059.013 2000 270474928 2163.799 100.00% Conn: 1 Mbps: 2163.799 Peak Mbps: 2163.799 Avg Mbps: 2163.799 3001 275649804 2205.198 100.00% Conn: 1 Mbps: 2205.198 Peak Mbps: 2205.198 Avg Mbps: 2205.198 4001 270236752 2161.894 100.00% Conn: 1 Mbps: 2161.894 Peak Mbps: 2205.198 Avg Mbps: 2161.894 5003 275587000 2202.494 100.00% Conn: 1 Mbps: 2202.494 Peak Mbps: 2205.198 Avg Mbps: 2202.494 --- fc00:0:0:1::12 tcpbench statistics --- 1626281288 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2059.013/2158.480/2205.198/53.016 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.073 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.073/0.073/0.073/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 563011636 4504.093 100.00% Conn: 1 Mbps: 4504.093 Peak Mbps: 4504.093 Avg Mbps: 4504.093 2000 570292704 4566.909 100.00% Conn: 1 Mbps: 4566.909 Peak Mbps: 4566.909 Avg Mbps: 4566.909 3000 557138764 4457.110 100.00% Conn: 1 Mbps: 4457.110 Peak Mbps: 4566.909 Avg Mbps: 4457.110 4000 561756412 4494.051 100.00% Conn: 1 Mbps: 4494.051 Peak Mbps: 4566.909 Avg Mbps: 4494.051 5000 548244672 4385.957 100.00% Conn: 1 Mbps: 4385.957 Peak Mbps: 4566.909 Avg Mbps: 4385.957 --- 169.254.0.13 tcpbench statistics --- 3313153772 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4385.957/4481.624/4566.909/59.474 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 601035984 4808.288 100.00% Conn: 1 Mbps: 4808.288 Peak Mbps: 4808.288 Avg Mbps: 4808.288 2000 638601192 5108.810 100.00% Conn: 1 Mbps: 5108.810 Peak Mbps: 5108.810 Avg Mbps: 5108.810 3001 634052472 5072.420 100.00% Conn: 1 Mbps: 5072.420 Peak Mbps: 5108.810 Avg Mbps: 5072.420 4001 641177920 5129.423 100.00% Conn: 1 Mbps: 5129.423 Peak Mbps: 5129.423 Avg Mbps: 5129.423 5001 637372744 5104.086 100.00% Conn: 1 Mbps: 5104.086 Peak Mbps: 5129.423 Avg Mbps: 5104.086 --- fc00::13 tcpbench statistics --- 3788566040 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4808.288/5044.605/5129.423/119.561 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.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-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 274321408 2194.571 100.00% Conn: 1 Mbps: 2194.571 Peak Mbps: 2194.571 Avg Mbps: 2194.571 2001 285210088 2281.681 100.00% Conn: 1 Mbps: 2281.681 Peak Mbps: 2281.681 Avg Mbps: 2281.681 3002 285968352 2285.461 100.00% Conn: 1 Mbps: 2285.461 Peak Mbps: 2285.461 Avg Mbps: 2285.461 4004 286242184 2287.650 100.00% Conn: 1 Mbps: 2287.650 Peak Mbps: 2287.650 Avg Mbps: 2287.650 5004 286961616 2297.991 100.00% Conn: 1 Mbps: 2297.991 Peak Mbps: 2297.991 Avg Mbps: 2297.991 --- 169.254.1.11 tcpbench statistics --- 1705836008 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2194.571/2269.471/2297.991/37.838 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 1002 256404364 2047.141 100.00% Conn: 1 Mbps: 2047.141 Peak Mbps: 2047.141 Avg Mbps: 2047.141 2003 268745876 2149.967 100.00% Conn: 1 Mbps: 2149.967 Peak Mbps: 2149.967 Avg Mbps: 2149.967 3003 271218196 2169.746 100.00% Conn: 1 Mbps: 2169.746 Peak Mbps: 2169.746 Avg Mbps: 2169.746 4004 273329260 2186.634 100.00% Conn: 1 Mbps: 2186.634 Peak Mbps: 2186.634 Avg Mbps: 2186.634 5003 271510144 2176.434 100.00% Conn: 1 Mbps: 2176.434 Peak Mbps: 2186.634 Avg Mbps: 2176.434 --- fc00:0:0:1::11 tcpbench statistics --- 1613215028 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2047.141/2145.984/2186.634/50.853 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.059 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.059/0.059/0.059/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.047 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.047/0.047/0.047/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 530288008 4242.304 100.00% Conn: 1 Mbps: 4242.304 Peak Mbps: 4242.304 Avg Mbps: 4242.304 2000 531349392 4255.050 100.00% Conn: 1 Mbps: 4255.050 Peak Mbps: 4255.050 Avg Mbps: 4255.050 3000 531530392 4256.500 100.00% Conn: 1 Mbps: 4256.500 Peak Mbps: 4256.500 Avg Mbps: 4256.500 4000 531365320 4250.923 100.00% Conn: 1 Mbps: 4250.923 Peak Mbps: 4256.500 Avg Mbps: 4250.923 5000 530956984 4247.656 100.00% Conn: 1 Mbps: 4247.656 Peak Mbps: 4256.500 Avg Mbps: 4247.656 --- 169.254.1.12 tcpbench statistics --- 3186445632 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4242.304/4250.486/4256.500/5.141 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 535694208 4285.554 100.00% Conn: 1 Mbps: 4285.554 Peak Mbps: 4285.554 Avg Mbps: 4285.554 2000 536198292 4293.880 100.00% Conn: 1 Mbps: 4293.880 Peak Mbps: 4293.880 Avg Mbps: 4293.880 3000 536508168 4292.065 100.00% Conn: 1 Mbps: 4292.065 Peak Mbps: 4293.880 Avg Mbps: 4292.065 4000 534940224 4279.522 100.00% Conn: 1 Mbps: 4279.522 Peak Mbps: 4293.880 Avg Mbps: 4279.522 5000 535131576 4281.053 100.00% Conn: 1 Mbps: 4281.053 Peak Mbps: 4293.880 Avg Mbps: 4281.053 --- fc00:0:0:1::12 tcpbench statistics --- 3212295996 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4279.522/4286.415/4293.880/5.739 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.057 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.057/0.057/0.057/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 791849542 6334.796 100.00% Conn: 1 Mbps: 6334.796 Peak Mbps: 6334.796 Avg Mbps: 6334.796 2000 793068556 6350.899 100.00% Conn: 1 Mbps: 6350.899 Peak Mbps: 6350.899 Avg Mbps: 6350.899 3000 792806828 6342.455 100.00% Conn: 1 Mbps: 6342.455 Peak Mbps: 6350.899 Avg Mbps: 6342.455 4000 793133988 6345.072 100.00% Conn: 1 Mbps: 6345.072 Peak Mbps: 6350.899 Avg Mbps: 6345.072 5000 793657444 6349.260 100.00% Conn: 1 Mbps: 6349.260 Peak Mbps: 6350.899 Avg Mbps: 6349.260 --- 169.254.0.13 tcpbench statistics --- 4757650346 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6334.796/6344.496/6350.899/5.697 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 774937508 6199.500 100.00% Conn: 1 Mbps: 6199.500 Peak Mbps: 6199.500 Avg Mbps: 6199.500 2000 777707056 6227.884 100.00% Conn: 1 Mbps: 6227.884 Peak Mbps: 6227.884 Avg Mbps: 6227.884 3000 780617000 6244.936 100.00% Conn: 1 Mbps: 6244.936 Peak Mbps: 6244.936 Avg Mbps: 6244.936 4000 781172832 6249.383 100.00% Conn: 1 Mbps: 6249.383 Peak Mbps: 6249.383 Avg Mbps: 6249.383 5000 780813176 6246.505 100.00% Conn: 1 Mbps: 6246.505 Peak Mbps: 6249.383 Avg Mbps: 6246.505 --- fc00::13 tcpbench statistics --- 4676126140 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6199.500/6233.642/6249.383/18.653 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.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 274139296 2190.923 100.00% Conn: 1 Mbps: 2190.923 Peak Mbps: 2190.923 Avg Mbps: 2190.923 2001 281637824 2253.103 100.00% Conn: 1 Mbps: 2253.103 Peak Mbps: 2253.103 Avg Mbps: 2253.103 3003 283610944 2266.621 100.00% Conn: 1 Mbps: 2266.621 Peak Mbps: 2266.621 Avg Mbps: 2266.621 4003 286753112 2294.025 100.00% Conn: 1 Mbps: 2294.025 Peak Mbps: 2294.025 Avg Mbps: 2294.025 5004 284293840 2272.079 100.00% Conn: 1 Mbps: 2272.079 Peak Mbps: 2294.025 Avg Mbps: 2272.079 --- 169.254.1.11 tcpbench statistics --- 1695111360 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2190.923/2255.350/2294.025/34.809 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 541400776 4331.206 100.00% Conn: 1 Mbps: 4331.206 Peak Mbps: 4331.206 Avg Mbps: 4331.206 2000 605234392 4841.875 100.00% Conn: 1 Mbps: 4841.875 Peak Mbps: 4841.875 Avg Mbps: 4841.875 3001 595994280 4767.954 100.00% Conn: 1 Mbps: 4767.954 Peak Mbps: 4841.875 Avg Mbps: 4767.954 4001 586602560 4697.518 100.00% Conn: 1 Mbps: 4697.518 Peak Mbps: 4841.875 Avg Mbps: 4697.518 5001 609995080 4879.961 100.00% Conn: 1 Mbps: 4879.961 Peak Mbps: 4879.961 Avg Mbps: 4879.961 --- fc00:0:0:1::11 tcpbench statistics --- 3545715040 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4331.206/4703.703/4879.961/196.509 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.062 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.062/0.062/0.062/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.047 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.047/0.047/0.047/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 788690618 6309.525 100.00% Conn: 1 Mbps: 6309.525 Peak Mbps: 6309.525 Avg Mbps: 6309.525 2000 790713004 6332.036 100.00% Conn: 1 Mbps: 6332.036 Peak Mbps: 6332.036 Avg Mbps: 6332.036 3000 791694484 6333.556 100.00% Conn: 1 Mbps: 6333.556 Peak Mbps: 6333.556 Avg Mbps: 6333.556 4000 790942016 6327.536 100.00% Conn: 1 Mbps: 6327.536 Peak Mbps: 6333.556 Avg Mbps: 6327.536 5000 791661768 6333.294 100.00% Conn: 1 Mbps: 6333.294 Peak Mbps: 6333.556 Avg Mbps: 6333.294 --- 169.254.1.12 tcpbench statistics --- 4740325394 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6309.525/6327.189/6333.556/9.093 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 772695348 6181.563 100.00% Conn: 1 Mbps: 6181.563 Peak Mbps: 6181.563 Avg Mbps: 6181.563 2000 773914320 6197.512 100.00% Conn: 1 Mbps: 6197.512 Peak Mbps: 6197.512 Avg Mbps: 6197.512 3000 772443000 6179.544 100.00% Conn: 1 Mbps: 6179.544 Peak Mbps: 6197.512 Avg Mbps: 6179.544 4000 773325792 6186.606 100.00% Conn: 1 Mbps: 6186.606 Peak Mbps: 6197.512 Avg Mbps: 6186.606 5000 773587360 6188.699 100.00% Conn: 1 Mbps: 6188.699 Peak Mbps: 6197.512 Avg Mbps: 6188.699 --- fc00:0:0:1::12 tcpbench statistics --- 4639651268 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6179.544/6186.785/6197.512/6.300 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.053 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.053/0.053/0.053/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.045 ms --- fc00::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-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 789635846 6317.087 100.00% Conn: 1 Mbps: 6317.087 Peak Mbps: 6317.087 Avg Mbps: 6317.087 2000 790287696 6328.630 100.00% Conn: 1 Mbps: 6328.630 Peak Mbps: 6328.630 Avg Mbps: 6328.630 3000 787277824 6298.223 100.00% Conn: 1 Mbps: 6298.223 Peak Mbps: 6328.630 Avg Mbps: 6298.223 4000 795293244 6362.346 100.00% Conn: 1 Mbps: 6362.346 Peak Mbps: 6362.346 Avg Mbps: 6362.346 5000 795358676 6362.869 100.00% Conn: 1 Mbps: 6362.869 Peak Mbps: 6362.869 Avg Mbps: 6362.869 --- 169.254.0.13 tcpbench statistics --- 4750790978 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6298.223/6333.831/6362.869/25.423 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 787895748 6303.166 100.00% Conn: 1 Mbps: 6303.166 Peak Mbps: 6303.166 Avg Mbps: 6303.166 2000 783494248 6274.228 100.00% Conn: 1 Mbps: 6274.228 Peak Mbps: 6303.166 Avg Mbps: 6274.228 3000 784998264 6279.986 100.00% Conn: 1 Mbps: 6279.986 Peak Mbps: 6303.166 Avg Mbps: 6279.986 4000 786109928 6288.879 100.00% Conn: 1 Mbps: 6288.879 Peak Mbps: 6303.166 Avg Mbps: 6288.879 5000 786240712 6289.926 100.00% Conn: 1 Mbps: 6289.926 Peak Mbps: 6303.166 Avg Mbps: 6289.926 --- fc00::13 tcpbench statistics --- 4717235636 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6274.228/6287.237/6303.166/9.854 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.90s