START sys/net/pair 2025-03-15T06:35:42Z ==== 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.144 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.144/0.144/0.144/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.210 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.210/0.210/0.210/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 278973120 2231.785 100.00% Conn: 1 Mbps: 2231.785 Peak Mbps: 2231.785 Avg Mbps: 2231.785 2000 315723272 2528.314 100.00% Conn: 1 Mbps: 2528.314 Peak Mbps: 2528.314 Avg Mbps: 2528.314 3000 321057220 2571.029 100.00% Conn: 1 Mbps: 2571.029 Peak Mbps: 2571.029 Avg Mbps: 2571.029 4000 319715968 2557.728 100.00% Conn: 1 Mbps: 2557.728 Peak Mbps: 2571.029 Avg Mbps: 2557.728 5000 325467100 2603.737 100.00% Conn: 1 Mbps: 2603.737 Peak Mbps: 2603.737 Avg Mbps: 2603.737 --- 169.254.1.11 tcpbench statistics --- 1886323040 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2231.785/2498.519/2603.737/135.550 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 327566376 2620.531 100.00% Conn: 1 Mbps: 2620.531 Peak Mbps: 2620.531 Avg Mbps: 2620.531 2000 322463472 2582.290 100.00% Conn: 1 Mbps: 2582.290 Peak Mbps: 2620.531 Avg Mbps: 2582.290 3000 321098168 2568.785 100.00% Conn: 1 Mbps: 2568.785 Peak Mbps: 2620.531 Avg Mbps: 2568.785 4000 318013656 2544.109 100.00% Conn: 1 Mbps: 2544.109 Peak Mbps: 2620.531 Avg Mbps: 2544.109 5000 324667456 2597.340 100.00% Conn: 1 Mbps: 2597.340 Peak Mbps: 2620.531 Avg Mbps: 2597.340 --- fc00:0:0:1::11 tcpbench statistics --- 1943360624 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2544.109/2582.611/2620.531/25.801 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.184 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.184/0.184/0.184/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.202 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.202/0.202/0.202/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 1002 222269744 1774.609 100.00% Conn: 1 Mbps: 1774.609 Peak Mbps: 1774.609 Avg Mbps: 1774.609 2002 236154224 1889.234 100.00% Conn: 1 Mbps: 1889.234 Peak Mbps: 1889.234 Avg Mbps: 1889.234 3003 258588092 2066.638 100.00% Conn: 1 Mbps: 2066.638 Peak Mbps: 2066.638 Avg Mbps: 2066.638 4004 249757008 1998.056 100.00% Conn: 1 Mbps: 1998.056 Peak Mbps: 2066.638 Avg Mbps: 1998.056 5004 259217792 2073.742 100.00% Conn: 1 Mbps: 2073.742 Peak Mbps: 2073.742 Avg Mbps: 2073.742 --- 169.254.1.12 tcpbench statistics --- 1463578620 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 1774.609/1960.456/2073.742/114.135 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 238504304 1904.226 100.00% Conn: 1 Mbps: 1904.226 Peak Mbps: 1904.226 Avg Mbps: 1904.226 2003 221275812 1768.438 100.00% Conn: 1 Mbps: 1768.438 Peak Mbps: 1904.226 Avg Mbps: 1768.438 3003 232800644 1862.405 100.00% Conn: 1 Mbps: 1862.405 Peak Mbps: 1904.226 Avg Mbps: 1862.405 4004 249874124 1998.993 100.00% Conn: 1 Mbps: 1998.993 Peak Mbps: 1998.993 Avg Mbps: 1998.993 5005 242532396 1938.321 100.00% Conn: 1 Mbps: 1938.321 Peak Mbps: 1998.993 Avg Mbps: 1938.321 --- fc00:0:0:1::12 tcpbench statistics --- 1411922964 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1768.438/1894.477/1998.993/77.273 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.189 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.189/0.189/0.189/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.150 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.150/0.150/0.150/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 1001 514139524 4109.007 100.00% Conn: 1 Mbps: 4109.007 Peak Mbps: 4109.007 Avg Mbps: 4109.007 2001 526334212 4214.889 100.00% Conn: 1 Mbps: 4214.889 Peak Mbps: 4214.889 Avg Mbps: 4214.889 3001 495715284 3965.722 100.00% Conn: 1 Mbps: 3965.722 Peak Mbps: 4214.889 Avg Mbps: 3965.722 4001 533954588 4275.913 100.00% Conn: 1 Mbps: 4275.913 Peak Mbps: 4275.913 Avg Mbps: 4275.913 5001 595842340 4766.739 100.00% Conn: 1 Mbps: 4766.739 Peak Mbps: 4766.739 Avg Mbps: 4766.739 --- 169.254.0.13 tcpbench statistics --- 3235517648 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3965.722/4266.454/4766.739/271.390 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 497333448 3978.668 100.00% Conn: 1 Mbps: 3978.668 Peak Mbps: 3978.668 Avg Mbps: 3978.668 2001 515590464 4124.724 100.00% Conn: 1 Mbps: 4124.724 Peak Mbps: 4124.724 Avg Mbps: 4124.724 3001 501449512 4011.596 100.00% Conn: 1 Mbps: 4011.596 Peak Mbps: 4124.724 Avg Mbps: 4011.596 4001 521470568 4171.765 100.00% Conn: 1 Mbps: 4171.765 Peak Mbps: 4171.765 Avg Mbps: 4171.765 5002 538899432 4311.195 100.00% Conn: 1 Mbps: 4311.195 Peak Mbps: 4311.195 Avg Mbps: 4311.195 --- fc00::13 tcpbench statistics --- 3135547016 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3978.668/4119.589/4311.195/119.149 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.114 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.114/0.114/0.114/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.079 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.079/0.079/0.079/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 231177976 1845.732 100.00% Conn: 1 Mbps: 1845.732 Peak Mbps: 1845.732 Avg Mbps: 1845.732 2003 233065232 1862.659 100.00% Conn: 1 Mbps: 1862.659 Peak Mbps: 1862.659 Avg Mbps: 1862.659 3003 217728632 1741.829 100.00% Conn: 1 Mbps: 1741.829 Peak Mbps: 1862.659 Avg Mbps: 1741.829 4003 227850128 1822.801 100.00% Conn: 1 Mbps: 1822.801 Peak Mbps: 1862.659 Avg Mbps: 1822.801 5003 231264544 1850.116 100.00% Conn: 1 Mbps: 1850.116 Peak Mbps: 1862.659 Avg Mbps: 1850.116 --- 169.254.1.11 tcpbench statistics --- 1389220632 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1741.829/1824.628/1862.659/43.360 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 1002 230128640 1837.354 100.00% Conn: 1 Mbps: 1837.354 Peak Mbps: 1837.354 Avg Mbps: 1837.354 2004 222843572 1780.968 100.00% Conn: 1 Mbps: 1780.968 Peak Mbps: 1837.354 Avg Mbps: 1780.968 3005 213214668 1704.013 100.00% Conn: 1 Mbps: 1704.013 Peak Mbps: 1837.354 Avg Mbps: 1704.013 4005 226754560 1815.852 100.00% Conn: 1 Mbps: 1815.852 Peak Mbps: 1837.354 Avg Mbps: 1815.852 5005 235873148 1886.985 100.00% Conn: 1 Mbps: 1886.985 Peak Mbps: 1886.985 Avg Mbps: 1886.985 --- fc00:0:0:1::11 tcpbench statistics --- 1346214740 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1704.013/1805.035/1886.985/61.093 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.130 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.130/0.130/0.130/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.096 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.096/0.096/0.096/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 315913112 2527.305 100.00% Conn: 1 Mbps: 2527.305 Peak Mbps: 2527.305 Avg Mbps: 2527.305 2000 317861240 2545.435 100.00% Conn: 1 Mbps: 2545.435 Peak Mbps: 2545.435 Avg Mbps: 2545.435 3000 316543720 2532.350 100.00% Conn: 1 Mbps: 2532.350 Peak Mbps: 2545.435 Avg Mbps: 2532.350 4000 327181904 2617.455 100.00% Conn: 1 Mbps: 2617.455 Peak Mbps: 2617.455 Avg Mbps: 2617.455 5000 317853544 2542.828 100.00% Conn: 1 Mbps: 2542.828 Peak Mbps: 2617.455 Avg Mbps: 2542.828 --- 169.254.1.12 tcpbench statistics --- 1916786472 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2527.305/2553.075/2617.455/32.869 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 313226088 2505.809 100.00% Conn: 1 Mbps: 2505.809 Peak Mbps: 2505.809 Avg Mbps: 2505.809 2000 319701360 2560.171 100.00% Conn: 1 Mbps: 2560.171 Peak Mbps: 2560.171 Avg Mbps: 2560.171 3000 322118880 2576.951 100.00% Conn: 1 Mbps: 2576.951 Peak Mbps: 2576.951 Avg Mbps: 2576.951 4000 313507616 2508.061 100.00% Conn: 1 Mbps: 2508.061 Peak Mbps: 2576.951 Avg Mbps: 2508.061 5000 313671624 2509.373 100.00% Conn: 1 Mbps: 2509.373 Peak Mbps: 2576.951 Avg Mbps: 2509.373 --- fc00:0:0:1::12 tcpbench statistics --- 1897306628 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2505.809/2532.073/2576.951/30.283 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.135 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.135/0.135/0.135/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.144 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.144/0.144/0.144/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 482484282 3859.874 100.00% Conn: 1 Mbps: 3859.874 Peak Mbps: 3859.874 Avg Mbps: 3859.874 2000 498591828 3992.727 100.00% Conn: 1 Mbps: 3992.727 Peak Mbps: 3992.727 Avg Mbps: 3992.727 3000 497806656 3982.453 100.00% Conn: 1 Mbps: 3982.453 Peak Mbps: 3992.727 Avg Mbps: 3982.453 4000 500096776 4000.774 100.00% Conn: 1 Mbps: 4000.774 Peak Mbps: 4000.774 Avg Mbps: 4000.774 5000 517112828 4136.903 100.00% Conn: 1 Mbps: 4136.903 Peak Mbps: 4136.903 Avg Mbps: 4136.903 --- 169.254.0.13 tcpbench statistics --- 3021184170 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3859.874/3994.546/4136.903/87.852 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 503258252 4026.066 100.00% Conn: 1 Mbps: 4026.066 Peak Mbps: 4026.066 Avg Mbps: 4026.066 2000 494101952 3956.772 100.00% Conn: 1 Mbps: 3956.772 Peak Mbps: 4026.066 Avg Mbps: 3956.772 3000 493546120 3948.369 100.00% Conn: 1 Mbps: 3948.369 Peak Mbps: 4026.066 Avg Mbps: 3948.369 4000 525915160 4207.321 100.00% Conn: 1 Mbps: 4207.321 Peak Mbps: 4207.321 Avg Mbps: 4207.321 5000 520802844 4166.423 100.00% Conn: 1 Mbps: 4166.423 Peak Mbps: 4207.321 Avg Mbps: 4166.423 --- fc00::13 tcpbench statistics --- 3028097024 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3948.369/4060.990/4207.321/107.045 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.184 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.184/0.184/0.184/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.139 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.139/0.139/0.139/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 208848088 1667.450 100.00% Conn: 1 Mbps: 1667.450 Peak Mbps: 1667.450 Avg Mbps: 1667.450 2001 244561800 1960.415 100.00% Conn: 1 Mbps: 1960.415 Peak Mbps: 1960.415 Avg Mbps: 1960.415 3001 214149104 1713.193 100.00% Conn: 1 Mbps: 1713.193 Peak Mbps: 1960.415 Avg Mbps: 1713.193 4001 225473024 1805.590 100.00% Conn: 1 Mbps: 1805.590 Peak Mbps: 1960.415 Avg Mbps: 1805.590 5002 214892504 1717.423 100.00% Conn: 1 Mbps: 1717.423 Peak Mbps: 1960.415 Avg Mbps: 1717.423 --- 169.254.1.11 tcpbench statistics --- 1321143656 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 1667.450/1772.814/1960.415/103.916 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 1001 400920904 3204.163 100.00% Conn: 1 Mbps: 3204.163 Peak Mbps: 3204.163 Avg Mbps: 3204.163 2001 439684920 3517.479 100.00% Conn: 1 Mbps: 3517.479 Peak Mbps: 3517.479 Avg Mbps: 3517.479 3001 434965816 3479.727 100.00% Conn: 1 Mbps: 3479.727 Peak Mbps: 3517.479 Avg Mbps: 3479.727 4002 434500888 3476.007 100.00% Conn: 1 Mbps: 3476.007 Peak Mbps: 3517.479 Avg Mbps: 3476.007 5002 426439344 3411.515 100.00% Conn: 1 Mbps: 3411.515 Peak Mbps: 3517.479 Avg Mbps: 3411.515 --- fc00:0:0:1::11 tcpbench statistics --- 2559810752 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 3204.163/3417.778/3517.479/112.106 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.092 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.092/0.092/0.092/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.099 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.099/0.099/0.099/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 479485366 3835.883 100.00% Conn: 1 Mbps: 3835.883 Peak Mbps: 3835.883 Avg Mbps: 3835.883 2000 511923610 4099.488 100.00% Conn: 1 Mbps: 4099.488 Peak Mbps: 4099.488 Avg Mbps: 4099.488 3000 518469698 4147.758 100.00% Conn: 1 Mbps: 4147.758 Peak Mbps: 4147.758 Avg Mbps: 4147.758 4000 509028244 4072.226 100.00% Conn: 1 Mbps: 4072.226 Peak Mbps: 4147.758 Avg Mbps: 4072.226 5000 516176690 4129.414 100.00% Conn: 1 Mbps: 4129.414 Peak Mbps: 4147.758 Avg Mbps: 4129.414 --- 169.254.1.12 tcpbench statistics --- 3053272748 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3835.883/4056.954/4147.758/113.499 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 501870052 4014.960 100.00% Conn: 1 Mbps: 4014.960 Peak Mbps: 4014.960 Avg Mbps: 4014.960 2000 498679392 3993.429 100.00% Conn: 1 Mbps: 3993.429 Peak Mbps: 4014.960 Avg Mbps: 3993.429 3000 500510368 4004.083 100.00% Conn: 1 Mbps: 4004.083 Peak Mbps: 4014.960 Avg Mbps: 4004.083 4000 498188952 3985.512 100.00% Conn: 1 Mbps: 3985.512 Peak Mbps: 4014.960 Avg Mbps: 3985.512 5000 505894044 4047.152 100.00% Conn: 1 Mbps: 4047.152 Peak Mbps: 4047.152 Avg Mbps: 4047.152 --- fc00:0:0:1::12 tcpbench statistics --- 3010557576 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3985.512/4009.027/4047.152/21.492 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.120 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.120/0.120/0.120/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.085 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.085/0.085/0.085/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 523019342 4184.155 100.00% Conn: 1 Mbps: 4184.155 Peak Mbps: 4184.155 Avg Mbps: 4184.155 2000 525238998 4206.118 100.00% Conn: 1 Mbps: 4206.118 Peak Mbps: 4206.118 Avg Mbps: 4206.118 3000 530097348 4240.779 100.00% Conn: 1 Mbps: 4240.779 Peak Mbps: 4240.779 Avg Mbps: 4240.779 4000 528772338 4230.179 100.00% Conn: 1 Mbps: 4230.179 Peak Mbps: 4240.779 Avg Mbps: 4230.179 5000 535380982 4283.048 100.00% Conn: 1 Mbps: 4283.048 Peak Mbps: 4283.048 Avg Mbps: 4283.048 --- 169.254.0.13 tcpbench statistics --- 3182650584 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4184.155/4228.856/4283.048/33.454 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 549983396 4399.867 100.00% Conn: 1 Mbps: 4399.867 Peak Mbps: 4399.867 Avg Mbps: 4399.867 2000 533927408 4275.695 100.00% Conn: 1 Mbps: 4275.695 Peak Mbps: 4399.867 Avg Mbps: 4275.695 3000 522645560 4181.164 100.00% Conn: 1 Mbps: 4181.164 Peak Mbps: 4399.867 Avg Mbps: 4181.164 4000 518395080 4147.161 100.00% Conn: 1 Mbps: 4147.161 Peak Mbps: 4399.867 Avg Mbps: 4147.161 5000 518395080 4147.161 100.00% Conn: 1 Mbps: 4147.161 Peak Mbps: 4399.867 Avg Mbps: 4147.161 --- fc00::13 tcpbench statistics --- 3163212924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4147.161/4230.210/4399.867/97.008 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 1m54.18s