START sys/net/pair 2025-02-25T04:52:18Z ==== 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.051 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.051/0.051/0.051/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.043 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.043/0.043/0.043/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 508075900 4064.607 100.00% Conn: 1 Mbps: 4064.607 Peak Mbps: 4064.607 Avg Mbps: 4064.607 2000 506613468 4056.965 100.00% Conn: 1 Mbps: 4056.965 Peak Mbps: 4064.607 Avg Mbps: 4056.965 3000 506104796 4048.838 100.00% Conn: 1 Mbps: 4048.838 Peak Mbps: 4064.607 Avg Mbps: 4048.838 4000 505492800 4047.990 100.00% Conn: 1 Mbps: 4047.990 Peak Mbps: 4064.607 Avg Mbps: 4047.990 5000 506621416 4052.971 100.00% Conn: 1 Mbps: 4052.971 Peak Mbps: 4064.607 Avg Mbps: 4052.971 --- 169.254.1.11 tcpbench statistics --- 3039195980 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4047.990/4054.274/4064.607/6.079 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 501216088 4009.729 100.00% Conn: 1 Mbps: 4009.729 Peak Mbps: 4009.729 Avg Mbps: 4009.729 2000 499717696 4001.743 100.00% Conn: 1 Mbps: 4001.743 Peak Mbps: 4009.729 Avg Mbps: 4001.743 3000 499907968 3999.264 100.00% Conn: 1 Mbps: 3999.264 Peak Mbps: 4009.729 Avg Mbps: 3999.264 4000 499384720 3995.078 100.00% Conn: 1 Mbps: 3995.078 Peak Mbps: 4009.729 Avg Mbps: 3995.078 5000 496435504 3971.484 100.00% Conn: 1 Mbps: 3971.484 Peak Mbps: 4009.729 Avg Mbps: 3971.484 --- fc00:0:0:1::11 tcpbench statistics --- 2995911920 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3971.484/3995.460/4009.729/12.904 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.067 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.067/0.067/0.067/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.160 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.160/0.160/0.160/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 276574392 2210.385 100.00% Conn: 1 Mbps: 2210.385 Peak Mbps: 2210.385 Avg Mbps: 2210.385 2002 285985952 2287.888 100.00% Conn: 1 Mbps: 2287.888 Peak Mbps: 2287.888 Avg Mbps: 2287.888 3001 287465960 2302.030 100.00% Conn: 1 Mbps: 2302.030 Peak Mbps: 2302.030 Avg Mbps: 2302.030 4002 291712280 2333.698 100.00% Conn: 1 Mbps: 2333.698 Peak Mbps: 2333.698 Avg Mbps: 2333.698 5002 290440832 2325.853 100.00% Conn: 1 Mbps: 2325.853 Peak Mbps: 2333.698 Avg Mbps: 2325.853 --- 169.254.1.12 tcpbench statistics --- 1722173088 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2210.385/2291.971/2333.698/43.962 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 258292364 2066.339 100.00% Conn: 1 Mbps: 2066.339 Peak Mbps: 2066.339 Avg Mbps: 2066.339 2002 272936080 2179.130 100.00% Conn: 1 Mbps: 2179.130 Peak Mbps: 2179.130 Avg Mbps: 2179.130 3003 274160880 2193.287 100.00% Conn: 1 Mbps: 2193.287 Peak Mbps: 2193.287 Avg Mbps: 2193.287 4003 276548200 2214.600 100.00% Conn: 1 Mbps: 2214.600 Peak Mbps: 2214.600 Avg Mbps: 2214.600 5003 276757352 2214.059 100.00% Conn: 1 Mbps: 2214.059 Peak Mbps: 2214.600 Avg Mbps: 2214.059 --- fc00:0:0:1::12 tcpbench statistics --- 1635762456 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2066.339/2173.483/2214.600/55.210 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.102 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.102/0.102/0.102/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 602957832 4823.663 100.00% Conn: 1 Mbps: 4823.663 Peak Mbps: 4823.663 Avg Mbps: 4823.663 2000 636719256 5093.754 100.00% Conn: 1 Mbps: 5093.754 Peak Mbps: 5093.754 Avg Mbps: 5093.754 3000 639758052 5118.064 100.00% Conn: 1 Mbps: 5118.064 Peak Mbps: 5118.064 Avg Mbps: 5118.064 4001 628989352 5031.915 100.00% Conn: 1 Mbps: 5031.915 Peak Mbps: 5118.064 Avg Mbps: 5031.915 5001 623440248 4987.522 100.00% Conn: 1 Mbps: 4987.522 Peak Mbps: 5118.064 Avg Mbps: 4987.522 --- 169.254.0.13 tcpbench statistics --- 3724406244 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4823.663/5010.984/5118.064/104.302 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 1001 555347832 4438.344 100.00% Conn: 1 Mbps: 4438.344 Peak Mbps: 4438.344 Avg Mbps: 4438.344 2000 583027216 4668.887 100.00% Conn: 1 Mbps: 4668.887 Peak Mbps: 4668.887 Avg Mbps: 4668.887 3001 584468680 4675.749 100.00% Conn: 1 Mbps: 4675.749 Peak Mbps: 4675.749 Avg Mbps: 4675.749 4001 586411688 4691.294 100.00% Conn: 1 Mbps: 4691.294 Peak Mbps: 4691.294 Avg Mbps: 4691.294 5001 585915736 4687.326 100.00% Conn: 1 Mbps: 4687.326 Peak Mbps: 4691.294 Avg Mbps: 4687.326 --- fc00::13 tcpbench statistics --- 3478906168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4438.344/4632.320/4691.294/97.317 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.047 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.047/0.047/0.047/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.067 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.067/0.067/0.067/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 274383000 2192.871 100.00% Conn: 1 Mbps: 2192.871 Peak Mbps: 2192.871 Avg Mbps: 2192.871 2001 286749648 2293.997 100.00% Conn: 1 Mbps: 2293.997 Peak Mbps: 2293.997 Avg Mbps: 2293.997 3003 287368560 2296.652 100.00% Conn: 1 Mbps: 2296.652 Peak Mbps: 2296.652 Avg Mbps: 2296.652 4003 288508520 2310.379 100.00% Conn: 1 Mbps: 2310.379 Peak Mbps: 2310.379 Avg Mbps: 2310.379 5004 283807320 2268.190 100.00% Conn: 1 Mbps: 2268.190 Peak Mbps: 2310.379 Avg Mbps: 2268.190 --- 169.254.1.11 tcpbench statistics --- 1707851736 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2192.871/2272.418/2310.379/42.046 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 253290560 2026.324 100.00% Conn: 1 Mbps: 2026.324 Peak Mbps: 2026.324 Avg Mbps: 2026.324 2002 272235624 2175.709 100.00% Conn: 1 Mbps: 2175.709 Peak Mbps: 2175.709 Avg Mbps: 2175.709 3002 275257556 2202.060 100.00% Conn: 1 Mbps: 2202.060 Peak Mbps: 2202.060 Avg Mbps: 2202.060 4002 275662980 2207.511 100.00% Conn: 1 Mbps: 2207.511 Peak Mbps: 2207.511 Avg Mbps: 2207.511 5002 276588664 2212.709 100.00% Conn: 1 Mbps: 2212.709 Peak Mbps: 2212.709 Avg Mbps: 2212.709 --- fc00:0:0:1::11 tcpbench statistics --- 1626473060 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2026.324/2164.863/2212.709/70.431 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.052 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.052/0.052/0.052/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 510240448 4081.924 100.00% Conn: 1 Mbps: 4081.924 Peak Mbps: 4081.924 Avg Mbps: 4081.924 2000 510838472 4090.799 100.00% Conn: 1 Mbps: 4090.799 Peak Mbps: 4090.799 Avg Mbps: 4090.799 3000 510608240 4084.866 100.00% Conn: 1 Mbps: 4084.866 Peak Mbps: 4090.799 Avg Mbps: 4084.866 4000 510576384 4088.700 100.00% Conn: 1 Mbps: 4088.700 Peak Mbps: 4090.799 Avg Mbps: 4088.700 5000 510605344 4084.843 100.00% Conn: 1 Mbps: 4084.843 Peak Mbps: 4090.799 Avg Mbps: 4084.843 --- 169.254.1.12 tcpbench statistics --- 3063164360 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4081.924/4086.226/4090.799/3.140 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 519644916 4157.159 100.00% Conn: 1 Mbps: 4157.159 Peak Mbps: 4157.159 Avg Mbps: 4157.159 2000 517440084 4143.664 100.00% Conn: 1 Mbps: 4143.664 Peak Mbps: 4157.159 Avg Mbps: 4143.664 3000 518225484 4145.804 100.00% Conn: 1 Mbps: 4145.804 Peak Mbps: 4157.159 Avg Mbps: 4145.804 4000 518780976 4150.248 100.00% Conn: 1 Mbps: 4150.248 Peak Mbps: 4157.159 Avg Mbps: 4150.248 5000 519440712 4155.526 100.00% Conn: 1 Mbps: 4155.526 Peak Mbps: 4157.159 Avg Mbps: 4155.526 --- fc00:0:0:1::12 tcpbench statistics --- 3112870068 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4143.664/4150.480/4157.159/5.262 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.047 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.047/0.047/0.047/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 763123238 6104.986 100.00% Conn: 1 Mbps: 6104.986 Peak Mbps: 6104.986 Avg Mbps: 6104.986 2000 760777864 6092.315 100.00% Conn: 1 Mbps: 6092.315 Peak Mbps: 6104.986 Avg Mbps: 6092.315 3000 767353780 6138.830 100.00% Conn: 1 Mbps: 6138.830 Peak Mbps: 6138.830 Avg Mbps: 6138.830 4000 766895756 6135.166 100.00% Conn: 1 Mbps: 6135.166 Peak Mbps: 6138.830 Avg Mbps: 6135.166 5000 766405016 6131.240 100.00% Conn: 1 Mbps: 6131.240 Peak Mbps: 6138.830 Avg Mbps: 6131.240 --- 169.254.0.13 tcpbench statistics --- 4591189682 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6092.315/6120.508/6138.830/18.447 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 753520116 6028.161 100.00% Conn: 1 Mbps: 6028.161 Peak Mbps: 6028.161 Avg Mbps: 6028.161 2000 754329416 6040.676 100.00% Conn: 1 Mbps: 6040.676 Peak Mbps: 6040.676 Avg Mbps: 6040.676 3000 755146816 6041.175 100.00% Conn: 1 Mbps: 6041.175 Peak Mbps: 6041.175 Avg Mbps: 6041.175 4000 754590984 6036.728 100.00% Conn: 1 Mbps: 6036.728 Peak Mbps: 6041.175 Avg Mbps: 6036.728 5000 754819856 6038.559 100.00% Conn: 1 Mbps: 6038.559 Peak Mbps: 6041.175 Avg Mbps: 6038.559 --- fc00::13 tcpbench statistics --- 4527488612 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6028.161/6037.060/6041.175/4.723 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.060 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.060/0.060/0.060/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 277148856 2214.976 100.00% Conn: 1 Mbps: 2214.976 Peak Mbps: 2214.976 Avg Mbps: 2214.976 2001 285049760 2282.681 100.00% Conn: 1 Mbps: 2282.681 Peak Mbps: 2282.681 Avg Mbps: 2282.681 3002 284457472 2273.386 100.00% Conn: 1 Mbps: 2273.386 Peak Mbps: 2282.681 Avg Mbps: 2273.386 4002 286235664 2289.885 100.00% Conn: 1 Mbps: 2289.885 Peak Mbps: 2289.885 Avg Mbps: 2289.885 5003 286819992 2294.560 100.00% Conn: 1 Mbps: 2294.560 Peak Mbps: 2294.560 Avg Mbps: 2294.560 --- 169.254.1.11 tcpbench statistics --- 1703660184 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2214.976/2271.098/2294.560/28.957 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 535535680 4284.285 100.00% Conn: 1 Mbps: 4284.285 Peak Mbps: 4284.285 Avg Mbps: 4284.285 2000 603501960 4828.016 100.00% Conn: 1 Mbps: 4828.016 Peak Mbps: 4828.016 Avg Mbps: 4828.016 3000 609847688 4883.665 100.00% Conn: 1 Mbps: 4883.665 Peak Mbps: 4883.665 Avg Mbps: 4883.665 4001 602121656 4816.973 100.00% Conn: 1 Mbps: 4816.973 Peak Mbps: 4883.665 Avg Mbps: 4816.973 5001 605567296 4849.388 100.00% Conn: 1 Mbps: 4849.388 Peak Mbps: 4883.665 Avg Mbps: 4849.388 --- fc00:0:0:1::11 tcpbench statistics --- 3566071936 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4284.285/4732.465/4883.665/225.242 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 8 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.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-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.050 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.050/0.050/0.050/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 767995906 6143.967 100.00% Conn: 1 Mbps: 6143.967 Peak Mbps: 6143.967 Avg Mbps: 6143.967 2000 768449766 6153.752 100.00% Conn: 1 Mbps: 6153.752 Peak Mbps: 6153.752 Avg Mbps: 6153.752 3000 768138964 6145.112 100.00% Conn: 1 Mbps: 6145.112 Peak Mbps: 6153.752 Avg Mbps: 6145.112 4000 767844520 6142.756 100.00% Conn: 1 Mbps: 6142.756 Peak Mbps: 6153.752 Avg Mbps: 6142.756 5000 764213044 6113.704 100.00% Conn: 1 Mbps: 6113.704 Peak Mbps: 6153.752 Avg Mbps: 6113.704 --- 169.254.1.12 tcpbench statistics --- 4603897832 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6113.704/6139.858/6153.752/13.638 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 756690116 6053.521 100.00% Conn: 1 Mbps: 6053.521 Peak Mbps: 6053.521 Avg Mbps: 6053.521 2000 757664408 6067.383 100.00% Conn: 1 Mbps: 6067.383 Peak Mbps: 6067.383 Avg Mbps: 6067.383 3000 757402840 6059.223 100.00% Conn: 1 Mbps: 6059.223 Peak Mbps: 6067.383 Avg Mbps: 6059.223 4000 757108576 6056.869 100.00% Conn: 1 Mbps: 6056.869 Peak Mbps: 6067.383 Avg Mbps: 6056.869 5000 756814312 6054.514 100.00% Conn: 1 Mbps: 6054.514 Peak Mbps: 6067.383 Avg Mbps: 6054.514 --- fc00:0:0:1::12 tcpbench statistics --- 4541938732 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6053.521/6058.302/6067.383/4.951 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.049 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.049/0.049/0.049/0.000 ms ==== run-ping6-3-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.047 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 779821626 6238.573 100.00% Conn: 1 Mbps: 6238.573 Peak Mbps: 6238.573 Avg Mbps: 6238.573 2000 779884008 6245.317 100.00% Conn: 1 Mbps: 6245.317 Peak Mbps: 6245.317 Avg Mbps: 6245.317 3000 780243884 6241.951 100.00% Conn: 1 Mbps: 6241.951 Peak Mbps: 6245.317 Avg Mbps: 6241.951 4000 779556848 6236.455 100.00% Conn: 1 Mbps: 6236.455 Peak Mbps: 6245.317 Avg Mbps: 6236.455 5000 779164256 6233.314 100.00% Conn: 1 Mbps: 6233.314 Peak Mbps: 6245.317 Avg Mbps: 6233.314 --- 169.254.0.13 tcpbench statistics --- 4677180558 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6233.314/6239.122/6245.317/4.184 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 782812636 6262.501 100.00% Conn: 1 Mbps: 6262.501 Peak Mbps: 6262.501 Avg Mbps: 6262.501 2000 782415280 6265.588 100.00% Conn: 1 Mbps: 6265.588 Peak Mbps: 6265.588 Avg Mbps: 6265.588 3000 781565184 6252.521 100.00% Conn: 1 Mbps: 6252.521 Peak Mbps: 6265.588 Avg Mbps: 6252.521 4000 782382584 6259.061 100.00% Conn: 1 Mbps: 6259.061 Peak Mbps: 6265.588 Avg Mbps: 6259.061 5000 781990232 6255.922 100.00% Conn: 1 Mbps: 6255.922 Peak Mbps: 6265.588 Avg Mbps: 6255.922 --- fc00::13 tcpbench statistics --- 4692469532 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6252.521/6259.119/6265.588/4.627 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.87s