START sys/net/pair 2025-03-25T02:39:55Z ==== 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.040 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.040/0.040/0.040/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.046 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.046/0.046/0.046/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 919575652 7356.605 100.00% Conn: 1 Mbps: 7356.605 Peak Mbps: 7356.605 Avg Mbps: 7356.605 2000 919225940 7361.169 100.00% Conn: 1 Mbps: 7361.169 Peak Mbps: 7361.169 Avg Mbps: 7361.169 3000 921546756 7372.374 100.00% Conn: 1 Mbps: 7372.374 Peak Mbps: 7372.374 Avg Mbps: 7372.374 4000 921928260 7382.809 100.00% Conn: 1 Mbps: 7382.809 Peak Mbps: 7382.809 Avg Mbps: 7382.809 5000 921499068 7371.993 100.00% Conn: 1 Mbps: 7371.993 Peak Mbps: 7382.809 Avg Mbps: 7371.993 --- 169.254.1.11 tcpbench statistics --- 5525870844 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7356.605/7368.990/7382.809/9.230 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 939412504 7515.300 100.00% Conn: 1 Mbps: 7515.300 Peak Mbps: 7515.300 Avg Mbps: 7515.300 2000 939959536 7527.203 100.00% Conn: 1 Mbps: 7527.203 Peak Mbps: 7527.203 Avg Mbps: 7527.203 3000 942575776 7540.606 100.00% Conn: 1 Mbps: 7540.606 Peak Mbps: 7540.606 Avg Mbps: 7540.606 4000 942607488 7540.860 100.00% Conn: 1 Mbps: 7540.860 Peak Mbps: 7540.860 Avg Mbps: 7540.860 5000 941965320 7535.723 100.00% Conn: 1 Mbps: 7535.723 Peak Mbps: 7540.860 Avg Mbps: 7535.723 --- fc00:0:0:1::11 tcpbench statistics --- 5646519800 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7515.300/7531.938/7540.860/9.678 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.065 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.065/0.065/0.065/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.128 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.128/0.128/0.128/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 372959720 2983.678 100.00% Conn: 1 Mbps: 2983.678 Peak Mbps: 2983.678 Avg Mbps: 2983.678 2001 387891616 3103.133 100.00% Conn: 1 Mbps: 3103.133 Peak Mbps: 3103.133 Avg Mbps: 3103.133 3002 385875968 3087.008 100.00% Conn: 1 Mbps: 3087.008 Peak Mbps: 3103.133 Avg Mbps: 3087.008 4002 381644112 3053.153 100.00% Conn: 1 Mbps: 3053.153 Peak Mbps: 3103.133 Avg Mbps: 3053.153 5003 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3103.133 Avg Mbps: 3068.133 --- 169.254.1.12 tcpbench statistics --- 2292259032 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2983.678/3059.021/3103.133/41.287 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 358347140 2863.913 100.00% Conn: 1 Mbps: 2863.913 Peak Mbps: 2863.913 Avg Mbps: 2863.913 2001 360972288 2887.778 100.00% Conn: 1 Mbps: 2887.778 Peak Mbps: 2887.778 Avg Mbps: 2887.778 3001 365236652 2924.818 100.00% Conn: 1 Mbps: 2924.818 Peak Mbps: 2924.818 Avg Mbps: 2924.818 4001 370147328 2961.179 100.00% Conn: 1 Mbps: 2961.179 Peak Mbps: 2961.179 Avg Mbps: 2961.179 5001 371458048 2971.664 100.00% Conn: 1 Mbps: 2971.664 Peak Mbps: 2971.664 Avg Mbps: 2971.664 --- fc00:0:0:1::12 tcpbench statistics --- 2190017328 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2863.913/2921.871/2971.664/41.363 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.057 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.057/0.057/0.057/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.067 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.067/0.067/0.067/0.000 ms ==== run-tcpbench-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 755600184 6044.801 100.00% Conn: 1 Mbps: 6044.801 Peak Mbps: 6044.801 Avg Mbps: 6044.801 2000 804893820 6445.596 100.00% Conn: 1 Mbps: 6445.596 Peak Mbps: 6445.596 Avg Mbps: 6445.596 3001 804655660 6437.245 100.00% Conn: 1 Mbps: 6437.245 Peak Mbps: 6445.596 Avg Mbps: 6437.245 4001 805664916 6445.319 100.00% Conn: 1 Mbps: 6445.319 Peak Mbps: 6445.596 Avg Mbps: 6445.319 5001 816438012 6538.042 100.00% Conn: 1 Mbps: 6538.042 Peak Mbps: 6538.042 Avg Mbps: 6538.042 --- 169.254.0.13 tcpbench statistics --- 4797177916 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6044.801/6382.201/6538.042/172.718 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 720151448 5761.212 100.00% Conn: 1 Mbps: 5761.212 Peak Mbps: 5761.212 Avg Mbps: 5761.212 2001 760856008 6086.848 100.00% Conn: 1 Mbps: 6086.848 Peak Mbps: 6086.848 Avg Mbps: 6086.848 3001 753050464 6024.404 100.00% Conn: 1 Mbps: 6024.404 Peak Mbps: 6086.848 Avg Mbps: 6024.404 4001 748467664 5987.741 100.00% Conn: 1 Mbps: 5987.741 Peak Mbps: 6086.848 Avg Mbps: 5987.741 5001 753809576 6030.477 100.00% Conn: 1 Mbps: 6030.477 Peak Mbps: 6086.848 Avg Mbps: 6030.477 --- fc00::13 tcpbench statistics --- 4495861344 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 5761.212/5978.136/6086.848/113.002 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.042 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.042/0.042/0.042/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.052 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.052/0.052/0.052/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 375241856 2998.936 100.00% Conn: 1 Mbps: 2998.936 Peak Mbps: 2998.936 Avg Mbps: 2998.936 2001 386924544 3095.396 100.00% Conn: 1 Mbps: 3095.396 Peak Mbps: 3095.396 Avg Mbps: 3095.396 3002 381157376 3049.259 100.00% Conn: 1 Mbps: 3049.259 Peak Mbps: 3095.396 Avg Mbps: 3049.259 4002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3095.396 Avg Mbps: 3047.162 5003 380824280 3046.594 100.00% Conn: 1 Mbps: 3046.594 Peak Mbps: 3095.396 Avg Mbps: 3046.594 --- 169.254.1.11 tcpbench statistics --- 2288822104 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2998.936/3047.469/3095.396/30.517 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 354776320 2835.375 100.00% Conn: 1 Mbps: 2835.375 Peak Mbps: 2835.375 Avg Mbps: 2835.375 2001 360710144 2885.681 100.00% Conn: 1 Mbps: 2885.681 Peak Mbps: 2885.681 Avg Mbps: 2885.681 3002 364981568 2919.853 100.00% Conn: 1 Mbps: 2919.853 Peak Mbps: 2919.853 Avg Mbps: 2919.853 4002 370147328 2961.179 100.00% Conn: 1 Mbps: 2961.179 Peak Mbps: 2961.179 Avg Mbps: 2961.179 5002 366607560 2932.860 100.00% Conn: 1 Mbps: 2932.860 Peak Mbps: 2961.179 Avg Mbps: 2932.860 --- fc00:0:0:1::11 tcpbench statistics --- 2177146632 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2835.375/2906.990/2961.179/43.252 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.038 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.038/0.038/0.038/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.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-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 911925784 7295.406 100.00% Conn: 1 Mbps: 7295.406 Peak Mbps: 7295.406 Avg Mbps: 7295.406 2000 911904064 7302.535 100.00% Conn: 1 Mbps: 7302.535 Peak Mbps: 7302.535 Avg Mbps: 7302.535 3000 909933336 7279.467 100.00% Conn: 1 Mbps: 7279.467 Peak Mbps: 7302.535 Avg Mbps: 7279.467 4000 910360496 7282.884 100.00% Conn: 1 Mbps: 7282.884 Peak Mbps: 7302.535 Avg Mbps: 7282.884 5000 911001960 7288.016 100.00% Conn: 1 Mbps: 7288.016 Peak Mbps: 7302.535 Avg Mbps: 7288.016 --- 169.254.1.12 tcpbench statistics --- 5464107640 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7279.467/7289.662/7302.535/8.382 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 912369192 7298.954 100.00% Conn: 1 Mbps: 7298.954 Peak Mbps: 7298.954 Avg Mbps: 7298.954 2000 912646224 7308.478 100.00% Conn: 1 Mbps: 7308.478 Peak Mbps: 7308.478 Avg Mbps: 7308.478 3000 909326124 7274.609 100.00% Conn: 1 Mbps: 7274.609 Peak Mbps: 7308.478 Avg Mbps: 7274.609 4000 911018304 7288.146 100.00% Conn: 1 Mbps: 7288.146 Peak Mbps: 7308.478 Avg Mbps: 7288.146 5000 912062172 7303.801 100.00% Conn: 1 Mbps: 7303.801 Peak Mbps: 7308.478 Avg Mbps: 7303.801 --- fc00:0:0:1::12 tcpbench statistics --- 5466883800 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7274.609/7294.798/7308.478/12.143 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.044 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.044/0.044/0.044/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.046 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-2-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 1251895458 10015.164 100.00% Conn: 1 Mbps: 10015.164 Peak Mbps: 10015.164 Avg Mbps: 10015.164 2000 1251943172 10025.571 100.00% Conn: 1 Mbps: 10025.571 Peak Mbps: 10025.571 Avg Mbps: 10025.571 3000 1252008604 10016.069 100.00% Conn: 1 Mbps: 10016.069 Peak Mbps: 10025.571 Avg Mbps: 10016.069 4000 1251010766 10008.086 100.00% Conn: 1 Mbps: 10008.086 Peak Mbps: 10025.571 Avg Mbps: 10008.086 5000 1252564776 10020.518 100.00% Conn: 1 Mbps: 10020.518 Peak Mbps: 10025.571 Avg Mbps: 10020.518 --- 169.254.0.13 tcpbench statistics --- 7511693108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10008.086/10017.082/10025.571/5.822 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 1236701676 9893.613 100.00% Conn: 1 Mbps: 9893.613 Peak Mbps: 9893.613 Avg Mbps: 9893.613 2000 1241532512 9942.202 100.00% Conn: 1 Mbps: 9942.202 Peak Mbps: 9942.202 Avg Mbps: 9942.202 3000 1240420848 9923.367 100.00% Conn: 1 Mbps: 9923.367 Peak Mbps: 9942.202 Avg Mbps: 9923.367 4000 1236006888 9888.055 100.00% Conn: 1 Mbps: 9888.055 Peak Mbps: 9942.202 Avg Mbps: 9888.055 5000 1238426392 9907.411 100.00% Conn: 1 Mbps: 9907.411 Peak Mbps: 9942.202 Avg Mbps: 9907.411 --- fc00::13 tcpbench statistics --- 7424190804 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9888.055/9910.930/9942.202/19.840 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.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-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.053 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.053/0.053/0.053/0.000 ms ==== run-tcpbench-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 375420672 3000.365 100.00% Conn: 1 Mbps: 3000.365 Peak Mbps: 3000.365 Avg Mbps: 3000.365 2001 381419520 3051.356 100.00% Conn: 1 Mbps: 3051.356 Peak Mbps: 3051.356 Avg Mbps: 3051.356 3001 380024120 3043.236 100.00% Conn: 1 Mbps: 3043.236 Peak Mbps: 3051.356 Avg Mbps: 3043.236 4001 387710976 3101.688 100.00% Conn: 1 Mbps: 3101.688 Peak Mbps: 3101.688 Avg Mbps: 3101.688 5002 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3101.688 Avg Mbps: 3055.550 --- 169.254.1.11 tcpbench statistics --- 2292657208 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3000.365/3050.439/3101.688/32.288 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 846482744 6771.862 100.00% Conn: 1 Mbps: 6771.862 Peak Mbps: 6771.862 Avg Mbps: 6771.862 2000 883872808 7070.982 100.00% Conn: 1 Mbps: 7070.982 Peak Mbps: 7070.982 Avg Mbps: 7070.982 3000 899153920 7193.231 100.00% Conn: 1 Mbps: 7193.231 Peak Mbps: 7193.231 Avg Mbps: 7193.231 4000 897552648 7180.421 100.00% Conn: 1 Mbps: 7180.421 Peak Mbps: 7193.231 Avg Mbps: 7180.421 5000 899153920 7193.231 100.00% Conn: 1 Mbps: 7193.231 Peak Mbps: 7193.231 Avg Mbps: 7193.231 --- fc00:0:0:1::11 tcpbench statistics --- 5306455400 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6771.862/7081.946/7193.231/161.703 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.044 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.044/0.044/0.044/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.046 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-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 1250834126 10006.673 100.00% Conn: 1 Mbps: 10006.673 Peak Mbps: 10006.673 Avg Mbps: 10006.673 2000 1250192866 10011.554 100.00% Conn: 1 Mbps: 10011.554 Peak Mbps: 10011.554 Avg Mbps: 10011.554 3000 1250274656 10002.197 100.00% Conn: 1 Mbps: 10002.197 Peak Mbps: 10011.554 Avg Mbps: 10002.197 4000 1250307372 10002.459 100.00% Conn: 1 Mbps: 10002.459 Peak Mbps: 10011.554 Avg Mbps: 10002.459 5000 1250323730 10002.590 100.00% Conn: 1 Mbps: 10002.590 Peak Mbps: 10011.554 Avg Mbps: 10002.590 --- 169.254.1.12 tcpbench statistics --- 7501847530 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10002.197/10005.095/10011.554/3.629 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 1246995660 9975.965 100.00% Conn: 1 Mbps: 9975.965 Peak Mbps: 9975.965 Avg Mbps: 9975.965 2000 1246567696 9982.524 100.00% Conn: 1 Mbps: 9982.524 Peak Mbps: 9982.524 Avg Mbps: 9982.524 3000 1245586816 9964.695 100.00% Conn: 1 Mbps: 9964.695 Peak Mbps: 9982.524 Avg Mbps: 9964.695 4000 1236758896 9894.071 100.00% Conn: 1 Mbps: 9894.071 Peak Mbps: 9982.524 Avg Mbps: 9894.071 5000 1244115496 9952.924 100.00% Conn: 1 Mbps: 9952.924 Peak Mbps: 9982.524 Avg Mbps: 9952.924 --- fc00:0:0:1::12 tcpbench statistics --- 7461785948 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9894.071/9954.036/9982.524/31.633 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.045 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/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 1252402372 10019.219 100.00% Conn: 1 Mbps: 10019.219 Peak Mbps: 10019.219 Avg Mbps: 10019.219 2000 1253120948 10035.003 100.00% Conn: 1 Mbps: 10035.003 Peak Mbps: 10035.003 Avg Mbps: 10035.003 3000 1250994408 10007.955 100.00% Conn: 1 Mbps: 10007.955 Peak Mbps: 10035.003 Avg Mbps: 10007.955 4000 1255541932 10044.335 100.00% Conn: 1 Mbps: 10044.335 Peak Mbps: 10044.335 Avg Mbps: 10044.335 5000 1251419716 10011.358 100.00% Conn: 1 Mbps: 10011.358 Peak Mbps: 10044.335 Avg Mbps: 10011.358 --- 169.254.0.13 tcpbench statistics --- 7518694148 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10007.955/10023.574/10044.335/13.956 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 1269651428 10157.211 100.00% Conn: 1 Mbps: 10157.211 Peak Mbps: 10157.211 Avg Mbps: 10157.211 2000 1270108816 10171.042 100.00% Conn: 1 Mbps: 10171.042 Peak Mbps: 10171.042 Avg Mbps: 10171.042 3000 1269226024 10153.808 100.00% Conn: 1 Mbps: 10153.808 Peak Mbps: 10171.042 Avg Mbps: 10153.808 4000 1272135968 10177.088 100.00% Conn: 1 Mbps: 10177.088 Peak Mbps: 10177.088 Avg Mbps: 10177.088 5000 1271939792 10175.518 100.00% Conn: 1 Mbps: 10175.518 Peak Mbps: 10177.088 Avg Mbps: 10175.518 --- fc00::13 tcpbench statistics --- 7622647708 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10153.808/10166.933/10177.088/9.597 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.90s