START sys/net/pair 2025-03-13T02:35:21Z ==== 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.038 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.038/0.038/0.038/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 934168180 7473.345 100.00% Conn: 1 Mbps: 7473.345 Peak Mbps: 7473.345 Avg Mbps: 7473.345 2000 935423964 7490.883 100.00% Conn: 1 Mbps: 7490.883 Peak Mbps: 7490.883 Avg Mbps: 7490.883 3000 942815604 7542.525 100.00% Conn: 1 Mbps: 7542.525 Peak Mbps: 7542.525 Avg Mbps: 7542.525 4000 940113284 7520.906 100.00% Conn: 1 Mbps: 7520.906 Peak Mbps: 7542.525 Avg Mbps: 7520.906 5000 940280192 7522.242 100.00% Conn: 1 Mbps: 7522.242 Peak Mbps: 7542.525 Avg Mbps: 7522.242 --- 169.254.1.11 tcpbench statistics --- 5634686912 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7473.345/7509.980/7542.525/24.640 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 935400936 7483.207 100.00% Conn: 1 Mbps: 7483.207 Peak Mbps: 7483.207 Avg Mbps: 7483.207 2000 936011392 7495.587 100.00% Conn: 1 Mbps: 7495.587 Peak Mbps: 7495.587 Avg Mbps: 7495.587 3000 936399864 7491.199 100.00% Conn: 1 Mbps: 7491.199 Peak Mbps: 7495.587 Avg Mbps: 7491.199 4000 935718056 7485.744 100.00% Conn: 1 Mbps: 7485.744 Peak Mbps: 7495.587 Avg Mbps: 7485.744 5000 936447432 7491.579 100.00% Conn: 1 Mbps: 7491.579 Peak Mbps: 7495.587 Avg Mbps: 7491.579 --- fc00:0:0:1::11 tcpbench statistics --- 5616060424 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7483.207/7489.463/7495.587/4.426 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.061 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.061/0.061/0.061/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.124 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.124/0.124/0.124/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 1000 372149848 2977.199 100.00% Conn: 1 Mbps: 2977.199 Peak Mbps: 2977.199 Avg Mbps: 2977.199 2000 380633088 3048.113 100.00% Conn: 1 Mbps: 3048.113 Peak Mbps: 3048.113 Avg Mbps: 3048.113 3001 381157376 3049.259 100.00% Conn: 1 Mbps: 3049.259 Peak Mbps: 3049.259 Avg Mbps: 3049.259 4001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3055.550 Avg Mbps: 3055.550 5002 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3089.105 Avg Mbps: 3089.105 --- 169.254.1.12 tcpbench statistics --- 2285538904 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2977.199/3043.845/3089.105/36.537 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 352011676 2813.280 100.00% Conn: 1 Mbps: 2813.280 Peak Mbps: 2813.280 Avg Mbps: 2813.280 2001 360185856 2881.487 100.00% Conn: 1 Mbps: 2881.487 Peak Mbps: 2881.487 Avg Mbps: 2881.487 3001 362283008 2901.165 100.00% Conn: 1 Mbps: 2901.165 Peak Mbps: 2901.165 Avg Mbps: 2901.165 4002 366215168 2929.721 100.00% Conn: 1 Mbps: 2929.721 Peak Mbps: 2929.721 Avg Mbps: 2929.721 5002 368312320 2949.448 100.00% Conn: 1 Mbps: 2949.448 Peak Mbps: 2949.448 Avg Mbps: 2949.448 --- fc00:0:0:1::12 tcpbench statistics --- 2171815324 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2813.280/2895.020/2949.448/47.051 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.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-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.062 ms --- fc00::13 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-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 768682312 6149.458 100.00% Conn: 1 Mbps: 6149.458 Peak Mbps: 6149.458 Avg Mbps: 6149.458 2000 810282984 6488.753 100.00% Conn: 1 Mbps: 6488.753 Peak Mbps: 6488.753 Avg Mbps: 6488.753 3000 810195904 6481.567 100.00% Conn: 1 Mbps: 6481.567 Peak Mbps: 6488.753 Avg Mbps: 6481.567 4000 810377800 6483.022 100.00% Conn: 1 Mbps: 6483.022 Peak Mbps: 6488.753 Avg Mbps: 6483.022 5001 813724328 6509.795 100.00% Conn: 1 Mbps: 6509.795 Peak Mbps: 6509.795 Avg Mbps: 6509.795 --- 169.254.0.13 tcpbench statistics --- 4829475240 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6149.458/6422.519/6509.795/136.904 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 710246776 5681.974 100.00% Conn: 1 Mbps: 5681.974 Peak Mbps: 5681.974 Avg Mbps: 5681.974 2001 749838168 5998.705 100.00% Conn: 1 Mbps: 5998.705 Peak Mbps: 5998.705 Avg Mbps: 5998.705 3001 759676816 6077.415 100.00% Conn: 1 Mbps: 6077.415 Peak Mbps: 6077.415 Avg Mbps: 6077.415 4001 759653976 6077.232 100.00% Conn: 1 Mbps: 6077.232 Peak Mbps: 6077.415 Avg Mbps: 6077.232 5001 760320024 6088.649 100.00% Conn: 1 Mbps: 6088.649 Peak Mbps: 6088.649 Avg Mbps: 6088.649 --- fc00::13 tcpbench statistics --- 4498612368 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5681.974/5984.795/6088.649/154.792 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.041 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.041/0.041/0.041/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.049 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.049/0.049/0.049/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 372776816 2979.235 100.00% Conn: 1 Mbps: 2979.235 Peak Mbps: 2979.235 Avg Mbps: 2979.235 2001 380487368 3043.899 100.00% Conn: 1 Mbps: 3043.899 Peak Mbps: 3043.899 Avg Mbps: 3043.899 3001 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 4002 381419520 3051.356 100.00% Conn: 1 Mbps: 3051.356 Peak Mbps: 3068.133 Avg Mbps: 3051.356 5002 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3068.133 Avg Mbps: 3057.648 --- 169.254.1.11 tcpbench statistics --- 2284185144 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2979.235/3040.054/3068.133/31.431 Mbps ==== run-tcpbench6-2-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1000 354404404 2835.235 100.00% Conn: 1 Mbps: 2835.235 Peak Mbps: 2835.235 Avg Mbps: 2835.235 2001 361496576 2891.973 100.00% Conn: 1 Mbps: 2891.973 Peak Mbps: 2891.973 Avg Mbps: 2891.973 3001 362729848 2901.839 100.00% Conn: 1 Mbps: 2901.839 Peak Mbps: 2901.839 Avg Mbps: 2901.839 4002 364380160 2915.041 100.00% Conn: 1 Mbps: 2915.041 Peak Mbps: 2915.041 Avg Mbps: 2915.041 5002 362283008 2898.264 100.00% Conn: 1 Mbps: 2898.264 Peak Mbps: 2915.041 Avg Mbps: 2898.264 --- fc00:0:0:1::11 tcpbench statistics --- 2167839148 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2835.235/2888.470/2915.041/27.665 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.035 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.035/0.035/0.035/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.043 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.043/0.043/0.043/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 919998384 7359.987 100.00% Conn: 1 Mbps: 7359.987 Peak Mbps: 7359.987 Avg Mbps: 7359.987 2000 920471880 7371.146 100.00% Conn: 1 Mbps: 7371.146 Peak Mbps: 7371.146 Avg Mbps: 7371.146 3000 920733968 7365.872 100.00% Conn: 1 Mbps: 7365.872 Peak Mbps: 7371.146 Avg Mbps: 7365.872 4000 919975216 7359.802 100.00% Conn: 1 Mbps: 7359.802 Peak Mbps: 7371.146 Avg Mbps: 7359.802 5000 921059768 7368.478 100.00% Conn: 1 Mbps: 7368.478 Peak Mbps: 7371.146 Avg Mbps: 7368.478 --- 169.254.1.12 tcpbench statistics --- 5523511840 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7359.802/7365.057/7371.146/4.534 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 929266716 7434.134 100.00% Conn: 1 Mbps: 7434.134 Peak Mbps: 7434.134 Avg Mbps: 7434.134 2000 928398492 7434.623 100.00% Conn: 1 Mbps: 7434.623 Peak Mbps: 7434.623 Avg Mbps: 7434.623 3000 932692488 7469.009 100.00% Conn: 1 Mbps: 7469.009 Peak Mbps: 7469.009 Avg Mbps: 7469.009 4000 930577620 7444.621 100.00% Conn: 1 Mbps: 7444.621 Peak Mbps: 7469.009 Avg Mbps: 7444.621 5000 930102096 7440.817 100.00% Conn: 1 Mbps: 7440.817 Peak Mbps: 7469.009 Avg Mbps: 7440.817 --- fc00:0:0:1::12 tcpbench statistics --- 5582811696 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7434.134/7444.641/7469.009/12.800 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.039 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.039/0.039/0.039/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.043 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-tcpbench-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 1262144544 10097.156 100.00% Conn: 1 Mbps: 10097.156 Peak Mbps: 10097.156 Avg Mbps: 10097.156 2000 1262674020 10111.504 100.00% Conn: 1 Mbps: 10111.504 Peak Mbps: 10111.504 Avg Mbps: 10111.504 3000 1262379576 10099.037 100.00% Conn: 1 Mbps: 10099.037 Peak Mbps: 10111.504 Avg Mbps: 10099.037 4000 1262248712 10097.990 100.00% Conn: 1 Mbps: 10097.990 Peak Mbps: 10111.504 Avg Mbps: 10097.990 5000 1263197476 10105.580 100.00% Conn: 1 Mbps: 10105.580 Peak Mbps: 10111.504 Avg Mbps: 10105.580 --- 169.254.0.13 tcpbench statistics --- 7575939952 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10097.156/10102.253/10111.504/5.498 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 1254957244 10039.658 100.00% Conn: 1 Mbps: 10039.658 Peak Mbps: 10039.658 Avg Mbps: 10039.658 2000 1258076688 10074.688 100.00% Conn: 1 Mbps: 10074.688 Peak Mbps: 10074.688 Avg Mbps: 10074.688 3000 1258469040 10067.752 100.00% Conn: 1 Mbps: 10067.752 Peak Mbps: 10074.688 Avg Mbps: 10067.752 4000 1256082232 10048.658 100.00% Conn: 1 Mbps: 10048.658 Peak Mbps: 10074.688 Avg Mbps: 10048.658 5000 1256997720 10066.048 100.00% Conn: 1 Mbps: 10066.048 Peak Mbps: 10074.688 Avg Mbps: 10066.048 --- fc00::13 tcpbench statistics --- 7542365348 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10039.658/10059.361/10074.688/13.060 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.044 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.044/0.044/0.044/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.051 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.051/0.051/0.051/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 374200000 2990.609 100.00% Conn: 1 Mbps: 2990.609 Peak Mbps: 2990.609 Avg Mbps: 2990.609 2001 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3047.162 Avg Mbps: 3047.162 3002 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3070.231 Avg Mbps: 3070.231 4002 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3070.231 Avg Mbps: 3045.065 5002 388914264 3111.314 100.00% Conn: 1 Mbps: 3111.314 Peak Mbps: 3111.314 Avg Mbps: 3111.314 --- 169.254.1.11 tcpbench statistics --- 2294559512 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2990.609/3052.876/3111.314/39.210 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 846552976 6772.424 100.00% Conn: 1 Mbps: 6772.424 Peak Mbps: 6772.424 Avg Mbps: 6772.424 2000 919466800 7363.097 100.00% Conn: 1 Mbps: 7363.097 Peak Mbps: 7363.097 Avg Mbps: 7363.097 3000 898238872 7185.911 100.00% Conn: 1 Mbps: 7185.911 Peak Mbps: 7363.097 Avg Mbps: 7185.911 4000 888705416 7109.643 100.00% Conn: 1 Mbps: 7109.643 Peak Mbps: 7363.097 Avg Mbps: 7109.643 5001 907374104 7258.993 100.00% Conn: 1 Mbps: 7258.993 Peak Mbps: 7363.097 Avg Mbps: 7258.993 --- fc00:0:0:1::11 tcpbench statistics --- 5371890768 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6772.424/7138.014/7363.097/201.024 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.040 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.040/0.040/0.040/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.044 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.044/0.044/0.044/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 1270451474 10163.612 100.00% Conn: 1 Mbps: 10163.612 Peak Mbps: 10163.612 Avg Mbps: 10163.612 2000 1272914128 10193.507 100.00% Conn: 1 Mbps: 10193.507 Peak Mbps: 10193.507 Avg Mbps: 10193.507 3000 1274615360 10196.923 100.00% Conn: 1 Mbps: 10196.923 Peak Mbps: 10196.923 Avg Mbps: 10196.923 4000 1273372152 10186.977 100.00% Conn: 1 Mbps: 10186.977 Peak Mbps: 10196.923 Avg Mbps: 10186.977 5000 1274353632 10194.829 100.00% Conn: 1 Mbps: 10194.829 Peak Mbps: 10196.923 Avg Mbps: 10194.829 --- 169.254.1.12 tcpbench statistics --- 7639733218 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10163.612/10187.169/10196.923/12.239 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 1257973124 10063.785 100.00% Conn: 1 Mbps: 10063.785 Peak Mbps: 10063.785 Avg Mbps: 10063.785 2000 1263340744 10116.843 100.00% Conn: 1 Mbps: 10116.843 Peak Mbps: 10116.843 Avg Mbps: 10116.843 3000 1260463496 10083.708 100.00% Conn: 1 Mbps: 10083.708 Peak Mbps: 10116.843 Avg Mbps: 10083.708 4000 1260561584 10084.493 100.00% Conn: 1 Mbps: 10084.493 Peak Mbps: 10116.843 Avg Mbps: 10084.493 5000 1260136536 10081.092 100.00% Conn: 1 Mbps: 10081.092 Peak Mbps: 10116.843 Avg Mbps: 10081.092 --- fc00:0:0:1::12 tcpbench statistics --- 7563233244 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10063.785/10085.984/10116.843/17.184 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.038 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.038/0.038/0.038/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.039 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.039/0.039/0.039/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 1266560634 10132.485 100.00% Conn: 1 Mbps: 10132.485 Peak Mbps: 10132.485 Avg Mbps: 10132.485 2000 1267385124 10149.230 100.00% Conn: 1 Mbps: 10149.230 Peak Mbps: 10149.230 Avg Mbps: 10149.230 3000 1267875864 10143.007 100.00% Conn: 1 Mbps: 10143.007 Peak Mbps: 10149.230 Avg Mbps: 10143.007 4000 1266305496 10130.444 100.00% Conn: 1 Mbps: 10130.444 Peak Mbps: 10149.230 Avg Mbps: 10130.444 5000 1269102714 10152.822 100.00% Conn: 1 Mbps: 10152.822 Peak Mbps: 10152.822 Avg Mbps: 10152.822 --- 169.254.0.13 tcpbench statistics --- 7602275762 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10130.444/10141.598/10152.822/8.873 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 1273850884 10190.807 100.00% Conn: 1 Mbps: 10190.807 Peak Mbps: 10190.807 Avg Mbps: 10190.807 2000 1279002128 10242.259 100.00% Conn: 1 Mbps: 10242.259 Peak Mbps: 10242.259 Avg Mbps: 10242.259 3000 1280440752 10243.526 100.00% Conn: 1 Mbps: 10243.526 Peak Mbps: 10243.526 Avg Mbps: 10243.526 4000 1280800408 10246.403 100.00% Conn: 1 Mbps: 10246.403 Peak Mbps: 10246.403 Avg Mbps: 10246.403 5000 1279132912 10233.063 100.00% Conn: 1 Mbps: 10233.063 Peak Mbps: 10246.403 Avg Mbps: 10233.063 --- fc00::13 tcpbench statistics --- 7673340876 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10190.807/10231.212/10246.403/20.690 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 1m51.85s