START sys/net/pair 2025-03-22T02:33:44Z ==== 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.039 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.039/0.039/0.039/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.045 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.045/0.045/0.045/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 934843760 7478.750 100.00% Conn: 1 Mbps: 7478.750 Peak Mbps: 7478.750 Avg Mbps: 7478.750 2000 938388568 7514.623 100.00% Conn: 1 Mbps: 7514.623 Peak Mbps: 7514.623 Avg Mbps: 7514.623 3000 938579320 7508.635 100.00% Conn: 1 Mbps: 7508.635 Peak Mbps: 7514.623 Avg Mbps: 7508.635 4000 937585820 7500.687 100.00% Conn: 1 Mbps: 7500.687 Peak Mbps: 7514.623 Avg Mbps: 7500.687 5000 936481048 7491.848 100.00% Conn: 1 Mbps: 7491.848 Peak Mbps: 7514.623 Avg Mbps: 7491.848 --- 169.254.1.11 tcpbench statistics --- 5622939768 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7478.750/7498.909/7514.623/12.656 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 943638128 7549.105 100.00% Conn: 1 Mbps: 7549.105 Peak Mbps: 7549.105 Avg Mbps: 7549.105 2000 942147664 7544.726 100.00% Conn: 1 Mbps: 7544.726 Peak Mbps: 7549.105 Avg Mbps: 7544.726 3000 943614344 7548.915 100.00% Conn: 1 Mbps: 7548.915 Peak Mbps: 7549.105 Avg Mbps: 7548.915 4000 945199944 7561.600 100.00% Conn: 1 Mbps: 7561.600 Peak Mbps: 7561.600 Avg Mbps: 7561.600 5000 943321008 7546.568 100.00% Conn: 1 Mbps: 7546.568 Peak Mbps: 7561.600 Avg Mbps: 7546.568 --- fc00:0:0:1::11 tcpbench statistics --- 5661701920 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7544.726/7550.183/7561.600/5.932 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.063 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.063/0.063/0.063/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.126 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.126/0.126/0.126/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 372739280 2978.935 100.00% Conn: 1 Mbps: 2978.935 Peak Mbps: 2978.935 Avg Mbps: 2978.935 2001 384040960 3072.328 100.00% Conn: 1 Mbps: 3072.328 Peak Mbps: 3072.328 Avg Mbps: 3072.328 3001 384177872 3073.423 100.00% Conn: 1 Mbps: 3073.423 Peak Mbps: 3073.423 Avg Mbps: 3073.423 4002 385613824 3084.911 100.00% Conn: 1 Mbps: 3084.911 Peak Mbps: 3084.911 Avg Mbps: 3084.911 5002 382795016 3065.426 100.00% Conn: 1 Mbps: 3065.426 Peak Mbps: 3084.911 Avg Mbps: 3065.426 --- 169.254.1.12 tcpbench statistics --- 2290786472 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2978.935/3055.004/3084.911/38.546 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 354549048 2836.392 100.00% Conn: 1 Mbps: 2836.392 Peak Mbps: 2836.392 Avg Mbps: 2836.392 2001 362571848 2900.575 100.00% Conn: 1 Mbps: 2900.575 Peak Mbps: 2900.575 Avg Mbps: 2900.575 3001 361496576 2894.867 100.00% Conn: 1 Mbps: 2894.867 Peak Mbps: 2900.575 Avg Mbps: 2894.867 4001 364380160 2915.041 100.00% Conn: 1 Mbps: 2915.041 Peak Mbps: 2915.041 Avg Mbps: 2915.041 5002 363429156 2907.433 100.00% Conn: 1 Mbps: 2907.433 Peak Mbps: 2915.041 Avg Mbps: 2907.433 --- fc00:0:0:1::12 tcpbench statistics --- 2170544804 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2836.392/2890.862/2915.041/28.059 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.058 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.058/0.058/0.058/0.000 ms ==== run-ping6-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.065 ms --- fc00::13 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-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 764891536 6119.132 100.00% Conn: 1 Mbps: 6119.132 Peak Mbps: 6119.132 Avg Mbps: 6119.132 2000 805307256 6442.458 100.00% Conn: 1 Mbps: 6442.458 Peak Mbps: 6442.458 Avg Mbps: 6442.458 3000 812571612 6500.573 100.00% Conn: 1 Mbps: 6500.573 Peak Mbps: 6500.573 Avg Mbps: 6500.573 4000 812524320 6506.701 100.00% Conn: 1 Mbps: 6506.701 Peak Mbps: 6506.701 Avg Mbps: 6506.701 5000 811848180 6494.785 100.00% Conn: 1 Mbps: 6494.785 Peak Mbps: 6506.701 Avg Mbps: 6494.785 --- 169.254.0.13 tcpbench statistics --- 4811091192 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6119.132/6412.730/6506.701/148.569 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 727520848 5820.167 100.00% Conn: 1 Mbps: 5820.167 Peak Mbps: 5820.167 Avg Mbps: 5820.167 2000 765488560 6130.039 100.00% Conn: 1 Mbps: 6130.039 Peak Mbps: 6130.039 Avg Mbps: 6130.039 3000 764544608 6116.357 100.00% Conn: 1 Mbps: 6116.357 Peak Mbps: 6130.039 Avg Mbps: 6116.357 4000 765334840 6128.808 100.00% Conn: 1 Mbps: 6128.808 Peak Mbps: 6130.039 Avg Mbps: 6128.808 5001 765670384 6125.363 100.00% Conn: 1 Mbps: 6125.363 Peak Mbps: 6130.039 Avg Mbps: 6125.363 --- fc00::13 tcpbench statistics --- 4553495440 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5820.167/6064.147/6130.039/122.084 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.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-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 1000 373147264 2985.178 100.00% Conn: 1 Mbps: 2985.178 Peak Mbps: 2985.178 Avg Mbps: 2985.178 2001 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3070.231 Avg Mbps: 3070.231 3001 380370944 3042.968 100.00% Conn: 1 Mbps: 3042.968 Peak Mbps: 3070.231 Avg Mbps: 3042.968 4001 384484520 3075.876 100.00% Conn: 1 Mbps: 3075.876 Peak Mbps: 3075.876 Avg Mbps: 3075.876 5002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3075.876 Avg Mbps: 3047.162 --- 169.254.1.11 tcpbench statistics --- 2285669160 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2985.178/3044.283/3075.876/32.171 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 353579572 2825.811 100.00% Conn: 1 Mbps: 2825.811 Peak Mbps: 2825.811 Avg Mbps: 2825.811 2001 363069440 2904.556 100.00% Conn: 1 Mbps: 2904.556 Peak Mbps: 2904.556 Avg Mbps: 2904.556 3001 360972288 2887.778 100.00% Conn: 1 Mbps: 2887.778 Peak Mbps: 2904.556 Avg Mbps: 2887.778 4002 362020864 2896.167 100.00% Conn: 1 Mbps: 2896.167 Peak Mbps: 2904.556 Avg Mbps: 2896.167 5002 361758720 2894.070 100.00% Conn: 1 Mbps: 2894.070 Peak Mbps: 2904.556 Avg Mbps: 2894.070 --- fc00:0:0:1::11 tcpbench statistics --- 2163421748 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2825.811/2881.676/2904.556/28.444 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.036 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.036/0.036/0.036/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 913650352 7309.203 100.00% Conn: 1 Mbps: 7309.203 Peak Mbps: 7309.203 Avg Mbps: 7309.203 2000 917800320 7349.752 100.00% Conn: 1 Mbps: 7349.752 Peak Mbps: 7349.752 Avg Mbps: 7349.752 3000 917716336 7341.731 100.00% Conn: 1 Mbps: 7341.731 Peak Mbps: 7349.752 Avg Mbps: 7341.731 4000 916310328 7330.483 100.00% Conn: 1 Mbps: 7330.483 Peak Mbps: 7349.752 Avg Mbps: 7330.483 5000 917468728 7339.750 100.00% Conn: 1 Mbps: 7339.750 Peak Mbps: 7349.752 Avg Mbps: 7339.750 --- 169.254.1.12 tcpbench statistics --- 5499877584 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7309.203/7334.184/7349.752/13.914 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 925569624 7404.557 100.00% Conn: 1 Mbps: 7404.557 Peak Mbps: 7404.557 Avg Mbps: 7404.557 2000 922697916 7388.972 100.00% Conn: 1 Mbps: 7388.972 Peak Mbps: 7404.557 Avg Mbps: 7388.972 3000 922108152 7376.865 100.00% Conn: 1 Mbps: 7376.865 Peak Mbps: 7404.557 Avg Mbps: 7376.865 4000 922203828 7377.631 100.00% Conn: 1 Mbps: 7377.631 Peak Mbps: 7404.557 Avg Mbps: 7377.631 5000 921225648 7369.805 100.00% Conn: 1 Mbps: 7369.805 Peak Mbps: 7404.557 Avg Mbps: 7369.805 --- fc00:0:0:1::12 tcpbench statistics --- 5533734192 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7369.805/7383.566/7404.557/12.160 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.048 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/0.000 ms ==== run-tcpbench-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 1270642366 10165.139 100.00% Conn: 1 Mbps: 10165.139 Peak Mbps: 10165.139 Avg Mbps: 10165.139 2000 1274844372 10208.964 100.00% Conn: 1 Mbps: 10208.964 Peak Mbps: 10208.964 Avg Mbps: 10208.964 3000 1276120296 10208.962 100.00% Conn: 1 Mbps: 10208.962 Peak Mbps: 10208.964 Avg Mbps: 10208.962 4000 1272881412 10193.245 100.00% Conn: 1 Mbps: 10193.245 Peak Mbps: 10208.964 Avg Mbps: 10193.245 5000 1273077708 10184.622 100.00% Conn: 1 Mbps: 10184.622 Peak Mbps: 10208.964 Avg Mbps: 10184.622 --- 169.254.0.13 tcpbench statistics --- 7640676578 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10165.139/10192.186/10208.964/16.449 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 1258667484 10069.340 100.00% Conn: 1 Mbps: 10069.340 Peak Mbps: 10069.340 Avg Mbps: 10069.340 2000 1261509768 10102.180 100.00% Conn: 1 Mbps: 10102.180 Peak Mbps: 10102.180 Avg Mbps: 10102.180 3000 1259744184 10077.953 100.00% Conn: 1 Mbps: 10077.953 Peak Mbps: 10102.180 Avg Mbps: 10077.953 4000 1262163688 10097.310 100.00% Conn: 1 Mbps: 10097.310 Peak Mbps: 10102.180 Avg Mbps: 10097.310 5000 1258861392 10070.891 100.00% Conn: 1 Mbps: 10070.891 Peak Mbps: 10102.180 Avg Mbps: 10070.891 --- fc00::13 tcpbench statistics --- 7560788788 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10069.340/10083.535/10102.180/13.638 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.046 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.046/0.046/0.046/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 372761040 2982.088 100.00% Conn: 1 Mbps: 2982.088 Peak Mbps: 2982.088 Avg Mbps: 2982.088 2001 386401504 3091.212 100.00% Conn: 1 Mbps: 3091.212 Peak Mbps: 3091.212 Avg Mbps: 3091.212 3002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3091.212 Avg Mbps: 3059.745 4002 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3091.212 Avg Mbps: 3057.648 5002 381419520 3051.356 100.00% Conn: 1 Mbps: 3051.356 Peak Mbps: 3091.212 Avg Mbps: 3051.356 --- 169.254.1.11 tcpbench statistics --- 2286413488 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2982.088/3048.410/3091.212/35.925 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 864475328 6915.803 100.00% Conn: 1 Mbps: 6915.803 Peak Mbps: 6915.803 Avg Mbps: 6915.803 2000 944766976 7558.136 100.00% Conn: 1 Mbps: 7558.136 Peak Mbps: 7558.136 Avg Mbps: 7558.136 3000 921287168 7370.297 100.00% Conn: 1 Mbps: 7370.297 Peak Mbps: 7558.136 Avg Mbps: 7370.297 4000 917577808 7340.622 100.00% Conn: 1 Mbps: 7340.622 Peak Mbps: 7558.136 Avg Mbps: 7340.622 5000 920239248 7361.914 100.00% Conn: 1 Mbps: 7361.914 Peak Mbps: 7558.136 Avg Mbps: 7361.914 --- fc00:0:0:1::11 tcpbench statistics --- 5494268872 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6915.803/7309.354/7558.136/211.768 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.043 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-ping6-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 1265884858 10127.079 100.00% Conn: 1 Mbps: 10127.079 Peak Mbps: 10127.079 Avg Mbps: 10127.079 2000 1267123396 10147.134 100.00% Conn: 1 Mbps: 10147.134 Peak Mbps: 10147.134 Avg Mbps: 10147.134 3000 1266174632 10129.397 100.00% Conn: 1 Mbps: 10129.397 Peak Mbps: 10147.134 Avg Mbps: 10129.397 4000 1267712284 10141.698 100.00% Conn: 1 Mbps: 10141.698 Peak Mbps: 10147.134 Avg Mbps: 10141.698 5000 1267941296 10143.530 100.00% Conn: 1 Mbps: 10143.530 Peak Mbps: 10147.134 Avg Mbps: 10143.530 --- 169.254.1.12 tcpbench statistics --- 7603333934 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10127.079/10137.768/10147.134/8.009 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 1263673140 10109.385 100.00% Conn: 1 Mbps: 10109.385 Peak Mbps: 10109.385 Avg Mbps: 10109.385 2000 1266250688 10140.146 100.00% Conn: 1 Mbps: 10140.146 Peak Mbps: 10140.146 Avg Mbps: 10140.146 3000 1268768280 10150.146 100.00% Conn: 1 Mbps: 10150.146 Peak Mbps: 10150.146 Avg Mbps: 10150.146 4000 1265073632 10120.589 100.00% Conn: 1 Mbps: 10120.589 Peak Mbps: 10150.146 Avg Mbps: 10120.589 5000 1270664648 10165.317 100.00% Conn: 1 Mbps: 10165.317 Peak Mbps: 10165.317 Avg Mbps: 10165.317 --- fc00:0:0:1::12 tcpbench statistics --- 7605618172 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10109.385/10137.117/10165.317/20.082 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.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 1272948810 10183.590 100.00% Conn: 1 Mbps: 10183.590 Peak Mbps: 10183.590 Avg Mbps: 10183.590 2000 1276251160 10220.230 100.00% Conn: 1 Mbps: 10220.230 Peak Mbps: 10220.230 Avg Mbps: 10220.230 3000 1278279552 10226.236 100.00% Conn: 1 Mbps: 10226.236 Peak Mbps: 10226.236 Avg Mbps: 10226.236 4000 1276153012 10209.224 100.00% Conn: 1 Mbps: 10209.224 Peak Mbps: 10226.236 Avg Mbps: 10209.224 5000 1279768130 10238.145 100.00% Conn: 1 Mbps: 10238.145 Peak Mbps: 10238.145 Avg Mbps: 10238.145 --- 169.254.0.13 tcpbench statistics --- 7662007376 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10183.590/10215.485/10238.145/18.483 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 1283238852 10265.911 100.00% Conn: 1 Mbps: 10265.911 Peak Mbps: 10265.911 Avg Mbps: 10265.911 2000 1286849168 10305.098 100.00% Conn: 1 Mbps: 10305.098 Peak Mbps: 10305.098 Avg Mbps: 10305.098 3000 1287372304 10298.978 100.00% Conn: 1 Mbps: 10298.978 Peak Mbps: 10305.098 Avg Mbps: 10298.978 4000 1283546872 10268.375 100.00% Conn: 1 Mbps: 10268.375 Peak Mbps: 10305.098 Avg Mbps: 10268.375 5000 1283677656 10269.421 100.00% Conn: 1 Mbps: 10269.421 Peak Mbps: 10305.098 Avg Mbps: 10269.421 --- fc00::13 tcpbench statistics --- 7707643196 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10265.911/10281.557/10305.098/16.873 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.88s