START sys/net/pair 2025-03-14T04:50:07Z ==== 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.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-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 508044108 4064.353 100.00% Conn: 1 Mbps: 4064.353 Peak Mbps: 4064.353 Avg Mbps: 4064.353 2000 507090348 4060.784 100.00% Conn: 1 Mbps: 4060.784 Peak Mbps: 4064.353 Avg Mbps: 4060.784 3000 507082400 4056.659 100.00% Conn: 1 Mbps: 4056.659 Peak Mbps: 4064.353 Avg Mbps: 4056.659 4000 507312892 4058.503 100.00% Conn: 1 Mbps: 4058.503 Peak Mbps: 4064.353 Avg Mbps: 4058.503 5000 507400320 4059.203 100.00% Conn: 1 Mbps: 4059.203 Peak Mbps: 4064.353 Avg Mbps: 4059.203 --- 169.254.1.11 tcpbench statistics --- 3043932988 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4056.659/4059.900/4064.353/2.590 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 499289584 3994.317 100.00% Conn: 1 Mbps: 3994.317 Peak Mbps: 3994.317 Avg Mbps: 3994.317 2000 498258944 3990.062 100.00% Conn: 1 Mbps: 3990.062 Peak Mbps: 3994.317 Avg Mbps: 3990.062 3000 498068672 3984.549 100.00% Conn: 1 Mbps: 3984.549 Peak Mbps: 3994.317 Avg Mbps: 3984.549 4000 498354080 3986.833 100.00% Conn: 1 Mbps: 3986.833 Peak Mbps: 3994.317 Avg Mbps: 3986.833 5000 497799120 3982.393 100.00% Conn: 1 Mbps: 3982.393 Peak Mbps: 3994.317 Avg Mbps: 3982.393 --- fc00:0:0:1::11 tcpbench statistics --- 2989712224 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3982.393/3987.631/3994.317/4.199 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.142 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.142/0.142/0.142/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 274082160 2190.467 100.00% Conn: 1 Mbps: 2190.467 Peak Mbps: 2190.467 Avg Mbps: 2190.467 2002 282317104 2256.281 100.00% Conn: 1 Mbps: 2256.281 Peak Mbps: 2256.281 Avg Mbps: 2256.281 3003 287191288 2297.530 100.00% Conn: 1 Mbps: 2297.530 Peak Mbps: 2297.530 Avg Mbps: 2297.530 4003 290356736 2325.179 100.00% Conn: 1 Mbps: 2325.179 Peak Mbps: 2325.179 Avg Mbps: 2325.179 5004 288407616 2304.956 100.00% Conn: 1 Mbps: 2304.956 Peak Mbps: 2325.179 Avg Mbps: 2304.956 --- 169.254.1.12 tcpbench statistics --- 1710508224 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2190.467/2274.883/2325.179/47.789 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 1002 259558068 2072.320 100.00% Conn: 1 Mbps: 2072.320 Peak Mbps: 2072.320 Avg Mbps: 2072.320 2002 272025524 2178.383 100.00% Conn: 1 Mbps: 2178.383 Peak Mbps: 2178.383 Avg Mbps: 2178.383 3003 276378776 2211.030 100.00% Conn: 1 Mbps: 2211.030 Peak Mbps: 2211.030 Avg Mbps: 2211.030 4004 278157780 2225.262 100.00% Conn: 1 Mbps: 2225.262 Peak Mbps: 2225.262 Avg Mbps: 2225.262 5004 276819788 2214.558 100.00% Conn: 1 Mbps: 2214.558 Peak Mbps: 2225.262 Avg Mbps: 2214.558 --- fc00:0:0:1::12 tcpbench statistics --- 1640188464 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2072.320/2180.311/2225.262/56.219 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.074 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.074/0.074/0.074/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 566482812 4531.862 100.00% Conn: 1 Mbps: 4531.862 Peak Mbps: 4531.862 Avg Mbps: 4531.862 2000 584827776 4683.306 100.00% Conn: 1 Mbps: 4683.306 Peak Mbps: 4683.306 Avg Mbps: 4683.306 3000 567674732 4541.398 100.00% Conn: 1 Mbps: 4541.398 Peak Mbps: 4683.306 Avg Mbps: 4541.398 4000 568520160 4552.714 100.00% Conn: 1 Mbps: 4552.714 Peak Mbps: 4683.306 Avg Mbps: 4552.714 5000 563869880 4510.959 100.00% Conn: 1 Mbps: 4510.959 Peak Mbps: 4683.306 Avg Mbps: 4510.959 --- 169.254.0.13 tcpbench statistics --- 3373177036 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4510.959/4564.048/4683.306/61.185 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 601996440 4815.972 100.00% Conn: 1 Mbps: 4815.972 Peak Mbps: 4815.972 Avg Mbps: 4815.972 2000 638737528 5109.900 100.00% Conn: 1 Mbps: 5109.900 Peak Mbps: 5109.900 Avg Mbps: 5109.900 3000 636532504 5092.260 100.00% Conn: 1 Mbps: 5092.260 Peak Mbps: 5109.900 Avg Mbps: 5092.260 4001 642442112 5139.537 100.00% Conn: 1 Mbps: 5139.537 Peak Mbps: 5139.537 Avg Mbps: 5139.537 5001 640364456 5128.044 100.00% Conn: 1 Mbps: 5128.044 Peak Mbps: 5139.537 Avg Mbps: 5128.044 --- fc00::13 tcpbench statistics --- 3797537408 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4815.972/5057.142/5139.537/121.652 Mbps ==== run-ping-2-1 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.057 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.057/0.057/0.057/0.000 ms ==== run-ping6-2-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.050 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.050/0.050/0.050/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 1002 273717200 2185.367 100.00% Conn: 1 Mbps: 2185.367 Peak Mbps: 2185.367 Avg Mbps: 2185.367 2002 281553336 2254.681 100.00% Conn: 1 Mbps: 2254.681 Peak Mbps: 2254.681 Avg Mbps: 2254.681 3001 286598776 2295.085 100.00% Conn: 1 Mbps: 2295.085 Peak Mbps: 2295.085 Avg Mbps: 2295.085 4002 286556784 2292.454 100.00% Conn: 1 Mbps: 2292.454 Peak Mbps: 2295.085 Avg Mbps: 2292.454 5002 284952184 2281.899 100.00% Conn: 1 Mbps: 2281.899 Peak Mbps: 2295.085 Avg Mbps: 2281.899 --- 169.254.1.11 tcpbench statistics --- 1698697240 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2185.367/2261.897/2295.085/40.852 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 256187224 2049.498 100.00% Conn: 1 Mbps: 2049.498 Peak Mbps: 2049.498 Avg Mbps: 2049.498 2001 269910940 2157.130 100.00% Conn: 1 Mbps: 2157.130 Peak Mbps: 2157.130 Avg Mbps: 2157.130 3001 272337296 2180.879 100.00% Conn: 1 Mbps: 2180.879 Peak Mbps: 2180.879 Avg Mbps: 2180.879 4001 272216156 2179.909 100.00% Conn: 1 Mbps: 2179.909 Peak Mbps: 2180.879 Avg Mbps: 2179.909 5001 272709792 2181.678 100.00% Conn: 1 Mbps: 2181.678 Peak Mbps: 2181.678 Avg Mbps: 2181.678 --- fc00:0:0:1::11 tcpbench statistics --- 1619616868 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2049.498/2149.819/2181.678/50.996 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.055 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.055/0.055/0.055/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 525243176 4201.945 100.00% Conn: 1 Mbps: 4201.945 Peak Mbps: 4201.945 Avg Mbps: 4201.945 2000 526649184 4217.411 100.00% Conn: 1 Mbps: 4217.411 Peak Mbps: 4217.411 Avg Mbps: 4217.411 3000 526876520 4215.012 100.00% Conn: 1 Mbps: 4215.012 Peak Mbps: 4217.411 Avg Mbps: 4215.012 4000 527092272 4216.738 100.00% Conn: 1 Mbps: 4216.738 Peak Mbps: 4217.411 Avg Mbps: 4216.738 5000 526614432 4212.915 100.00% Conn: 1 Mbps: 4212.915 Peak Mbps: 4217.411 Avg Mbps: 4212.915 --- 169.254.1.12 tcpbench statistics --- 3159055264 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4201.945/4212.804/4217.411/5.648 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 530030364 4240.243 100.00% Conn: 1 Mbps: 4240.243 Peak Mbps: 4240.243 Avg Mbps: 4240.243 2000 530990376 4252.175 100.00% Conn: 1 Mbps: 4252.175 Peak Mbps: 4252.175 Avg Mbps: 4252.175 3000 531544440 4252.356 100.00% Conn: 1 Mbps: 4252.356 Peak Mbps: 4252.356 Avg Mbps: 4252.356 4000 531662964 4253.304 100.00% Conn: 1 Mbps: 4253.304 Peak Mbps: 4253.304 Avg Mbps: 4253.304 5000 531560148 4252.481 100.00% Conn: 1 Mbps: 4252.481 Peak Mbps: 4253.304 Avg Mbps: 4252.481 --- fc00:0:0:1::12 tcpbench statistics --- 3186974304 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4240.243/4250.112/4253.304/4.950 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.056 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.056/0.056/0.056/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.051 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/0.000 ms ==== run-tcpbench-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 765475022 6123.800 100.00% Conn: 1 Mbps: 6123.800 Peak Mbps: 6123.800 Avg Mbps: 6123.800 2000 767811804 6148.643 100.00% Conn: 1 Mbps: 6148.643 Peak Mbps: 6148.643 Avg Mbps: 6148.643 3000 768335260 6146.682 100.00% Conn: 1 Mbps: 6146.682 Peak Mbps: 6148.643 Avg Mbps: 6146.682 4000 768727852 6149.823 100.00% Conn: 1 Mbps: 6149.823 Peak Mbps: 6149.823 Avg Mbps: 6149.823 5000 768237112 6152.049 100.00% Conn: 1 Mbps: 6152.049 Peak Mbps: 6152.049 Avg Mbps: 6152.049 --- 169.254.0.13 tcpbench statistics --- 4607478482 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6123.800/6144.199/6152.049/10.347 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 758567004 6068.536 100.00% Conn: 1 Mbps: 6068.536 Peak Mbps: 6068.536 Avg Mbps: 6068.536 2000 758056760 6070.525 100.00% Conn: 1 Mbps: 6070.525 Peak Mbps: 6070.525 Avg Mbps: 6070.525 3000 758285632 6066.285 100.00% Conn: 1 Mbps: 6066.285 Peak Mbps: 6070.525 Avg Mbps: 6066.285 4000 758481808 6067.854 100.00% Conn: 1 Mbps: 6067.854 Peak Mbps: 6070.525 Avg Mbps: 6067.854 5000 758841464 6070.732 100.00% Conn: 1 Mbps: 6070.732 Peak Mbps: 6070.732 Avg Mbps: 6070.732 --- fc00::13 tcpbench statistics --- 4551270308 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6066.285/6068.786/6070.732/1.673 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.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-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.056 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.056/0.056/0.056/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 272326672 2176.437 100.00% Conn: 1 Mbps: 2176.437 Peak Mbps: 2176.437 Avg Mbps: 2176.437 2002 281992304 2255.938 100.00% Conn: 1 Mbps: 2255.938 Peak Mbps: 2255.938 Avg Mbps: 2255.938 3003 284892312 2279.138 100.00% Conn: 1 Mbps: 2279.138 Peak Mbps: 2279.138 Avg Mbps: 2279.138 4003 282855088 2262.841 100.00% Conn: 1 Mbps: 2262.841 Peak Mbps: 2279.138 Avg Mbps: 2262.841 5003 284928744 2281.712 100.00% Conn: 1 Mbps: 2281.712 Peak Mbps: 2281.712 Avg Mbps: 2281.712 --- 169.254.1.11 tcpbench statistics --- 1691520480 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2176.437/2251.213/2281.712/38.624 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 538716744 4309.734 100.00% Conn: 1 Mbps: 4309.734 Peak Mbps: 4309.734 Avg Mbps: 4309.734 2000 608904664 4871.237 100.00% Conn: 1 Mbps: 4871.237 Peak Mbps: 4871.237 Avg Mbps: 4871.237 3000 610225000 4881.800 100.00% Conn: 1 Mbps: 4881.800 Peak Mbps: 4881.800 Avg Mbps: 4881.800 4000 606517008 4856.993 100.00% Conn: 1 Mbps: 4856.993 Peak Mbps: 4881.800 Avg Mbps: 4856.993 5001 598446808 4787.574 100.00% Conn: 1 Mbps: 4787.574 Peak Mbps: 4881.800 Avg Mbps: 4787.574 --- fc00:0:0:1::11 tcpbench statistics --- 3570200384 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4309.734/4741.468/4881.800/218.357 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 786576642 6292.613 100.00% Conn: 1 Mbps: 6292.613 Peak Mbps: 6292.613 Avg Mbps: 6292.613 2000 787146960 6303.479 100.00% Conn: 1 Mbps: 6303.479 Peak Mbps: 6303.479 Avg Mbps: 6303.479 3000 786688936 6293.511 100.00% Conn: 1 Mbps: 6293.511 Peak Mbps: 6303.479 Avg Mbps: 6293.511 4000 786688936 6293.511 100.00% Conn: 1 Mbps: 6293.511 Peak Mbps: 6303.479 Avg Mbps: 6293.511 5000 786361776 6290.894 100.00% Conn: 1 Mbps: 6290.894 Peak Mbps: 6303.479 Avg Mbps: 6290.894 --- 169.254.1.12 tcpbench statistics --- 4720217618 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6290.894/6294.802/6303.479/4.443 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 768900164 6151.201 100.00% Conn: 1 Mbps: 6151.201 Peak Mbps: 6151.201 Avg Mbps: 6151.201 2000 769173400 6159.547 100.00% Conn: 1 Mbps: 6159.547 Peak Mbps: 6159.547 Avg Mbps: 6159.547 3000 768650264 6149.202 100.00% Conn: 1 Mbps: 6149.202 Peak Mbps: 6159.547 Avg Mbps: 6149.202 4000 769042616 6152.341 100.00% Conn: 1 Mbps: 6152.341 Peak Mbps: 6159.547 Avg Mbps: 6152.341 5000 770415848 6163.327 100.00% Conn: 1 Mbps: 6163.327 Peak Mbps: 6163.327 Avg Mbps: 6163.327 --- fc00:0:0:1::12 tcpbench statistics --- 4616042308 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6149.202/6155.124/6163.327/5.386 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.051 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.051/0.051/0.051/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.067 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.067/0.067/0.067/0.000 ms ==== run-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 773473498 6187.788 100.00% Conn: 1 Mbps: 6187.788 Peak Mbps: 6187.788 Avg Mbps: 6187.788 2000 772948216 6189.776 100.00% Conn: 1 Mbps: 6189.776 Peak Mbps: 6189.776 Avg Mbps: 6189.776 3000 773144512 6185.156 100.00% Conn: 1 Mbps: 6185.156 Peak Mbps: 6189.776 Avg Mbps: 6185.156 4000 773128154 6185.025 100.00% Conn: 1 Mbps: 6185.025 Peak Mbps: 6189.776 Avg Mbps: 6185.025 5000 772490192 6179.922 100.00% Conn: 1 Mbps: 6179.922 Peak Mbps: 6189.776 Avg Mbps: 6179.922 --- 169.254.0.13 tcpbench statistics --- 4639866736 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6179.922/6185.533/6189.776/3.316 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 779377684 6235.021 100.00% Conn: 1 Mbps: 6235.021 Peak Mbps: 6235.021 Avg Mbps: 6235.021 2000 779047592 6238.619 100.00% Conn: 1 Mbps: 6238.619 Peak Mbps: 6238.619 Avg Mbps: 6238.619 3000 780943960 6247.552 100.00% Conn: 1 Mbps: 6247.552 Peak Mbps: 6247.552 Avg Mbps: 6247.552 4000 779963080 6239.705 100.00% Conn: 1 Mbps: 6239.705 Peak Mbps: 6247.552 Avg Mbps: 6239.705 5000 781499792 6251.998 100.00% Conn: 1 Mbps: 6251.998 Peak Mbps: 6251.998 Avg Mbps: 6251.998 --- fc00::13 tcpbench statistics --- 4682004940 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6235.021/6242.579/6251.998/6.237 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