START sys/net/pair 2025-03-24T02:46:13Z ==== 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.047 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.047/0.047/0.047/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 935241160 7481.929 100.00% Conn: 1 Mbps: 7481.929 Peak Mbps: 7481.929 Avg Mbps: 7481.929 2000 930790280 7453.776 100.00% Conn: 1 Mbps: 7453.776 Peak Mbps: 7481.929 Avg Mbps: 7453.776 3000 933063408 7464.507 100.00% Conn: 1 Mbps: 7464.507 Peak Mbps: 7481.929 Avg Mbps: 7464.507 4000 932673956 7461.392 100.00% Conn: 1 Mbps: 7461.392 Peak Mbps: 7481.929 Avg Mbps: 7461.392 5000 931513548 7452.108 100.00% Conn: 1 Mbps: 7452.108 Peak Mbps: 7481.929 Avg Mbps: 7452.108 --- 169.254.1.11 tcpbench statistics --- 5596600096 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7452.108/7462.743/7481.929/10.645 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 932689560 7461.516 100.00% Conn: 1 Mbps: 7461.516 Peak Mbps: 7461.516 Avg Mbps: 7461.516 2000 934576424 7484.095 100.00% Conn: 1 Mbps: 7484.095 Peak Mbps: 7484.095 Avg Mbps: 7484.095 3000 931199096 7449.593 100.00% Conn: 1 Mbps: 7449.593 Peak Mbps: 7484.095 Avg Mbps: 7449.593 4000 934156240 7473.250 100.00% Conn: 1 Mbps: 7473.250 Peak Mbps: 7484.095 Avg Mbps: 7473.250 5000 934132456 7473.060 100.00% Conn: 1 Mbps: 7473.060 Peak Mbps: 7484.095 Avg Mbps: 7473.060 --- fc00:0:0:1::11 tcpbench statistics --- 5598412696 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7449.593/7468.303/7484.095/11.770 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.067 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.067/0.067/0.067/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.129 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.129/0.129/0.129/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 376947256 3012.565 100.00% Conn: 1 Mbps: 3012.565 Peak Mbps: 3012.565 Avg Mbps: 3012.565 2001 390856704 3126.854 100.00% Conn: 1 Mbps: 3126.854 Peak Mbps: 3126.854 Avg Mbps: 3126.854 3002 389021696 3112.174 100.00% Conn: 1 Mbps: 3112.174 Peak Mbps: 3126.854 Avg Mbps: 3112.174 4002 387973120 3103.785 100.00% Conn: 1 Mbps: 3103.785 Peak Mbps: 3126.854 Avg Mbps: 3103.785 5003 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3126.854 Avg Mbps: 3070.231 --- 169.254.1.12 tcpbench statistics --- 2314977848 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3012.565/3085.122/3126.854/40.762 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 352617724 2818.124 100.00% Conn: 1 Mbps: 2818.124 Peak Mbps: 2818.124 Avg Mbps: 2818.124 2001 363593728 2908.750 100.00% Conn: 1 Mbps: 2908.750 Peak Mbps: 2908.750 Avg Mbps: 2908.750 3001 362807296 2902.458 100.00% Conn: 1 Mbps: 2902.458 Peak Mbps: 2908.750 Avg Mbps: 2902.458 4001 368574464 2951.547 100.00% Conn: 1 Mbps: 2951.547 Peak Mbps: 2951.547 Avg Mbps: 2951.547 5002 368312320 2946.499 100.00% Conn: 1 Mbps: 2946.499 Peak Mbps: 2951.547 Avg Mbps: 2946.499 --- fc00:0:0:1::12 tcpbench statistics --- 2183739360 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2818.124/2905.476/2951.547/47.866 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.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 758343616 6066.749 100.00% Conn: 1 Mbps: 6066.749 Peak Mbps: 6066.749 Avg Mbps: 6066.749 2000 804552196 6436.418 100.00% Conn: 1 Mbps: 6436.418 Peak Mbps: 6436.418 Avg Mbps: 6436.418 3001 808065352 6464.523 100.00% Conn: 1 Mbps: 6464.523 Peak Mbps: 6464.523 Avg Mbps: 6464.523 4001 812039072 6496.313 100.00% Conn: 1 Mbps: 6496.313 Peak Mbps: 6496.313 Avg Mbps: 6496.313 5001 822339680 6585.303 100.00% Conn: 1 Mbps: 6585.303 Peak Mbps: 6585.303 Avg Mbps: 6585.303 --- 169.254.0.13 tcpbench statistics --- 4824265304 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6066.749/6409.861/6585.303/178.702 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 711078696 5688.630 100.00% Conn: 1 Mbps: 5688.630 Peak Mbps: 5688.630 Avg Mbps: 5688.630 2000 758345432 6072.836 100.00% Conn: 1 Mbps: 6072.836 Peak Mbps: 6072.836 Avg Mbps: 6072.836 3000 755007744 6040.062 100.00% Conn: 1 Mbps: 6040.062 Peak Mbps: 6072.836 Avg Mbps: 6040.062 4000 761088000 6088.704 100.00% Conn: 1 Mbps: 6088.704 Peak Mbps: 6088.704 Avg Mbps: 6088.704 5000 756468840 6057.809 100.00% Conn: 1 Mbps: 6057.809 Peak Mbps: 6088.704 Avg Mbps: 6057.809 --- fc00::13 tcpbench statistics --- 4498677192 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5688.630/5989.608/6088.704/151.349 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.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-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 371358504 2967.900 100.00% Conn: 1 Mbps: 2967.900 Peak Mbps: 2967.900 Avg Mbps: 2967.900 2001 382016168 3056.129 100.00% Conn: 1 Mbps: 3056.129 Peak Mbps: 3056.129 Avg Mbps: 3056.129 3002 378011648 3024.093 100.00% Conn: 1 Mbps: 3024.093 Peak Mbps: 3056.129 Avg Mbps: 3024.093 4002 378011648 3024.093 100.00% Conn: 1 Mbps: 3024.093 Peak Mbps: 3056.129 Avg Mbps: 3024.093 5002 377749504 3021.996 100.00% Conn: 1 Mbps: 3021.996 Peak Mbps: 3056.129 Avg Mbps: 3021.996 --- 169.254.1.11 tcpbench statistics --- 2265945552 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2967.900/3018.842/3056.129/28.462 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 354438960 2832.679 100.00% Conn: 1 Mbps: 2832.679 Peak Mbps: 2832.679 Avg Mbps: 2832.679 2001 362373704 2901.892 100.00% Conn: 1 Mbps: 2901.892 Peak Mbps: 2901.892 Avg Mbps: 2901.892 3001 364642304 2917.138 100.00% Conn: 1 Mbps: 2917.138 Peak Mbps: 2917.138 Avg Mbps: 2917.138 4002 362020864 2896.167 100.00% Conn: 1 Mbps: 2896.167 Peak Mbps: 2917.138 Avg Mbps: 2896.167 5002 362020864 2896.167 100.00% Conn: 1 Mbps: 2896.167 Peak Mbps: 2917.138 Avg Mbps: 2896.167 --- fc00:0:0:1::11 tcpbench statistics --- 2172498296 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2832.679/2888.809/2917.138/29.095 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.040 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.040/0.040/0.040/0.000 ms ==== run-ping6-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.045 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.045/0.045/0.045/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 912920560 7303.364 100.00% Conn: 1 Mbps: 7303.364 Peak Mbps: 7303.364 Avg Mbps: 7303.364 2000 912704808 7308.947 100.00% Conn: 1 Mbps: 7308.947 Peak Mbps: 7308.947 Avg Mbps: 7308.947 3000 912244344 7297.955 100.00% Conn: 1 Mbps: 7297.955 Peak Mbps: 7308.947 Avg Mbps: 7297.955 4000 913408536 7307.268 100.00% Conn: 1 Mbps: 7307.268 Peak Mbps: 7308.947 Avg Mbps: 7307.268 5000 912588968 7300.712 100.00% Conn: 1 Mbps: 7300.712 Peak Mbps: 7308.947 Avg Mbps: 7300.712 --- 169.254.1.12 tcpbench statistics --- 5477193216 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7297.955/7303.649/7308.947/4.057 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 904226736 7233.814 100.00% Conn: 1 Mbps: 7233.814 Peak Mbps: 7233.814 Avg Mbps: 7233.814 2000 904903608 7246.475 100.00% Conn: 1 Mbps: 7246.475 Peak Mbps: 7246.475 Avg Mbps: 7246.475 3000 904166760 7233.334 100.00% Conn: 1 Mbps: 7233.334 Peak Mbps: 7246.475 Avg Mbps: 7233.334 4000 903187152 7225.497 100.00% Conn: 1 Mbps: 7225.497 Peak Mbps: 7246.475 Avg Mbps: 7225.497 5000 902920116 7230.592 100.00% Conn: 1 Mbps: 7230.592 Peak Mbps: 7246.475 Avg Mbps: 7230.592 --- fc00:0:0:1::12 tcpbench statistics --- 5421818976 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7225.497/7233.942/7246.475/6.928 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.042 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.042/0.042/0.042/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 1266135890 10129.087 100.00% Conn: 1 Mbps: 10129.087 Peak Mbps: 10129.087 Avg Mbps: 10129.087 2000 1270394996 10173.333 100.00% Conn: 1 Mbps: 10173.333 Peak Mbps: 10173.333 Avg Mbps: 10173.333 3000 1271016600 10168.133 100.00% Conn: 1 Mbps: 10168.133 Peak Mbps: 10173.333 Avg Mbps: 10168.133 4000 1270362280 10162.898 100.00% Conn: 1 Mbps: 10162.898 Peak Mbps: 10173.333 Avg Mbps: 10162.898 5000 1271474624 10171.797 100.00% Conn: 1 Mbps: 10171.797 Peak Mbps: 10173.333 Avg Mbps: 10171.797 --- 169.254.0.13 tcpbench statistics --- 7620221052 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10129.087/10161.050/10173.333/16.380 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 1259584124 10076.673 100.00% Conn: 1 Mbps: 10076.673 Peak Mbps: 10076.673 Avg Mbps: 10076.673 2000 1260659672 10095.373 100.00% Conn: 1 Mbps: 10095.373 Peak Mbps: 10095.373 Avg Mbps: 10095.373 3000 1262556040 10100.448 100.00% Conn: 1 Mbps: 10100.448 Peak Mbps: 10100.448 Avg Mbps: 10100.448 4000 1259155656 10073.245 100.00% Conn: 1 Mbps: 10073.245 Peak Mbps: 10100.448 Avg Mbps: 10073.245 5000 1259973056 10079.784 100.00% Conn: 1 Mbps: 10079.784 Peak Mbps: 10100.448 Avg Mbps: 10079.784 --- fc00::13 tcpbench statistics --- 7565171204 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10073.245/10085.105/10100.448/10.779 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.048 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.048/0.048/0.048/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.054 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.054/0.054/0.054/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 376524256 3012.194 100.00% Conn: 1 Mbps: 3012.194 Peak Mbps: 3012.194 Avg Mbps: 3012.194 2001 385089536 3080.716 100.00% Conn: 1 Mbps: 3080.716 Peak Mbps: 3080.716 Avg Mbps: 3080.716 3002 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3080.716 Avg Mbps: 3057.648 4002 390070272 3120.562 100.00% Conn: 1 Mbps: 3120.562 Peak Mbps: 3120.562 Avg Mbps: 3120.562 5002 387710976 3101.688 100.00% Conn: 1 Mbps: 3101.688 Peak Mbps: 3120.562 Avg Mbps: 3101.688 --- 169.254.1.11 tcpbench statistics --- 2308001248 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 3012.194/3074.562/3120.562/37.591 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 862213952 6897.712 100.00% Conn: 1 Mbps: 6897.712 Peak Mbps: 6897.712 Avg Mbps: 6897.712 2000 921960448 7383.067 100.00% Conn: 1 Mbps: 7383.067 Peak Mbps: 7383.067 Avg Mbps: 7383.067 3000 887042288 7096.338 100.00% Conn: 1 Mbps: 7096.338 Peak Mbps: 7383.067 Avg Mbps: 7096.338 4000 902668384 7221.347 100.00% Conn: 1 Mbps: 7221.347 Peak Mbps: 7383.067 Avg Mbps: 7221.347 5000 892076032 7136.608 100.00% Conn: 1 Mbps: 7136.608 Peak Mbps: 7383.067 Avg Mbps: 7136.608 --- fc00:0:0:1::11 tcpbench statistics --- 5360488464 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6897.712/7147.014/7383.067/158.792 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.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 1275536374 10204.291 100.00% Conn: 1 Mbps: 10204.291 Peak Mbps: 10204.291 Avg Mbps: 10204.291 2000 1276676468 10223.635 100.00% Conn: 1 Mbps: 10223.635 Peak Mbps: 10223.635 Avg Mbps: 10223.635 3000 1277559800 10230.709 100.00% Conn: 1 Mbps: 10230.709 Peak Mbps: 10230.709 Avg Mbps: 10230.709 4000 1276545604 10212.365 100.00% Conn: 1 Mbps: 10212.365 Peak Mbps: 10230.709 Avg Mbps: 10212.365 5000 1276169370 10209.355 100.00% Conn: 1 Mbps: 10209.355 Peak Mbps: 10230.709 Avg Mbps: 10209.355 --- 169.254.1.12 tcpbench statistics --- 7658673344 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10204.291/10216.071/10230.709/9.686 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 1275182276 10201.458 100.00% Conn: 1 Mbps: 10201.458 Peak Mbps: 10201.458 Avg Mbps: 10201.458 2000 1278773256 10240.426 100.00% Conn: 1 Mbps: 10240.426 Peak Mbps: 10240.426 Avg Mbps: 10240.426 3000 1279557960 10236.464 100.00% Conn: 1 Mbps: 10236.464 Peak Mbps: 10240.426 Avg Mbps: 10236.464 4000 1277498112 10219.985 100.00% Conn: 1 Mbps: 10219.985 Peak Mbps: 10240.426 Avg Mbps: 10219.985 5000 1276517232 10212.138 100.00% Conn: 1 Mbps: 10212.138 Peak Mbps: 10240.426 Avg Mbps: 10212.138 --- fc00:0:0:1::12 tcpbench statistics --- 7664798076 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10201.458/10222.094/10240.426/14.642 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 1265676108 10125.409 100.00% Conn: 1 Mbps: 10125.409 Peak Mbps: 10125.409 Avg Mbps: 10125.409 2000 1268988208 10162.068 100.00% Conn: 1 Mbps: 10162.068 Peak Mbps: 10162.068 Avg Mbps: 10162.068 3000 1268971850 10151.775 100.00% Conn: 1 Mbps: 10151.775 Peak Mbps: 10162.068 Avg Mbps: 10151.775 4000 1270018762 10160.150 100.00% Conn: 1 Mbps: 10160.150 Peak Mbps: 10162.068 Avg Mbps: 10160.150 5000 1269446232 10155.570 100.00% Conn: 1 Mbps: 10155.570 Peak Mbps: 10162.068 Avg Mbps: 10155.570 --- 169.254.0.13 tcpbench statistics --- 7613299860 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10125.409/10150.994/10162.068/13.286 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 1287530092 10300.241 100.00% Conn: 1 Mbps: 10300.241 Peak Mbps: 10300.241 Avg Mbps: 10300.241 2000 1290347640 10333.114 100.00% Conn: 1 Mbps: 10333.114 Peak Mbps: 10333.114 Avg Mbps: 10333.114 3000 1293159496 10345.276 100.00% Conn: 1 Mbps: 10345.276 Peak Mbps: 10345.276 Avg Mbps: 10345.276 4000 1292276704 10338.214 100.00% Conn: 1 Mbps: 10338.214 Peak Mbps: 10345.276 Avg Mbps: 10338.214 5000 1294205768 10353.646 100.00% Conn: 1 Mbps: 10353.646 Peak Mbps: 10353.646 Avg Mbps: 10353.646 --- fc00::13 tcpbench statistics --- 7750973460 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10300.241/10334.098/10353.646/18.283 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.91s