START sys/net/pair 2025-03-22T05:33:01Z ==== 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.042 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.042/0.042/0.042/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 516143120 4129.145 100.00% Conn: 1 Mbps: 4129.145 Peak Mbps: 4129.145 Avg Mbps: 4129.145 2000 515799956 4126.400 100.00% Conn: 1 Mbps: 4126.400 Peak Mbps: 4129.145 Avg Mbps: 4126.400 3000 515570864 4124.567 100.00% Conn: 1 Mbps: 4124.567 Peak Mbps: 4129.145 Avg Mbps: 4124.567 4000 514672740 4117.382 100.00% Conn: 1 Mbps: 4117.382 Peak Mbps: 4129.145 Avg Mbps: 4117.382 5000 514132276 4113.058 100.00% Conn: 1 Mbps: 4113.058 Peak Mbps: 4129.145 Avg Mbps: 4113.058 --- 169.254.1.11 tcpbench statistics --- 3090379700 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4113.058/4122.110/4129.145/5.970 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 520132296 4161.058 100.00% Conn: 1 Mbps: 4161.058 Peak Mbps: 4161.058 Avg Mbps: 4161.058 2000 518015520 4148.272 100.00% Conn: 1 Mbps: 4148.272 Peak Mbps: 4161.058 Avg Mbps: 4148.272 3000 517793536 4142.348 100.00% Conn: 1 Mbps: 4142.348 Peak Mbps: 4161.058 Avg Mbps: 4142.348 4000 517619120 4140.953 100.00% Conn: 1 Mbps: 4140.953 Peak Mbps: 4161.058 Avg Mbps: 4140.953 5000 518522912 4148.183 100.00% Conn: 1 Mbps: 4148.183 Peak Mbps: 4161.058 Avg Mbps: 4148.183 --- fc00:0:0:1::11 tcpbench statistics --- 3109781784 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4140.953/4148.163/4161.058/7.101 Mbps ==== run-ping-1-2 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.076 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.076/0.076/0.076/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.146 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.146/0.146/0.146/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 272920584 2181.183 100.00% Conn: 1 Mbps: 2181.183 Peak Mbps: 2181.183 Avg Mbps: 2181.183 2001 287404264 2301.536 100.00% Conn: 1 Mbps: 2301.536 Peak Mbps: 2301.536 Avg Mbps: 2301.536 3001 289252920 2314.023 100.00% Conn: 1 Mbps: 2314.023 Peak Mbps: 2314.023 Avg Mbps: 2314.023 4002 288533816 2308.271 100.00% Conn: 1 Mbps: 2308.271 Peak Mbps: 2314.023 Avg Mbps: 2308.271 5003 289846704 2318.774 100.00% Conn: 1 Mbps: 2318.774 Peak Mbps: 2318.774 Avg Mbps: 2318.774 --- 169.254.1.12 tcpbench statistics --- 1715448080 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2181.183/2284.757/2318.774/52.107 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1001 253107028 2022.833 100.00% Conn: 1 Mbps: 2022.833 Peak Mbps: 2022.833 Avg Mbps: 2022.833 2001 268228728 2145.830 100.00% Conn: 1 Mbps: 2145.830 Peak Mbps: 2145.830 Avg Mbps: 2145.830 3002 275407864 2203.263 100.00% Conn: 1 Mbps: 2203.263 Peak Mbps: 2203.263 Avg Mbps: 2203.263 4003 275632724 2202.859 100.00% Conn: 1 Mbps: 2202.859 Peak Mbps: 2203.263 Avg Mbps: 2202.859 5005 275916388 2202.925 100.00% Conn: 1 Mbps: 2202.925 Peak Mbps: 2203.263 Avg Mbps: 2202.925 --- fc00:0:0:1::12 tcpbench statistics --- 1622636340 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2022.833/2155.542/2203.263/69.953 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.063 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.063/0.063/0.063/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.075 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.075/0.075/0.075/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 592610796 4740.886 100.00% Conn: 1 Mbps: 4740.886 Peak Mbps: 4740.886 Avg Mbps: 4740.886 2000 588039748 4709.027 100.00% Conn: 1 Mbps: 4709.027 Peak Mbps: 4740.886 Avg Mbps: 4709.027 3000 577063420 4616.507 100.00% Conn: 1 Mbps: 4616.507 Peak Mbps: 4740.886 Avg Mbps: 4616.507 4000 576173524 4609.388 100.00% Conn: 1 Mbps: 4609.388 Peak Mbps: 4740.886 Avg Mbps: 4609.388 5000 554928940 4439.432 100.00% Conn: 1 Mbps: 4439.432 Peak Mbps: 4740.886 Avg Mbps: 4439.432 --- 169.254.0.13 tcpbench statistics --- 3413447732 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4439.432/4623.048/4740.886/105.093 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 603042936 4824.343 100.00% Conn: 1 Mbps: 4824.343 Peak Mbps: 4824.343 Avg Mbps: 4824.343 2000 636837144 5094.697 100.00% Conn: 1 Mbps: 5094.697 Peak Mbps: 5094.697 Avg Mbps: 5094.697 3000 639493152 5115.945 100.00% Conn: 1 Mbps: 5115.945 Peak Mbps: 5115.945 Avg Mbps: 5115.945 4001 640616720 5124.934 100.00% Conn: 1 Mbps: 5124.934 Peak Mbps: 5124.934 Avg Mbps: 5124.934 5001 643618184 5148.945 100.00% Conn: 1 Mbps: 5148.945 Peak Mbps: 5148.945 Avg Mbps: 5148.945 --- fc00::13 tcpbench statistics --- 3803023832 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4824.343/5061.773/5148.945/119.983 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.058 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.058/0.058/0.058/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.053 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.053/0.053/0.053/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 274947000 2197.379 100.00% Conn: 1 Mbps: 2197.379 Peak Mbps: 2197.379 Avg Mbps: 2197.379 2001 284559104 2278.752 100.00% Conn: 1 Mbps: 2278.752 Peak Mbps: 2278.752 Avg Mbps: 2278.752 3002 287709568 2301.677 100.00% Conn: 1 Mbps: 2301.677 Peak Mbps: 2301.677 Avg Mbps: 2301.677 4003 285065568 2278.246 100.00% Conn: 1 Mbps: 2278.246 Peak Mbps: 2301.677 Avg Mbps: 2278.246 5004 283861400 2270.891 100.00% Conn: 1 Mbps: 2270.891 Peak Mbps: 2301.677 Avg Mbps: 2270.891 --- 169.254.1.11 tcpbench statistics --- 1702267416 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2197.379/2265.389/2301.677/35.542 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 256434112 2049.423 100.00% Conn: 1 Mbps: 2049.423 Peak Mbps: 2049.423 Avg Mbps: 2049.423 2000 267708016 2143.808 100.00% Conn: 1 Mbps: 2143.808 Peak Mbps: 2143.808 Avg Mbps: 2143.808 3000 269988900 2162.073 100.00% Conn: 1 Mbps: 2162.073 Peak Mbps: 2162.073 Avg Mbps: 2162.073 4001 269714964 2157.720 100.00% Conn: 1 Mbps: 2157.720 Peak Mbps: 2162.073 Avg Mbps: 2157.720 5002 271522148 2170.007 100.00% Conn: 1 Mbps: 2170.007 Peak Mbps: 2170.007 Avg Mbps: 2170.007 --- fc00:0:0:1::11 tcpbench statistics --- 1607583392 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2049.423/2136.606/2170.007/44.413 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.054 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.054/0.054/0.054/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.049 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.049/0.049/0.049/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 526497144 4211.977 100.00% Conn: 1 Mbps: 4211.977 Peak Mbps: 4211.977 Avg Mbps: 4211.977 2000 526336416 4214.906 100.00% Conn: 1 Mbps: 4214.906 Peak Mbps: 4214.906 Avg Mbps: 4214.906 3000 523926944 4191.416 100.00% Conn: 1 Mbps: 4191.416 Peak Mbps: 4214.906 Avg Mbps: 4191.416 4000 527319608 4218.557 100.00% Conn: 1 Mbps: 4218.557 Peak Mbps: 4218.557 Avg Mbps: 4218.557 5000 527662784 4221.302 100.00% Conn: 1 Mbps: 4221.302 Peak Mbps: 4221.302 Avg Mbps: 4221.302 --- 169.254.1.12 tcpbench statistics --- 3155178968 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4191.416/4211.632/4221.302/10.593 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 538453104 4307.625 100.00% Conn: 1 Mbps: 4307.625 Peak Mbps: 4307.625 Avg Mbps: 4307.625 2000 539314188 4318.832 100.00% Conn: 1 Mbps: 4318.832 Peak Mbps: 4318.832 Avg Mbps: 4318.832 3000 539686896 4317.495 100.00% Conn: 1 Mbps: 4317.495 Peak Mbps: 4318.832 Avg Mbps: 4317.495 4000 538754412 4310.035 100.00% Conn: 1 Mbps: 4310.035 Peak Mbps: 4318.832 Avg Mbps: 4310.035 5000 538643028 4309.144 100.00% Conn: 1 Mbps: 4309.144 Peak Mbps: 4318.832 Avg Mbps: 4309.144 --- fc00:0:0:1::12 tcpbench statistics --- 3233571768 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4307.625/4312.626/4318.832/4.606 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.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-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.052 ms --- fc00::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-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 788606158 6308.849 100.00% Conn: 1 Mbps: 6308.849 Peak Mbps: 6308.849 Avg Mbps: 6308.849 2000 787670416 6307.671 100.00% Conn: 1 Mbps: 6307.671 Peak Mbps: 6308.849 Avg Mbps: 6307.671 3000 787146960 6297.176 100.00% Conn: 1 Mbps: 6297.176 Peak Mbps: 6308.849 Avg Mbps: 6297.176 4000 787474120 6299.793 100.00% Conn: 1 Mbps: 6299.793 Peak Mbps: 6308.849 Avg Mbps: 6299.793 5000 787441404 6299.531 100.00% Conn: 1 Mbps: 6299.531 Peak Mbps: 6308.849 Avg Mbps: 6299.531 --- 169.254.0.13 tcpbench statistics --- 4725158858 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6297.176/6302.604/6308.849/4.722 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 775195188 6201.562 100.00% Conn: 1 Mbps: 6201.562 Peak Mbps: 6201.562 Avg Mbps: 6201.562 2000 778230192 6232.074 100.00% Conn: 1 Mbps: 6232.074 Peak Mbps: 6232.074 Avg Mbps: 6232.074 3000 775418336 6203.347 100.00% Conn: 1 Mbps: 6203.347 Peak Mbps: 6232.074 Avg Mbps: 6203.347 4000 774699024 6197.592 100.00% Conn: 1 Mbps: 6197.592 Peak Mbps: 6232.074 Avg Mbps: 6197.592 5000 776268432 6210.147 100.00% Conn: 1 Mbps: 6210.147 Peak Mbps: 6232.074 Avg Mbps: 6210.147 --- fc00::13 tcpbench statistics --- 4661736012 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6197.592/6208.944/6232.074/12.257 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.062 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.062/0.062/0.062/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.059 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.059/0.059/0.059/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 1002 276927480 2210.998 100.00% Conn: 1 Mbps: 2210.998 Peak Mbps: 2210.998 Avg Mbps: 2210.998 2001 280490576 2246.171 100.00% Conn: 1 Mbps: 2246.171 Peak Mbps: 2246.171 Avg Mbps: 2246.171 3001 280775592 2248.453 100.00% Conn: 1 Mbps: 2248.453 Peak Mbps: 2248.453 Avg Mbps: 2248.453 4002 284660240 2277.282 100.00% Conn: 1 Mbps: 2277.282 Peak Mbps: 2277.282 Avg Mbps: 2277.282 5001 285103600 2283.112 100.00% Conn: 1 Mbps: 2283.112 Peak Mbps: 2283.112 Avg Mbps: 2283.112 --- 169.254.1.11 tcpbench statistics --- 1693701112 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2210.998/2253.203/2283.112/25.798 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 535842736 4286.742 100.00% Conn: 1 Mbps: 4286.742 Peak Mbps: 4286.742 Avg Mbps: 4286.742 2000 608225928 4865.807 100.00% Conn: 1 Mbps: 4865.807 Peak Mbps: 4865.807 Avg Mbps: 4865.807 3001 599337584 4794.701 100.00% Conn: 1 Mbps: 4794.701 Peak Mbps: 4865.807 Avg Mbps: 4794.701 4001 611317008 4890.536 100.00% Conn: 1 Mbps: 4890.536 Peak Mbps: 4890.536 Avg Mbps: 4890.536 5001 605408776 4848.118 100.00% Conn: 1 Mbps: 4848.118 Peak Mbps: 4890.536 Avg Mbps: 4848.118 --- fc00:0:0:1::11 tcpbench statistics --- 3561984368 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4286.742/4737.181/4890.536/227.409 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.060 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.060/0.060/0.060/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.051 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.051/0.051/0.051/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 784945546 6279.564 100.00% Conn: 1 Mbps: 6279.564 Peak Mbps: 6279.564 Avg Mbps: 6279.564 2000 787015628 6302.427 100.00% Conn: 1 Mbps: 6302.427 Peak Mbps: 6302.427 Avg Mbps: 6302.427 3000 787211924 6297.695 100.00% Conn: 1 Mbps: 6297.695 Peak Mbps: 6302.427 Avg Mbps: 6297.695 4000 786557592 6292.461 100.00% Conn: 1 Mbps: 6292.461 Peak Mbps: 6302.427 Avg Mbps: 6292.461 5000 787048344 6296.387 100.00% Conn: 1 Mbps: 6296.387 Peak Mbps: 6302.427 Avg Mbps: 6296.387 --- 169.254.1.12 tcpbench statistics --- 4719107614 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6279.564/6293.707/6302.427/7.755 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 778372172 6226.977 100.00% Conn: 1 Mbps: 6226.977 Peak Mbps: 6226.977 Avg Mbps: 6226.977 2000 781074744 6254.853 100.00% Conn: 1 Mbps: 6254.853 Peak Mbps: 6254.853 Avg Mbps: 6254.853 3000 780682392 6245.459 100.00% Conn: 1 Mbps: 6245.459 Peak Mbps: 6254.853 Avg Mbps: 6245.459 4000 782186408 6257.491 100.00% Conn: 1 Mbps: 6257.491 Peak Mbps: 6257.491 Avg Mbps: 6257.491 5000 781270920 6250.167 100.00% Conn: 1 Mbps: 6250.167 Peak Mbps: 6257.491 Avg Mbps: 6250.167 --- fc00:0:0:1::12 tcpbench statistics --- 4684759468 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6226.977/6246.990/6257.491/10.817 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.055 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.055/0.055/0.055/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 782602714 6260.822 100.00% Conn: 1 Mbps: 6260.822 Peak Mbps: 6260.822 Avg Mbps: 6260.822 2000 784104012 6279.111 100.00% Conn: 1 Mbps: 6279.111 Peak Mbps: 6279.111 Avg Mbps: 6279.111 3000 783875360 6271.003 100.00% Conn: 1 Mbps: 6271.003 Peak Mbps: 6279.111 Avg Mbps: 6271.003 4000 784300668 6274.405 100.00% Conn: 1 Mbps: 6274.405 Peak Mbps: 6279.111 Avg Mbps: 6274.405 5000 783580916 6268.647 100.00% Conn: 1 Mbps: 6268.647 Peak Mbps: 6279.111 Avg Mbps: 6268.647 --- 169.254.0.13 tcpbench statistics --- 4700834094 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6260.822/6270.798/6279.111/6.104 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 788562452 6308.500 100.00% Conn: 1 Mbps: 6308.500 Peak Mbps: 6308.500 Avg Mbps: 6308.500 2000 786665760 6299.626 100.00% Conn: 1 Mbps: 6299.626 Peak Mbps: 6308.500 Avg Mbps: 6299.626 3000 785979144 6287.833 100.00% Conn: 1 Mbps: 6287.833 Peak Mbps: 6308.500 Avg Mbps: 6287.833 4000 786175320 6289.403 100.00% Conn: 1 Mbps: 6289.403 Peak Mbps: 6308.500 Avg Mbps: 6289.403 5000 787581248 6300.650 100.00% Conn: 1 Mbps: 6300.650 Peak Mbps: 6308.500 Avg Mbps: 6300.650 --- fc00::13 tcpbench statistics --- 4722414388 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6287.833/6297.202/6308.500/7.668 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.83s