START sys/net/pair 2025-03-30T02:38:19Z ==== 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.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-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 935121940 7480.976 100.00% Conn: 1 Mbps: 7480.976 Peak Mbps: 7480.976 Avg Mbps: 7480.976 2000 937705040 7509.149 100.00% Conn: 1 Mbps: 7509.149 Peak Mbps: 7509.149 Avg Mbps: 7509.149 3000 938213712 7505.710 100.00% Conn: 1 Mbps: 7505.710 Peak Mbps: 7509.149 Avg Mbps: 7505.710 4000 939143628 7513.149 100.00% Conn: 1 Mbps: 7513.149 Peak Mbps: 7513.149 Avg Mbps: 7513.149 5000 938785968 7510.288 100.00% Conn: 1 Mbps: 7510.288 Peak Mbps: 7513.149 Avg Mbps: 7510.288 --- 169.254.1.11 tcpbench statistics --- 5626222292 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7480.976/7503.854/7513.149/11.685 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 939475928 7515.807 100.00% Conn: 1 Mbps: 7515.807 Peak Mbps: 7515.807 Avg Mbps: 7515.807 2000 938920968 7518.887 100.00% Conn: 1 Mbps: 7518.887 Peak Mbps: 7518.887 Avg Mbps: 7518.887 3000 941339008 7530.712 100.00% Conn: 1 Mbps: 7530.712 Peak Mbps: 7530.712 Avg Mbps: 7530.712 4000 941703696 7533.630 100.00% Conn: 1 Mbps: 7533.630 Peak Mbps: 7533.630 Avg Mbps: 7533.630 5000 937168880 7497.351 100.00% Conn: 1 Mbps: 7497.351 Peak Mbps: 7533.630 Avg Mbps: 7497.351 --- fc00:0:0:1::11 tcpbench statistics --- 5639455952 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7497.351/7519.277/7533.630/12.882 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.066 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.066/0.066/0.066/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 1001 375887608 3004.097 100.00% Conn: 1 Mbps: 3004.097 Peak Mbps: 3004.097 Avg Mbps: 3004.097 2000 388497408 3111.090 100.00% Conn: 1 Mbps: 3111.090 Peak Mbps: 3111.090 Avg Mbps: 3111.090 3001 388235264 3105.882 100.00% Conn: 1 Mbps: 3105.882 Peak Mbps: 3111.090 Avg Mbps: 3105.882 4002 385858056 3086.864 100.00% Conn: 1 Mbps: 3086.864 Peak Mbps: 3111.090 Avg Mbps: 3086.864 5002 388497408 3107.979 100.00% Conn: 1 Mbps: 3107.979 Peak Mbps: 3111.090 Avg Mbps: 3107.979 --- 169.254.1.12 tcpbench statistics --- 2314316848 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3004.097/3083.183/3111.090/40.440 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 1000 352790300 2822.322 100.00% Conn: 1 Mbps: 2822.322 Peak Mbps: 2822.322 Avg Mbps: 2822.322 2001 359399424 2875.195 100.00% Conn: 1 Mbps: 2875.195 Peak Mbps: 2875.195 Avg Mbps: 2875.195 3001 359425124 2875.401 100.00% Conn: 1 Mbps: 2875.401 Peak Mbps: 2875.401 Avg Mbps: 2875.401 4002 359399424 2875.195 100.00% Conn: 1 Mbps: 2875.195 Peak Mbps: 2875.401 Avg Mbps: 2875.195 5002 361234432 2889.875 100.00% Conn: 1 Mbps: 2889.875 Peak Mbps: 2889.875 Avg Mbps: 2889.875 --- fc00:0:0:1::12 tcpbench statistics --- 2158455840 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2822.322/2867.598/2889.875/23.334 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.055 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.055/0.055/0.055/0.000 ms ==== run-ping6-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.070 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.070/0.070/0.070/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 765853104 6126.825 100.00% Conn: 1 Mbps: 6126.825 Peak Mbps: 6126.825 Avg Mbps: 6126.825 2000 804433116 6435.465 100.00% Conn: 1 Mbps: 6435.465 Peak Mbps: 6435.465 Avg Mbps: 6435.465 3000 807308480 6458.468 100.00% Conn: 1 Mbps: 6458.468 Peak Mbps: 6458.468 Avg Mbps: 6458.468 4000 829143168 6633.145 100.00% Conn: 1 Mbps: 6633.145 Peak Mbps: 6633.145 Avg Mbps: 6633.145 5000 821839236 6581.295 100.00% Conn: 1 Mbps: 6581.295 Peak Mbps: 6633.145 Avg Mbps: 6581.295 --- 169.254.0.13 tcpbench statistics --- 4839630624 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6126.825/6447.040/6633.145/176.330 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 1001 716541088 5726.602 100.00% Conn: 1 Mbps: 5726.602 Peak Mbps: 5726.602 Avg Mbps: 5726.602 2001 756807400 6054.459 100.00% Conn: 1 Mbps: 6054.459 Peak Mbps: 6054.459 Avg Mbps: 6054.459 3002 765115424 6120.923 100.00% Conn: 1 Mbps: 6120.923 Peak Mbps: 6120.923 Avg Mbps: 6120.923 4002 767709240 6147.822 100.00% Conn: 1 Mbps: 6147.822 Peak Mbps: 6147.822 Avg Mbps: 6147.822 5002 763848504 6110.788 100.00% Conn: 1 Mbps: 6110.788 Peak Mbps: 6147.822 Avg Mbps: 6110.788 --- fc00::13 tcpbench statistics --- 4526154136 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5726.602/6032.119/6147.822/155.757 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.045 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.045/0.045/0.045/0.000 ms ==== run-ping6-2-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.050 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-tcpbench-2-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 375913328 3004.302 100.00% Conn: 1 Mbps: 3004.302 Peak Mbps: 3004.302 Avg Mbps: 3004.302 2001 387109672 3099.977 100.00% Conn: 1 Mbps: 3099.977 Peak Mbps: 3099.977 Avg Mbps: 3099.977 3001 388479712 3107.838 100.00% Conn: 1 Mbps: 3107.838 Peak Mbps: 3107.838 Avg Mbps: 3107.838 4001 389005528 3112.044 100.00% Conn: 1 Mbps: 3112.044 Peak Mbps: 3112.044 Avg Mbps: 3112.044 5001 388805072 3110.441 100.00% Conn: 1 Mbps: 3110.441 Peak Mbps: 3112.044 Avg Mbps: 3110.441 --- 169.254.1.11 tcpbench statistics --- 2316618280 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3004.302/3086.920/3112.044/41.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 354039900 2829.490 100.00% Conn: 1 Mbps: 2829.490 Peak Mbps: 2829.490 Avg Mbps: 2829.490 2002 365690880 2925.527 100.00% Conn: 1 Mbps: 2925.527 Peak Mbps: 2925.527 Avg Mbps: 2925.527 3002 363593728 2908.750 100.00% Conn: 1 Mbps: 2908.750 Peak Mbps: 2925.527 Avg Mbps: 2908.750 4002 361012092 2888.097 100.00% Conn: 1 Mbps: 2888.097 Peak Mbps: 2925.527 Avg Mbps: 2888.097 5002 365690880 2925.527 100.00% Conn: 1 Mbps: 2925.527 Peak Mbps: 2925.527 Avg Mbps: 2925.527 --- fc00:0:0:1::11 tcpbench statistics --- 2171786200 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2829.490/2895.478/2925.527/35.752 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.037 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.037/0.037/0.037/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 918249200 7345.994 100.00% Conn: 1 Mbps: 7345.994 Peak Mbps: 7345.994 Avg Mbps: 7345.994 2000 917636696 7348.442 100.00% Conn: 1 Mbps: 7348.442 Peak Mbps: 7348.442 Avg Mbps: 7348.442 3000 916374040 7330.992 100.00% Conn: 1 Mbps: 7330.992 Peak Mbps: 7348.442 Avg Mbps: 7330.992 4000 918456264 7347.650 100.00% Conn: 1 Mbps: 7347.650 Peak Mbps: 7348.442 Avg Mbps: 7347.650 5000 917305104 7338.441 100.00% Conn: 1 Mbps: 7338.441 Peak Mbps: 7348.442 Avg Mbps: 7338.441 --- 169.254.1.12 tcpbench statistics --- 5506345800 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7330.992/7342.304/7348.442/6.675 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 922904976 7383.240 100.00% Conn: 1 Mbps: 7383.240 Peak Mbps: 7383.240 Avg Mbps: 7383.240 2000 922557972 7387.852 100.00% Conn: 1 Mbps: 7387.852 Peak Mbps: 7387.852 Avg Mbps: 7387.852 3000 923756064 7390.049 100.00% Conn: 1 Mbps: 7390.049 Peak Mbps: 7390.049 Avg Mbps: 7390.049 4000 922696488 7381.572 100.00% Conn: 1 Mbps: 7381.572 Peak Mbps: 7390.049 Avg Mbps: 7381.572 5000 921681180 7373.449 100.00% Conn: 1 Mbps: 7373.449 Peak Mbps: 7390.049 Avg Mbps: 7373.449 --- fc00:0:0:1::12 tcpbench statistics --- 5535393528 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7373.449/7383.232/7390.049/5.766 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.040 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.040/0.040/0.040/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.049 ms --- fc00::13 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-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 1276406986 10211.256 100.00% Conn: 1 Mbps: 10211.256 Peak Mbps: 10211.256 Avg Mbps: 10211.256 2000 1283121520 10275.247 100.00% Conn: 1 Mbps: 10275.247 Peak Mbps: 10275.247 Avg Mbps: 10275.247 3000 1284037568 10272.301 100.00% Conn: 1 Mbps: 10272.301 Peak Mbps: 10275.247 Avg Mbps: 10272.301 4000 1283415964 10267.328 100.00% Conn: 1 Mbps: 10267.328 Peak Mbps: 10275.247 Avg Mbps: 10267.328 5000 1282172756 10257.382 100.00% Conn: 1 Mbps: 10257.382 Peak Mbps: 10275.247 Avg Mbps: 10257.382 --- 169.254.0.13 tcpbench statistics --- 7690215206 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10211.256/10256.703/10275.247/23.520 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 1261487764 10091.902 100.00% Conn: 1 Mbps: 10091.902 Peak Mbps: 10091.902 Avg Mbps: 10091.902 2000 1262130992 10107.155 100.00% Conn: 1 Mbps: 10107.155 Peak Mbps: 10107.155 Avg Mbps: 10107.155 3000 1260005752 10080.046 100.00% Conn: 1 Mbps: 10080.046 Peak Mbps: 10107.155 Avg Mbps: 10080.046 4000 1261934816 10095.479 100.00% Conn: 1 Mbps: 10095.479 Peak Mbps: 10107.155 Avg Mbps: 10095.479 5000 1258697912 10069.583 100.00% Conn: 1 Mbps: 10069.583 Peak Mbps: 10107.155 Avg Mbps: 10069.583 --- fc00::13 tcpbench statistics --- 7566944060 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10069.583/10088.833/10107.155/12.939 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.047 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.047/0.047/0.047/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 1000 379433976 3035.472 100.00% Conn: 1 Mbps: 3035.472 Peak Mbps: 3035.472 Avg Mbps: 3035.472 2001 388497408 3107.979 100.00% Conn: 1 Mbps: 3107.979 Peak Mbps: 3107.979 Avg Mbps: 3107.979 3001 384827392 3078.619 100.00% Conn: 1 Mbps: 3078.619 Peak Mbps: 3107.979 Avg Mbps: 3078.619 4001 379584512 3036.676 100.00% Conn: 1 Mbps: 3036.676 Peak Mbps: 3107.979 Avg Mbps: 3036.676 5001 389545984 3116.368 100.00% Conn: 1 Mbps: 3116.368 Peak Mbps: 3116.368 Avg Mbps: 3116.368 --- 169.254.1.11 tcpbench statistics --- 2309032144 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3035.472/3075.023/3116.368/34.185 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 862222336 6897.779 100.00% Conn: 1 Mbps: 6897.779 Peak Mbps: 6897.779 Avg Mbps: 6897.779 2000 880604096 7044.833 100.00% Conn: 1 Mbps: 7044.833 Peak Mbps: 7044.833 Avg Mbps: 7044.833 3000 891708840 7133.671 100.00% Conn: 1 Mbps: 7133.671 Peak Mbps: 7133.671 Avg Mbps: 7133.671 4001 897350760 7178.806 100.00% Conn: 1 Mbps: 7178.806 Peak Mbps: 7178.806 Avg Mbps: 7178.806 5001 912970824 7303.767 100.00% Conn: 1 Mbps: 7303.767 Peak Mbps: 7303.767 Avg Mbps: 7303.767 --- fc00:0:0:1::11 tcpbench statistics --- 5367238032 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6897.779/7111.771/7303.767/135.727 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.042 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.042/0.042/0.042/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.047 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.047/0.047/0.047/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 1265026554 10120.212 100.00% Conn: 1 Mbps: 10120.212 Peak Mbps: 10120.212 Avg Mbps: 10120.212 2000 1269282652 10164.426 100.00% Conn: 1 Mbps: 10164.426 Peak Mbps: 10164.426 Avg Mbps: 10164.426 3000 1269020924 10152.167 100.00% Conn: 1 Mbps: 10152.167 Peak Mbps: 10164.426 Avg Mbps: 10152.167 4000 1269904256 10159.234 100.00% Conn: 1 Mbps: 10159.234 Peak Mbps: 10164.426 Avg Mbps: 10159.234 5000 1269609812 10156.878 100.00% Conn: 1 Mbps: 10156.878 Peak Mbps: 10164.426 Avg Mbps: 10156.878 --- 169.254.1.12 tcpbench statistics --- 7612879318 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10120.212/10150.584/10164.426/15.691 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 1248012692 9984.102 100.00% Conn: 1 Mbps: 9984.102 Peak Mbps: 9984.102 Avg Mbps: 9984.102 2000 1253074200 10034.628 100.00% Conn: 1 Mbps: 10034.628 Peak Mbps: 10034.628 Avg Mbps: 10034.628 3000 1249575728 9996.606 100.00% Conn: 1 Mbps: 9996.606 Peak Mbps: 10034.628 Avg Mbps: 9996.606 4000 1252779936 10022.239 100.00% Conn: 1 Mbps: 10022.239 Peak Mbps: 10034.628 Avg Mbps: 10022.239 5000 1252224104 10017.793 100.00% Conn: 1 Mbps: 10017.793 Peak Mbps: 10034.628 Avg Mbps: 10017.793 --- fc00:0:0:1::12 tcpbench statistics --- 7509852524 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9984.102/10011.074/10034.628/18.229 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.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-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.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-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 1270124370 10160.995 100.00% Conn: 1 Mbps: 10160.995 Peak Mbps: 10160.995 Avg Mbps: 10160.995 2000 1273830176 10200.842 100.00% Conn: 1 Mbps: 10200.842 Peak Mbps: 10200.842 Avg Mbps: 10200.842 3000 1275744062 10205.952 100.00% Conn: 1 Mbps: 10205.952 Peak Mbps: 10205.952 Avg Mbps: 10205.952 4000 1271998080 10175.985 100.00% Conn: 1 Mbps: 10175.985 Peak Mbps: 10205.952 Avg Mbps: 10175.985 5000 1273764744 10190.118 100.00% Conn: 1 Mbps: 10190.118 Peak Mbps: 10205.952 Avg Mbps: 10190.118 --- 169.254.0.13 tcpbench statistics --- 7639013522 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10160.995/10186.778/10205.952/16.480 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 1296290604 10370.325 100.00% Conn: 1 Mbps: 10370.325 Peak Mbps: 10370.325 Avg Mbps: 10370.325 2000 1299731392 10408.259 100.00% Conn: 1 Mbps: 10408.259 Peak Mbps: 10408.259 Avg Mbps: 10408.259 3000 1301202712 10409.622 100.00% Conn: 1 Mbps: 10409.622 Peak Mbps: 10409.622 Avg Mbps: 10409.622 4000 1298488944 10387.912 100.00% Conn: 1 Mbps: 10387.912 Peak Mbps: 10409.622 Avg Mbps: 10387.912 5000 1301398888 10411.191 100.00% Conn: 1 Mbps: 10411.191 Peak Mbps: 10411.191 Avg Mbps: 10411.191 --- fc00::13 tcpbench statistics --- 7793835900 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10370.325/10397.462/10411.191/16.004 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.92s