START sys/net/pair 2025-03-05T04:57:35Z ==== 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.060 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.060/0.060/0.060/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 522914816 4183.319 100.00% Conn: 1 Mbps: 4183.319 Peak Mbps: 4183.319 Avg Mbps: 4183.319 2000 522255132 4182.223 100.00% Conn: 1 Mbps: 4182.223 Peak Mbps: 4183.319 Avg Mbps: 4182.223 3000 522390248 4179.122 100.00% Conn: 1 Mbps: 4179.122 Peak Mbps: 4183.319 Avg Mbps: 4179.122 4000 522255132 4178.041 100.00% Conn: 1 Mbps: 4178.041 Peak Mbps: 4183.319 Avg Mbps: 4178.041 5000 522318716 4178.550 100.00% Conn: 1 Mbps: 4178.550 Peak Mbps: 4183.319 Avg Mbps: 4178.550 --- 169.254.1.11 tcpbench statistics --- 3134246112 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4178.041/4180.251/4183.319/2.114 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 517944168 4143.553 100.00% Conn: 1 Mbps: 4143.553 Peak Mbps: 4143.553 Avg Mbps: 4143.553 2000 516865960 4139.067 100.00% Conn: 1 Mbps: 4139.067 Peak Mbps: 4143.553 Avg Mbps: 4139.067 3000 517967952 4143.744 100.00% Conn: 1 Mbps: 4143.744 Peak Mbps: 4143.744 Avg Mbps: 4143.744 4000 518221648 4145.773 100.00% Conn: 1 Mbps: 4145.773 Peak Mbps: 4145.773 Avg Mbps: 4145.773 5000 517571552 4140.572 100.00% Conn: 1 Mbps: 4140.572 Peak Mbps: 4145.773 Avg Mbps: 4140.572 --- fc00:0:0:1::11 tcpbench statistics --- 3106681936 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4139.067/4142.542/4145.773/2.403 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.141 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.141/0.141/0.141/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1001 274032768 2190.072 100.00% Conn: 1 Mbps: 2190.072 Peak Mbps: 2190.072 Avg Mbps: 2190.072 2002 288564888 2308.519 100.00% Conn: 1 Mbps: 2308.519 Peak Mbps: 2308.519 Avg Mbps: 2308.519 3002 287562872 2300.503 100.00% Conn: 1 Mbps: 2300.503 Peak Mbps: 2308.519 Avg Mbps: 2300.503 4003 291782240 2331.926 100.00% Conn: 1 Mbps: 2331.926 Peak Mbps: 2331.926 Avg Mbps: 2331.926 5005 289827496 2316.304 100.00% Conn: 1 Mbps: 2316.304 Peak Mbps: 2331.926 Avg Mbps: 2316.304 --- 169.254.1.12 tcpbench statistics --- 1720247720 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2190.072/2289.465/2331.926/50.768 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 256010888 2046.041 100.00% Conn: 1 Mbps: 2046.041 Peak Mbps: 2046.041 Avg Mbps: 2046.041 2002 272680100 2181.441 100.00% Conn: 1 Mbps: 2181.441 Peak Mbps: 2181.441 Avg Mbps: 2181.441 3003 274427760 2195.422 100.00% Conn: 1 Mbps: 2195.422 Peak Mbps: 2195.422 Avg Mbps: 2195.422 4003 275184120 2201.473 100.00% Conn: 1 Mbps: 2201.473 Peak Mbps: 2201.473 Avg Mbps: 2201.473 5004 278216416 2225.731 100.00% Conn: 1 Mbps: 2225.731 Peak Mbps: 2225.731 Avg Mbps: 2225.731 --- fc00:0:0:1::12 tcpbench statistics --- 1632800024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2046.041/2170.022/2225.731/63.623 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.066 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.066/0.066/0.066/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.088 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.088/0.088/0.088/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 548046252 4384.370 100.00% Conn: 1 Mbps: 4384.370 Peak Mbps: 4384.370 Avg Mbps: 4384.370 2000 551829640 4419.056 100.00% Conn: 1 Mbps: 4419.056 Peak Mbps: 4419.056 Avg Mbps: 4419.056 3000 549166920 4393.335 100.00% Conn: 1 Mbps: 4393.335 Peak Mbps: 4419.056 Avg Mbps: 4393.335 4000 536307056 4290.456 100.00% Conn: 1 Mbps: 4290.456 Peak Mbps: 4419.056 Avg Mbps: 4290.456 5000 536402432 4291.219 100.00% Conn: 1 Mbps: 4291.219 Peak Mbps: 4419.056 Avg Mbps: 4291.219 --- 169.254.0.13 tcpbench statistics --- 3245985924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4290.456/4355.687/4419.056/54.161 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 601652288 4813.218 100.00% Conn: 1 Mbps: 4813.218 Peak Mbps: 4813.218 Avg Mbps: 4813.218 2000 640013936 5120.111 100.00% Conn: 1 Mbps: 5120.111 Peak Mbps: 5120.111 Avg Mbps: 5120.111 3000 642171392 5137.371 100.00% Conn: 1 Mbps: 5137.371 Peak Mbps: 5137.371 Avg Mbps: 5137.371 4000 636653504 5093.228 100.00% Conn: 1 Mbps: 5093.228 Peak Mbps: 5137.371 Avg Mbps: 5093.228 5000 637664000 5106.418 100.00% Conn: 1 Mbps: 5106.418 Peak Mbps: 5137.371 Avg Mbps: 5106.418 --- fc00::13 tcpbench statistics --- 3791868376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4813.218/5054.069/5137.371/121.313 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.049 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.049/0.049/0.049/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 1001 274200832 2191.415 100.00% Conn: 1 Mbps: 2191.415 Peak Mbps: 2191.415 Avg Mbps: 2191.415 2001 285350672 2282.805 100.00% Conn: 1 Mbps: 2282.805 Peak Mbps: 2282.805 Avg Mbps: 2282.805 3001 285591128 2287.016 100.00% Conn: 1 Mbps: 2287.016 Peak Mbps: 2287.016 Avg Mbps: 2287.016 4001 284309208 2274.474 100.00% Conn: 1 Mbps: 2274.474 Peak Mbps: 2287.016 Avg Mbps: 2274.474 5001 284388456 2277.385 100.00% Conn: 1 Mbps: 2277.385 Peak Mbps: 2287.016 Avg Mbps: 2277.385 --- 169.254.1.11 tcpbench statistics --- 1699337152 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2191.415/2262.619/2287.016/35.864 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 257966780 2061.673 100.00% Conn: 1 Mbps: 2061.673 Peak Mbps: 2061.673 Avg Mbps: 2061.673 2000 270268604 2164.313 100.00% Conn: 1 Mbps: 2164.313 Peak Mbps: 2164.313 Avg Mbps: 2164.313 3000 272238920 2177.911 100.00% Conn: 1 Mbps: 2177.911 Peak Mbps: 2177.911 Avg Mbps: 2177.911 4000 270648000 2167.351 100.00% Conn: 1 Mbps: 2167.351 Peak Mbps: 2177.911 Avg Mbps: 2167.351 5002 271481768 2169.684 100.00% Conn: 1 Mbps: 2169.684 Peak Mbps: 2177.911 Avg Mbps: 2169.684 --- fc00:0:0:1::11 tcpbench statistics --- 1618684708 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2061.673/2148.187/2177.911/43.492 Mbps ==== run-ping-2-2 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.043 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.043/0.043/0.043/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.056 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.056/0.056/0.056/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 531091648 4248.733 100.00% Conn: 1 Mbps: 4248.733 Peak Mbps: 4248.733 Avg Mbps: 4248.733 2000 531106128 4253.102 100.00% Conn: 1 Mbps: 4253.102 Peak Mbps: 4253.102 Avg Mbps: 4253.102 3000 531204592 4253.891 100.00% Conn: 1 Mbps: 4253.891 Peak Mbps: 4253.891 Avg Mbps: 4253.891 4000 530920784 4247.366 100.00% Conn: 1 Mbps: 4247.366 Peak Mbps: 4253.891 Avg Mbps: 4247.366 5000 531333464 4250.668 100.00% Conn: 1 Mbps: 4250.668 Peak Mbps: 4253.891 Avg Mbps: 4250.668 --- 169.254.1.12 tcpbench statistics --- 3186809080 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4247.366/4250.752/4253.891/2.487 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 520704492 4165.636 100.00% Conn: 1 Mbps: 4165.636 Peak Mbps: 4165.636 Avg Mbps: 4165.636 2000 521701236 4177.788 100.00% Conn: 1 Mbps: 4177.788 Peak Mbps: 4177.788 Avg Mbps: 4177.788 3000 521385648 4171.085 100.00% Conn: 1 Mbps: 4171.085 Peak Mbps: 4177.788 Avg Mbps: 4171.085 4000 521357088 4170.857 100.00% Conn: 1 Mbps: 4170.857 Peak Mbps: 4177.788 Avg Mbps: 4170.857 5000 521322816 4170.583 100.00% Conn: 1 Mbps: 4170.583 Peak Mbps: 4177.788 Avg Mbps: 4170.583 --- fc00:0:0:1::12 tcpbench statistics --- 3127332852 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4165.636/4171.190/4177.788/3.870 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 787802086 6302.417 100.00% Conn: 1 Mbps: 6302.417 Peak Mbps: 6302.417 Avg Mbps: 6302.417 2000 787048344 6302.689 100.00% Conn: 1 Mbps: 6302.689 Peak Mbps: 6302.689 Avg Mbps: 6302.689 3000 788487860 6307.903 100.00% Conn: 1 Mbps: 6307.903 Peak Mbps: 6307.903 Avg Mbps: 6307.903 4000 788095280 6304.762 100.00% Conn: 1 Mbps: 6304.762 Peak Mbps: 6307.903 Avg Mbps: 6304.762 5000 788585996 6308.688 100.00% Conn: 1 Mbps: 6308.688 Peak Mbps: 6308.688 Avg Mbps: 6308.688 --- 169.254.0.13 tcpbench statistics --- 4728736426 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6302.417/6305.292/6308.688/2.595 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 775632228 6205.058 100.00% Conn: 1 Mbps: 6205.058 Peak Mbps: 6205.058 Avg Mbps: 6205.058 2000 774895200 6205.367 100.00% Conn: 1 Mbps: 6205.367 Peak Mbps: 6205.367 Avg Mbps: 6205.367 3000 774960592 6199.685 100.00% Conn: 1 Mbps: 6199.685 Peak Mbps: 6205.367 Avg Mbps: 6199.685 4000 775418336 6203.347 100.00% Conn: 1 Mbps: 6203.347 Peak Mbps: 6205.367 Avg Mbps: 6203.347 5000 774862504 6198.900 100.00% Conn: 1 Mbps: 6198.900 Peak Mbps: 6205.367 Avg Mbps: 6198.900 --- fc00::13 tcpbench statistics --- 4650402492 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6198.900/6202.471/6205.367/2.697 Mbps ==== run-ping-3-1 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.061 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.061/0.061/0.061/0.000 ms ==== run-ping6-3-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.058 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.058/0.058/0.058/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 272158824 2175.095 100.00% Conn: 1 Mbps: 2175.095 Peak Mbps: 2175.095 Avg Mbps: 2175.095 2000 282801568 2264.677 100.00% Conn: 1 Mbps: 2264.677 Peak Mbps: 2264.677 Avg Mbps: 2264.677 3001 284265336 2274.123 100.00% Conn: 1 Mbps: 2274.123 Peak Mbps: 2274.123 Avg Mbps: 2274.123 4002 287806136 2300.149 100.00% Conn: 1 Mbps: 2300.149 Peak Mbps: 2300.149 Avg Mbps: 2300.149 5003 285130000 2281.040 100.00% Conn: 1 Mbps: 2281.040 Peak Mbps: 2300.149 Avg Mbps: 2281.040 --- 169.254.1.11 tcpbench statistics --- 1697847176 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2175.095/2259.017/2300.149/43.543 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 540074096 4320.593 100.00% Conn: 1 Mbps: 4320.593 Peak Mbps: 4320.593 Avg Mbps: 4320.593 2000 610110240 4880.882 100.00% Conn: 1 Mbps: 4880.882 Peak Mbps: 4880.882 Avg Mbps: 4880.882 3000 603678952 4829.432 100.00% Conn: 1 Mbps: 4829.432 Peak Mbps: 4880.882 Avg Mbps: 4829.432 4000 605789920 4851.171 100.00% Conn: 1 Mbps: 4851.171 Peak Mbps: 4880.882 Avg Mbps: 4851.171 5001 611646800 4893.174 100.00% Conn: 1 Mbps: 4893.174 Peak Mbps: 4893.174 Avg Mbps: 4893.174 --- fc00:0:0:1::11 tcpbench statistics --- 3574057752 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4320.593/4755.050/4893.174/218.374 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.058 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.058/0.058/0.058/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.048 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.048/0.048/0.048/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 788151986 6305.216 100.00% Conn: 1 Mbps: 6305.216 Peak Mbps: 6305.216 Avg Mbps: 6305.216 2000 787997576 6310.291 100.00% Conn: 1 Mbps: 6310.291 Peak Mbps: 6310.291 Avg Mbps: 6310.291 3000 789633376 6317.067 100.00% Conn: 1 Mbps: 6317.067 Peak Mbps: 6317.067 Avg Mbps: 6317.067 4000 790565782 6324.526 100.00% Conn: 1 Mbps: 6324.526 Peak Mbps: 6324.526 Avg Mbps: 6324.526 5000 790418560 6323.348 100.00% Conn: 1 Mbps: 6323.348 Peak Mbps: 6324.526 Avg Mbps: 6323.348 --- 169.254.1.12 tcpbench statistics --- 4732245724 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6305.216/6316.090/6324.526/7.439 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 770032748 6160.262 100.00% Conn: 1 Mbps: 6160.262 Peak Mbps: 6160.262 Avg Mbps: 6160.262 2000 763124640 6111.108 100.00% Conn: 1 Mbps: 6111.108 Peak Mbps: 6160.262 Avg Mbps: 6111.108 3000 771331336 6170.651 100.00% Conn: 1 Mbps: 6170.651 Peak Mbps: 6170.651 Avg Mbps: 6170.651 4000 771756384 6174.051 100.00% Conn: 1 Mbps: 6174.051 Peak Mbps: 6174.051 Avg Mbps: 6174.051 5000 771985256 6175.882 100.00% Conn: 1 Mbps: 6175.882 Peak Mbps: 6175.882 Avg Mbps: 6175.882 --- fc00:0:0:1::12 tcpbench statistics --- 4618776996 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6111.108/6158.391/6175.882/24.251 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.058 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.058/0.058/0.058/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 792009878 6336.079 100.00% Conn: 1 Mbps: 6336.079 Peak Mbps: 6336.079 Avg Mbps: 6336.079 2000 792087076 6343.040 100.00% Conn: 1 Mbps: 6343.040 Peak Mbps: 6343.040 Avg Mbps: 6343.040 3000 793330284 6346.642 100.00% Conn: 1 Mbps: 6346.642 Peak Mbps: 6346.642 Avg Mbps: 6346.642 4000 792283372 6338.267 100.00% Conn: 1 Mbps: 6338.267 Peak Mbps: 6346.642 Avg Mbps: 6338.267 5000 791956212 6335.650 100.00% Conn: 1 Mbps: 6335.650 Peak Mbps: 6346.642 Avg Mbps: 6335.650 --- 169.254.0.13 tcpbench statistics --- 4753492170 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6335.650/6339.936/6346.642/4.258 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 786606812 6292.854 100.00% Conn: 1 Mbps: 6292.854 Peak Mbps: 6292.854 Avg Mbps: 6292.854 2000 782840328 6268.992 100.00% Conn: 1 Mbps: 6268.992 Peak Mbps: 6292.854 Avg Mbps: 6268.992 3000 786469584 6291.757 100.00% Conn: 1 Mbps: 6291.757 Peak Mbps: 6292.854 Avg Mbps: 6291.757 4000 786534976 6292.280 100.00% Conn: 1 Mbps: 6292.280 Peak Mbps: 6292.854 Avg Mbps: 6292.280 5000 786600368 6292.803 100.00% Conn: 1 Mbps: 6292.803 Peak Mbps: 6292.854 Avg Mbps: 6292.803 --- fc00::13 tcpbench statistics --- 4715685132 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6268.992/6287.737/6292.854/9.381 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.88s