START sys/net/pair 2025-03-17T15:53:57Z ==== 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.041 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.041/0.041/0.041/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 930551840 7444.415 100.00% Conn: 1 Mbps: 7444.415 Peak Mbps: 7444.415 Avg Mbps: 7444.415 2000 930702852 7453.076 100.00% Conn: 1 Mbps: 7453.076 Peak Mbps: 7453.076 Avg Mbps: 7453.076 3000 930893604 7447.149 100.00% Conn: 1 Mbps: 7447.149 Peak Mbps: 7453.076 Avg Mbps: 7447.149 4000 928008480 7424.068 100.00% Conn: 1 Mbps: 7424.068 Peak Mbps: 7453.076 Avg Mbps: 7424.068 5000 928072064 7424.577 100.00% Conn: 1 Mbps: 7424.577 Peak Mbps: 7453.076 Avg Mbps: 7424.577 --- 169.254.1.11 tcpbench statistics --- 5579591376 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7424.068/7438.657/7453.076/12.036 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 941291440 7530.332 100.00% Conn: 1 Mbps: 7530.332 Peak Mbps: 7530.332 Avg Mbps: 7530.332 2000 938302584 7513.935 100.00% Conn: 1 Mbps: 7513.935 Peak Mbps: 7530.332 Avg Mbps: 7513.935 3000 940118096 7520.945 100.00% Conn: 1 Mbps: 7520.945 Peak Mbps: 7530.332 Avg Mbps: 7520.945 4000 936376080 7491.009 100.00% Conn: 1 Mbps: 7491.009 Peak Mbps: 7530.332 Avg Mbps: 7491.009 5000 938199520 7505.596 100.00% Conn: 1 Mbps: 7505.596 Peak Mbps: 7530.332 Avg Mbps: 7505.596 --- fc00:0:0:1::11 tcpbench statistics --- 5632249400 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7491.009/7512.363/7530.332/13.422 Mbps ==== run-ping-1-2 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.065 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.065/0.065/0.065/0.000 ms ==== run-ping6-1-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.118 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.118/0.118/0.118/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 373133960 2982.090 100.00% Conn: 1 Mbps: 2982.090 Peak Mbps: 2982.090 Avg Mbps: 2982.090 2001 385875968 3087.008 100.00% Conn: 1 Mbps: 3087.008 Peak Mbps: 3087.008 Avg Mbps: 3087.008 3002 382992384 3063.939 100.00% Conn: 1 Mbps: 3063.939 Peak Mbps: 3087.008 Avg Mbps: 3063.939 4002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3087.008 Avg Mbps: 3059.745 5002 382205952 3060.708 100.00% Conn: 1 Mbps: 3060.708 Peak Mbps: 3087.008 Avg Mbps: 3060.708 --- 169.254.1.12 tcpbench statistics --- 2291503752 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2982.090/3050.698/3087.008/35.729 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 352939368 2820.694 100.00% Conn: 1 Mbps: 2820.694 Peak Mbps: 2820.694 Avg Mbps: 2820.694 2001 367263744 2938.110 100.00% Conn: 1 Mbps: 2938.110 Peak Mbps: 2938.110 Avg Mbps: 2938.110 3001 367996796 2943.974 100.00% Conn: 1 Mbps: 2943.974 Peak Mbps: 2943.974 Avg Mbps: 2943.974 4002 365929204 2927.434 100.00% Conn: 1 Mbps: 2927.434 Peak Mbps: 2943.974 Avg Mbps: 2927.434 5002 362545152 2900.361 100.00% Conn: 1 Mbps: 2900.361 Peak Mbps: 2943.974 Avg Mbps: 2900.361 --- fc00:0:0:1::12 tcpbench statistics --- 2178170840 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2820.694/2906.115/2943.974/45.258 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.056 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.056/0.056/0.056/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.064 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.064/0.064/0.064/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 749830076 5998.641 100.00% Conn: 1 Mbps: 5998.641 Peak Mbps: 5998.641 Avg Mbps: 5998.641 2000 791324352 6330.595 100.00% Conn: 1 Mbps: 6330.595 Peak Mbps: 6330.595 Avg Mbps: 6330.595 3000 784427860 6275.423 100.00% Conn: 1 Mbps: 6275.423 Peak Mbps: 6330.595 Avg Mbps: 6275.423 4000 797327604 6385.006 100.00% Conn: 1 Mbps: 6385.006 Peak Mbps: 6385.006 Avg Mbps: 6385.006 5000 798487592 6394.295 100.00% Conn: 1 Mbps: 6394.295 Peak Mbps: 6394.295 Avg Mbps: 6394.295 --- 169.254.0.13 tcpbench statistics --- 4728961692 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5998.641/6276.792/6394.295/145.452 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 706267440 5650.140 100.00% Conn: 1 Mbps: 5650.140 Peak Mbps: 5650.140 Avg Mbps: 5650.140 2000 747099944 5976.800 100.00% Conn: 1 Mbps: 5976.800 Peak Mbps: 5976.800 Avg Mbps: 5976.800 3001 750593928 6004.751 100.00% Conn: 1 Mbps: 6004.751 Peak Mbps: 6004.751 Avg Mbps: 6004.751 4002 754905200 6033.208 100.00% Conn: 1 Mbps: 6033.208 Peak Mbps: 6033.208 Avg Mbps: 6033.208 5001 752060608 6022.507 100.00% Conn: 1 Mbps: 6022.507 Peak Mbps: 6033.208 Avg Mbps: 6022.507 --- fc00::13 tcpbench statistics --- 4452804536 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5650.140/5937.481/6033.208/144.934 Mbps ==== run-ping-2-1 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.041 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.041/0.041/0.041/0.000 ms ==== run-ping6-2-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.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-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 370323008 2962.584 100.00% Conn: 1 Mbps: 2962.584 Peak Mbps: 2962.584 Avg Mbps: 2962.584 2001 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3047.162 Avg Mbps: 3047.162 3001 383294776 3066.358 100.00% Conn: 1 Mbps: 3066.358 Peak Mbps: 3066.358 Avg Mbps: 3066.358 4001 384565248 3076.522 100.00% Conn: 1 Mbps: 3076.522 Peak Mbps: 3076.522 Avg Mbps: 3076.522 5002 384303104 3074.425 100.00% Conn: 1 Mbps: 3074.425 Peak Mbps: 3076.522 Avg Mbps: 3074.425 --- 169.254.1.11 tcpbench statistics --- 2285325176 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2962.584/3045.410/3076.522/42.689 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 356295548 2847.517 100.00% Conn: 1 Mbps: 2847.517 Peak Mbps: 2847.517 Avg Mbps: 2847.517 2001 363780760 2910.246 100.00% Conn: 1 Mbps: 2910.246 Peak Mbps: 2910.246 Avg Mbps: 2910.246 3002 364904448 2919.236 100.00% Conn: 1 Mbps: 2919.236 Peak Mbps: 2919.236 Avg Mbps: 2919.236 4002 365166592 2921.333 100.00% Conn: 1 Mbps: 2921.333 Peak Mbps: 2921.333 Avg Mbps: 2921.333 5002 365166592 2921.333 100.00% Conn: 1 Mbps: 2921.333 Peak Mbps: 2921.333 Avg Mbps: 2921.333 --- fc00:0:0:1::11 tcpbench statistics --- 2182328992 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2847.517/2903.933/2921.333/28.504 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.040 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.040/0.040/0.040/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 915580536 7324.644 100.00% Conn: 1 Mbps: 7324.644 Peak Mbps: 7324.644 Avg Mbps: 7324.644 2000 917310896 7345.833 100.00% Conn: 1 Mbps: 7345.833 Peak Mbps: 7345.833 Avg Mbps: 7345.833 3000 919632040 7357.056 100.00% Conn: 1 Mbps: 7357.056 Peak Mbps: 7357.056 Avg Mbps: 7357.056 4000 921107552 7368.860 100.00% Conn: 1 Mbps: 7368.860 Peak Mbps: 7368.860 Avg Mbps: 7368.860 5000 919865168 7358.921 100.00% Conn: 1 Mbps: 7358.921 Peak Mbps: 7368.860 Avg Mbps: 7358.921 --- 169.254.1.12 tcpbench statistics --- 5511555704 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7324.644/7351.063/7368.860/15.098 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 900148368 7201.187 100.00% Conn: 1 Mbps: 7201.187 Peak Mbps: 7201.187 Avg Mbps: 7201.187 2000 895400268 7170.373 100.00% Conn: 1 Mbps: 7170.373 Peak Mbps: 7201.187 Avg Mbps: 7170.373 3000 894189324 7153.515 100.00% Conn: 1 Mbps: 7153.515 Peak Mbps: 7201.187 Avg Mbps: 7153.515 4000 897146712 7177.174 100.00% Conn: 1 Mbps: 7177.174 Peak Mbps: 7201.187 Avg Mbps: 7177.174 5000 894773376 7158.187 100.00% Conn: 1 Mbps: 7158.187 Peak Mbps: 7201.187 Avg Mbps: 7158.187 --- fc00:0:0:1::12 tcpbench statistics --- 5372096016 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7153.515/7172.087/7201.187/16.815 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.043 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-tcpbench-2-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 1257020466 10056.164 100.00% Conn: 1 Mbps: 10056.164 Peak Mbps: 10056.164 Avg Mbps: 10056.164 2000 1258977112 10081.899 100.00% Conn: 1 Mbps: 10081.899 Peak Mbps: 10081.899 Avg Mbps: 10081.899 3000 1258273718 10066.190 100.00% Conn: 1 Mbps: 10066.190 Peak Mbps: 10081.899 Avg Mbps: 10066.190 4000 1258584520 10068.676 100.00% Conn: 1 Mbps: 10068.676 Peak Mbps: 10081.899 Avg Mbps: 10068.676 5000 1259991308 10079.930 100.00% Conn: 1 Mbps: 10079.930 Peak Mbps: 10081.899 Avg Mbps: 10079.930 --- 169.254.0.13 tcpbench statistics --- 7552658494 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10056.164/10070.572/10081.899/9.447 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 1215730036 9725.840 100.00% Conn: 1 Mbps: 9725.840 Peak Mbps: 9725.840 Avg Mbps: 9725.840 2000 1220607072 9774.631 100.00% Conn: 1 Mbps: 9774.631 Peak Mbps: 9774.631 Avg Mbps: 9774.631 3000 1225969216 9807.754 100.00% Conn: 1 Mbps: 9807.754 Peak Mbps: 9807.754 Avg Mbps: 9807.754 4000 1223517016 9788.136 100.00% Conn: 1 Mbps: 9788.136 Peak Mbps: 9807.754 Avg Mbps: 9788.136 5000 1217762520 9742.100 100.00% Conn: 1 Mbps: 9742.100 Peak Mbps: 9807.754 Avg Mbps: 9742.100 --- fc00::13 tcpbench statistics --- 7319125052 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9725.840/9767.692/9807.754/29.925 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.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-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.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-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 374072952 2989.594 100.00% Conn: 1 Mbps: 2989.594 Peak Mbps: 2989.594 Avg Mbps: 2989.594 2001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3057.648 Avg Mbps: 3057.648 3002 375652352 3005.219 100.00% Conn: 1 Mbps: 3005.219 Peak Mbps: 3057.648 Avg Mbps: 3005.219 4002 378535936 3028.287 100.00% Conn: 1 Mbps: 3028.287 Peak Mbps: 3057.648 Avg Mbps: 3028.287 5002 380633088 3048.113 100.00% Conn: 1 Mbps: 3048.113 Peak Mbps: 3057.648 Avg Mbps: 3048.113 --- 169.254.1.11 tcpbench statistics --- 2269374072 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2989.594/3025.772/3057.648/25.506 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 843763200 6750.106 100.00% Conn: 1 Mbps: 6750.106 Peak Mbps: 6750.106 Avg Mbps: 6750.106 2000 899970936 7206.974 100.00% Conn: 1 Mbps: 7206.974 Peak Mbps: 7206.974 Avg Mbps: 7206.974 3000 896270336 7170.163 100.00% Conn: 1 Mbps: 7170.163 Peak Mbps: 7206.974 Avg Mbps: 7170.163 4000 928145336 7425.163 100.00% Conn: 1 Mbps: 7425.163 Peak Mbps: 7425.163 Avg Mbps: 7425.163 5000 903153672 7225.229 100.00% Conn: 1 Mbps: 7225.229 Peak Mbps: 7425.163 Avg Mbps: 7225.229 --- fc00:0:0:1::11 tcpbench statistics --- 5354735528 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6750.106/7155.527/7425.163/221.264 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.041 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.041/0.041/0.041/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 1265973744 10127.790 100.00% Conn: 1 Mbps: 10127.790 Peak Mbps: 10127.790 Avg Mbps: 10127.790 2000 1271114748 10179.097 100.00% Conn: 1 Mbps: 10179.097 Peak Mbps: 10179.097 Avg Mbps: 10179.097 3000 1269086356 10152.691 100.00% Conn: 1 Mbps: 10152.691 Peak Mbps: 10179.097 Avg Mbps: 10152.691 4000 1271082032 10168.656 100.00% Conn: 1 Mbps: 10168.656 Peak Mbps: 10179.097 Avg Mbps: 10168.656 5000 1271932648 10175.461 100.00% Conn: 1 Mbps: 10175.461 Peak Mbps: 10179.097 Avg Mbps: 10175.461 --- 169.254.1.12 tcpbench statistics --- 7620369708 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10127.790/10160.739/10179.097/18.798 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 1254448404 10035.587 100.00% Conn: 1 Mbps: 10035.587 Peak Mbps: 10035.587 Avg Mbps: 10035.587 2000 1257455464 10069.713 100.00% Conn: 1 Mbps: 10069.713 Peak Mbps: 10069.713 Avg Mbps: 10069.713 3000 1257978600 10063.829 100.00% Conn: 1 Mbps: 10063.829 Peak Mbps: 10069.713 Avg Mbps: 10063.829 4000 1260038448 10080.308 100.00% Conn: 1 Mbps: 10080.308 Peak Mbps: 10080.308 Avg Mbps: 10080.308 5000 1253270376 10026.163 100.00% Conn: 1 Mbps: 10026.163 Peak Mbps: 10080.308 Avg Mbps: 10026.163 --- fc00:0:0:1::12 tcpbench statistics --- 7541039108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10026.163/10055.120/10080.308/20.704 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.037 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.037/0.037/0.037/0.000 ms ==== run-ping6-3-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.039 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.039/0.039/0.039/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 1262243330 10097.947 100.00% Conn: 1 Mbps: 10097.947 Peak Mbps: 10097.947 Avg Mbps: 10097.947 2000 1268268456 10156.304 100.00% Conn: 1 Mbps: 10156.304 Peak Mbps: 10156.304 Avg Mbps: 10156.304 3000 1267581420 10140.651 100.00% Conn: 1 Mbps: 10140.651 Peak Mbps: 10156.304 Avg Mbps: 10140.651 4000 1267008890 10136.071 100.00% Conn: 1 Mbps: 10136.071 Peak Mbps: 10156.304 Avg Mbps: 10136.071 5000 1266190990 10129.528 100.00% Conn: 1 Mbps: 10129.528 Peak Mbps: 10156.304 Avg Mbps: 10129.528 --- 169.254.0.13 tcpbench statistics --- 7601851662 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10097.947/10132.100/10156.304/19.224 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 1274401676 10195.213 100.00% Conn: 1 Mbps: 10195.213 Peak Mbps: 10195.213 Avg Mbps: 10195.213 2000 1276321056 10220.789 100.00% Conn: 1 Mbps: 10220.789 Peak Mbps: 10220.789 Avg Mbps: 10220.789 3000 1278086640 10224.693 100.00% Conn: 1 Mbps: 10224.693 Peak Mbps: 10224.693 Avg Mbps: 10224.693 4000 1279034824 10232.279 100.00% Conn: 1 Mbps: 10232.279 Peak Mbps: 10232.279 Avg Mbps: 10232.279 5000 1279002128 10232.017 100.00% Conn: 1 Mbps: 10232.017 Peak Mbps: 10232.279 Avg Mbps: 10232.017 --- fc00::13 tcpbench statistics --- 7666273500 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10195.213/10220.998/10232.279/13.618 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.84s