START sys/net/pair 2025-03-07T04:56:51Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.037 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.037/0.037/0.037/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.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 520896024 4167.168 100.00% Conn: 1 Mbps: 4167.168 Peak Mbps: 4167.168 Avg Mbps: 4167.168 2000 518384456 4151.227 100.00% Conn: 1 Mbps: 4151.227 Peak Mbps: 4167.168 Avg Mbps: 4151.227 3000 518654688 4149.238 100.00% Conn: 1 Mbps: 4149.238 Peak Mbps: 4167.168 Avg Mbps: 4149.238 4000 519107724 4152.862 100.00% Conn: 1 Mbps: 4152.862 Peak Mbps: 4167.168 Avg Mbps: 4152.862 5000 518948764 4151.590 100.00% Conn: 1 Mbps: 4151.590 Peak Mbps: 4167.168 Avg Mbps: 4151.590 --- 169.254.1.11 tcpbench statistics --- 3114280736 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4149.238/4154.417/4167.168/6.481 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 509960672 4079.685 100.00% Conn: 1 Mbps: 4079.685 Peak Mbps: 4079.685 Avg Mbps: 4079.685 2000 509342288 4078.817 100.00% Conn: 1 Mbps: 4078.817 Peak Mbps: 4079.685 Avg Mbps: 4078.817 3000 508985528 4071.884 100.00% Conn: 1 Mbps: 4071.884 Peak Mbps: 4079.685 Avg Mbps: 4071.884 4000 508890392 4071.123 100.00% Conn: 1 Mbps: 4071.123 Peak Mbps: 4079.685 Avg Mbps: 4071.123 5000 508914176 4071.313 100.00% Conn: 1 Mbps: 4071.313 Peak Mbps: 4079.685 Avg Mbps: 4071.313 --- fc00:0:0:1::11 tcpbench statistics --- 3054753536 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4071.123/4074.565/4079.685/3.845 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.073 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.073/0.073/0.073/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.131 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.131/0.131/0.131/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 1001 275941784 2205.329 100.00% Conn: 1 Mbps: 2205.329 Peak Mbps: 2205.329 Avg Mbps: 2205.329 2001 290049040 2322.715 100.00% Conn: 1 Mbps: 2322.715 Peak Mbps: 2322.715 Avg Mbps: 2322.715 3002 290526656 2324.213 100.00% Conn: 1 Mbps: 2324.213 Peak Mbps: 2324.213 Avg Mbps: 2324.213 4002 290685208 2325.482 100.00% Conn: 1 Mbps: 2325.482 Peak Mbps: 2325.482 Avg Mbps: 2325.482 5002 289393976 2315.152 100.00% Conn: 1 Mbps: 2315.152 Peak Mbps: 2325.482 Avg Mbps: 2315.152 --- 169.254.1.12 tcpbench statistics --- 1730014192 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2205.329/2298.578/2325.482/46.762 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 254594976 2036.760 100.00% Conn: 1 Mbps: 2036.760 Peak Mbps: 2036.760 Avg Mbps: 2036.760 2000 269156560 2155.408 100.00% Conn: 1 Mbps: 2155.408 Peak Mbps: 2155.408 Avg Mbps: 2155.408 3000 273331000 2186.648 100.00% Conn: 1 Mbps: 2186.648 Peak Mbps: 2186.648 Avg Mbps: 2186.648 4000 273123644 2184.989 100.00% Conn: 1 Mbps: 2184.989 Peak Mbps: 2186.648 Avg Mbps: 2184.989 5002 275635920 2202.884 100.00% Conn: 1 Mbps: 2202.884 Peak Mbps: 2202.884 Avg Mbps: 2202.884 --- fc00:0:0:1::12 tcpbench statistics --- 1620497196 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2036.760/2153.338/2202.884/60.268 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.064 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.064/0.064/0.064/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.069 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.069/0.069/0.069/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 589132372 4713.059 100.00% Conn: 1 Mbps: 4713.059 Peak Mbps: 4713.059 Avg Mbps: 4713.059 2000 592609956 4745.625 100.00% Conn: 1 Mbps: 4745.625 Peak Mbps: 4745.625 Avg Mbps: 4745.625 3000 579757652 4638.061 100.00% Conn: 1 Mbps: 4638.061 Peak Mbps: 4745.625 Avg Mbps: 4638.061 4000 570197468 4566.146 100.00% Conn: 1 Mbps: 4566.146 Peak Mbps: 4745.625 Avg Mbps: 4566.146 5000 560778528 4486.228 100.00% Conn: 1 Mbps: 4486.228 Peak Mbps: 4745.625 Avg Mbps: 4486.228 --- 169.254.0.13 tcpbench statistics --- 3447619232 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4486.228/4629.824/4745.625/94.953 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 599387352 4795.099 100.00% Conn: 1 Mbps: 4795.099 Peak Mbps: 4795.099 Avg Mbps: 4795.099 2001 635500696 5084.006 100.00% Conn: 1 Mbps: 5084.006 Peak Mbps: 5084.006 Avg Mbps: 5084.006 3001 633969680 5076.834 100.00% Conn: 1 Mbps: 5076.834 Peak Mbps: 5084.006 Avg Mbps: 5076.834 4002 634214408 5073.715 100.00% Conn: 1 Mbps: 5073.715 Peak Mbps: 5084.006 Avg Mbps: 5073.715 5002 634238976 5073.912 100.00% Conn: 1 Mbps: 5073.912 Peak Mbps: 5084.006 Avg Mbps: 5073.912 --- fc00::13 tcpbench statistics --- 3773114632 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4795.099/5020.713/5084.006/112.869 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.059 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.059/0.059/0.059/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.054 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.054/0.054/0.054/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 274534992 2194.086 100.00% Conn: 1 Mbps: 2194.086 Peak Mbps: 2194.086 Avg Mbps: 2194.086 2002 284966056 2277.451 100.00% Conn: 1 Mbps: 2277.451 Peak Mbps: 2277.451 Avg Mbps: 2277.451 3001 285749304 2290.576 100.00% Conn: 1 Mbps: 2290.576 Peak Mbps: 2290.576 Avg Mbps: 2290.576 4003 288900096 2308.892 100.00% Conn: 1 Mbps: 2308.892 Peak Mbps: 2308.892 Avg Mbps: 2308.892 5003 288147976 2307.491 100.00% Conn: 1 Mbps: 2307.491 Peak Mbps: 2308.892 Avg Mbps: 2307.491 --- 169.254.1.11 tcpbench statistics --- 1708621848 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2194.086/2275.699/2308.892/42.421 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 1001 254987844 2037.865 100.00% Conn: 1 Mbps: 2037.865 Peak Mbps: 2037.865 Avg Mbps: 2037.865 2001 267631796 2141.054 100.00% Conn: 1 Mbps: 2141.054 Peak Mbps: 2141.054 Avg Mbps: 2141.054 3001 270774780 2166.198 100.00% Conn: 1 Mbps: 2166.198 Peak Mbps: 2166.198 Avg Mbps: 2166.198 4002 269460668 2155.685 100.00% Conn: 1 Mbps: 2155.685 Peak Mbps: 2166.198 Avg Mbps: 2155.685 5003 270898296 2165.021 100.00% Conn: 1 Mbps: 2165.021 Peak Mbps: 2166.198 Avg Mbps: 2165.021 --- fc00:0:0:1::11 tcpbench statistics --- 1603436240 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2037.865/2133.165/2166.198/48.492 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.039 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.039/0.039/0.039/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.046 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.046/0.046/0.046/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 532823456 4262.588 100.00% Conn: 1 Mbps: 4262.588 Peak Mbps: 4262.588 Avg Mbps: 4262.588 2000 534071632 4276.850 100.00% Conn: 1 Mbps: 4276.850 Peak Mbps: 4276.850 Avg Mbps: 4276.850 3000 533809544 4270.476 100.00% Conn: 1 Mbps: 4270.476 Peak Mbps: 4276.850 Avg Mbps: 4270.476 4000 533395416 4267.163 100.00% Conn: 1 Mbps: 4267.163 Peak Mbps: 4276.850 Avg Mbps: 4267.163 5000 532777120 4262.217 100.00% Conn: 1 Mbps: 4262.217 Peak Mbps: 4276.850 Avg Mbps: 4262.217 --- 169.254.1.12 tcpbench statistics --- 3199862800 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4262.217/4267.859/4276.850/5.437 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 530486292 4243.890 100.00% Conn: 1 Mbps: 4243.890 Peak Mbps: 4243.890 Avg Mbps: 4243.890 2000 529593792 4240.991 100.00% Conn: 1 Mbps: 4240.991 Peak Mbps: 4243.890 Avg Mbps: 4240.991 3000 529582368 4236.659 100.00% Conn: 1 Mbps: 4236.659 Peak Mbps: 4243.890 Avg Mbps: 4236.659 4000 530970384 4247.763 100.00% Conn: 1 Mbps: 4247.763 Peak Mbps: 4247.763 Avg Mbps: 4247.763 5000 530564832 4244.519 100.00% Conn: 1 Mbps: 4244.519 Peak Mbps: 4247.763 Avg Mbps: 4244.519 --- fc00:0:0:1::12 tcpbench statistics --- 3181185588 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4236.659/4242.764/4247.763/3.735 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.054 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.054/0.054/0.054/0.000 ms ==== run-ping6-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.049 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-tcpbench-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 802242462 6417.940 100.00% Conn: 1 Mbps: 6417.940 Peak Mbps: 6417.940 Avg Mbps: 6417.940 2000 801181644 6415.869 100.00% Conn: 1 Mbps: 6415.869 Peak Mbps: 6417.940 Avg Mbps: 6415.869 3000 801214348 6409.715 100.00% Conn: 1 Mbps: 6409.715 Peak Mbps: 6417.940 Avg Mbps: 6409.715 4000 800200164 6401.601 100.00% Conn: 1 Mbps: 6401.601 Peak Mbps: 6417.940 Avg Mbps: 6401.601 5000 800331040 6402.648 100.00% Conn: 1 Mbps: 6402.648 Peak Mbps: 6417.940 Avg Mbps: 6402.648 --- 169.254.0.13 tcpbench statistics --- 4806384042 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6401.601/6409.555/6417.940/6.651 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 774978236 6199.826 100.00% Conn: 1 Mbps: 6199.826 Peak Mbps: 6199.826 Avg Mbps: 6199.826 2000 775156768 6207.462 100.00% Conn: 1 Mbps: 6207.462 Peak Mbps: 6207.462 Avg Mbps: 6207.462 3000 775222160 6207.985 100.00% Conn: 1 Mbps: 6207.985 Peak Mbps: 6207.985 Avg Mbps: 6207.985 4000 775483728 6203.870 100.00% Conn: 1 Mbps: 6203.870 Peak Mbps: 6207.985 Avg Mbps: 6203.870 5000 776497304 6211.978 100.00% Conn: 1 Mbps: 6211.978 Peak Mbps: 6211.978 Avg Mbps: 6211.978 --- fc00::13 tcpbench statistics --- 4654227852 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6199.826/6206.224/6211.978/4.104 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.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-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 1000 277609272 2220.874 100.00% Conn: 1 Mbps: 2220.874 Peak Mbps: 2220.874 Avg Mbps: 2220.874 2001 285572544 2282.298 100.00% Conn: 1 Mbps: 2282.298 Peak Mbps: 2282.298 Avg Mbps: 2282.298 3002 285643272 2282.863 100.00% Conn: 1 Mbps: 2282.863 Peak Mbps: 2282.863 Avg Mbps: 2282.863 4002 284353720 2277.107 100.00% Conn: 1 Mbps: 2277.107 Peak Mbps: 2282.863 Avg Mbps: 2277.107 5002 284850312 2278.802 100.00% Conn: 1 Mbps: 2278.802 Peak Mbps: 2282.863 Avg Mbps: 2278.802 --- 169.254.1.11 tcpbench statistics --- 1701460512 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2220.874/2268.389/2282.863/23.854 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 547505512 4380.044 100.00% Conn: 1 Mbps: 4380.044 Peak Mbps: 4380.044 Avg Mbps: 4380.044 2000 603661560 4829.292 100.00% Conn: 1 Mbps: 4829.292 Peak Mbps: 4829.292 Avg Mbps: 4829.292 3001 602643096 4821.145 100.00% Conn: 1 Mbps: 4821.145 Peak Mbps: 4829.292 Avg Mbps: 4821.145 4001 606289528 4850.316 100.00% Conn: 1 Mbps: 4850.316 Peak Mbps: 4850.316 Avg Mbps: 4850.316 5001 607405472 4859.244 100.00% Conn: 1 Mbps: 4859.244 Peak Mbps: 4859.244 Avg Mbps: 4859.244 --- fc00:0:0:1::11 tcpbench statistics --- 3577905288 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4380.044/4748.008/4859.244/184.496 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.049 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.060 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.060/0.060/0.060/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 793677886 6349.423 100.00% Conn: 1 Mbps: 6349.423 Peak Mbps: 6349.423 Avg Mbps: 6349.423 2000 792904976 6349.589 100.00% Conn: 1 Mbps: 6349.589 Peak Mbps: 6349.589 Avg Mbps: 6349.589 3000 792316088 6338.529 100.00% Conn: 1 Mbps: 6338.529 Peak Mbps: 6349.589 Avg Mbps: 6338.529 4000 790091400 6320.731 100.00% Conn: 1 Mbps: 6320.731 Peak Mbps: 6349.589 Avg Mbps: 6320.731 5000 795620404 6364.963 100.00% Conn: 1 Mbps: 6364.963 Peak Mbps: 6364.963 Avg Mbps: 6364.963 --- 169.254.1.12 tcpbench statistics --- 4759576838 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6320.731/6344.647/6364.963/14.625 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 758338852 6066.711 100.00% Conn: 1 Mbps: 6066.711 Peak Mbps: 6066.711 Avg Mbps: 6066.711 2000 766655808 6139.386 100.00% Conn: 1 Mbps: 6139.386 Peak Mbps: 6139.386 Avg Mbps: 6139.386 3000 766198064 6129.585 100.00% Conn: 1 Mbps: 6129.585 Peak Mbps: 6139.386 Avg Mbps: 6129.585 4000 767571296 6140.570 100.00% Conn: 1 Mbps: 6140.570 Peak Mbps: 6140.570 Avg Mbps: 6140.570 5000 767800168 6142.401 100.00% Conn: 1 Mbps: 6142.401 Peak Mbps: 6142.401 Avg Mbps: 6142.401 --- fc00:0:0:1::12 tcpbench statistics --- 4593645044 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6066.711/6123.731/6142.401/28.854 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.070 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.070/0.070/0.070/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 796374074 6370.993 100.00% Conn: 1 Mbps: 6370.993 Peak Mbps: 6370.993 Avg Mbps: 6370.993 2000 794998800 6366.357 100.00% Conn: 1 Mbps: 6366.357 Peak Mbps: 6370.993 Avg Mbps: 6366.357 3000 793886456 6351.092 100.00% Conn: 1 Mbps: 6351.092 Peak Mbps: 6370.993 Avg Mbps: 6351.092 4000 794671640 6357.373 100.00% Conn: 1 Mbps: 6357.373 Peak Mbps: 6370.993 Avg Mbps: 6357.373 5000 795653120 6365.225 100.00% Conn: 1 Mbps: 6365.225 Peak Mbps: 6370.993 Avg Mbps: 6365.225 --- 169.254.0.13 tcpbench statistics --- 4769863138 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6351.092/6362.208/6370.993/7.077 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 799485436 6395.883 100.00% Conn: 1 Mbps: 6395.883 Peak Mbps: 6395.883 Avg Mbps: 6395.883 2000 798043968 6390.742 100.00% Conn: 1 Mbps: 6390.742 Peak Mbps: 6395.883 Avg Mbps: 6390.742 3000 796311080 6370.489 100.00% Conn: 1 Mbps: 6370.489 Peak Mbps: 6395.883 Avg Mbps: 6370.489 4000 797651616 6381.213 100.00% Conn: 1 Mbps: 6381.213 Peak Mbps: 6395.883 Avg Mbps: 6381.213 5000 797815096 6382.521 100.00% Conn: 1 Mbps: 6382.521 Peak Mbps: 6395.883 Avg Mbps: 6382.521 --- fc00::13 tcpbench statistics --- 4786468372 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6370.489/6384.170/6395.883/8.707 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.85s