START sys/net/pair 2025-03-28T02:42:08Z ==== 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.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-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.046 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 921300368 7370.403 100.00% Conn: 1 Mbps: 7370.403 Peak Mbps: 7370.403 Avg Mbps: 7370.403 2000 920386348 7370.461 100.00% Conn: 1 Mbps: 7370.461 Peak Mbps: 7370.461 Avg Mbps: 7370.461 3000 926887812 7415.102 100.00% Conn: 1 Mbps: 7415.102 Peak Mbps: 7415.102 Avg Mbps: 7415.102 4000 922452828 7379.623 100.00% Conn: 1 Mbps: 7379.623 Peak Mbps: 7415.102 Avg Mbps: 7379.623 5000 924058324 7392.467 100.00% Conn: 1 Mbps: 7392.467 Peak Mbps: 7415.102 Avg Mbps: 7392.467 --- 169.254.1.11 tcpbench statistics --- 5537474924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7370.403/7385.611/7415.102/16.813 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 942361720 7538.894 100.00% Conn: 1 Mbps: 7538.894 Peak Mbps: 7538.894 Avg Mbps: 7538.894 2000 941949464 7543.139 100.00% Conn: 1 Mbps: 7543.139 Peak Mbps: 7543.139 Avg Mbps: 7543.139 3000 939951608 7519.613 100.00% Conn: 1 Mbps: 7519.613 Peak Mbps: 7543.139 Avg Mbps: 7519.613 4000 941212160 7529.697 100.00% Conn: 1 Mbps: 7529.697 Peak Mbps: 7543.139 Avg Mbps: 7529.697 5000 942179376 7537.435 100.00% Conn: 1 Mbps: 7537.435 Peak Mbps: 7543.139 Avg Mbps: 7537.435 --- fc00:0:0:1::11 tcpbench statistics --- 5649912984 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7519.613/7533.756/7543.139/8.300 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.131 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.131/0.131/0.131/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 370364536 2962.916 100.00% Conn: 1 Mbps: 2962.916 Peak Mbps: 2962.916 Avg Mbps: 2962.916 2001 384040960 3072.328 100.00% Conn: 1 Mbps: 3072.328 Peak Mbps: 3072.328 Avg Mbps: 3072.328 3001 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3072.328 Avg Mbps: 3045.065 4002 381681664 3053.453 100.00% Conn: 1 Mbps: 3053.453 Peak Mbps: 3072.328 Avg Mbps: 3053.453 5002 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3089.105 Avg Mbps: 3089.105 --- 169.254.1.12 tcpbench statistics --- 2288210040 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2962.916/3044.573/3089.105/43.590 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 348618112 2788.945 100.00% Conn: 1 Mbps: 2788.945 Peak Mbps: 2788.945 Avg Mbps: 2788.945 2000 357302272 2861.279 100.00% Conn: 1 Mbps: 2861.279 Peak Mbps: 2861.279 Avg Mbps: 2861.279 3001 362618680 2898.051 100.00% Conn: 1 Mbps: 2898.051 Peak Mbps: 2898.051 Avg Mbps: 2898.051 4001 360887392 2887.099 100.00% Conn: 1 Mbps: 2887.099 Peak Mbps: 2898.051 Avg Mbps: 2887.099 5002 363855872 2910.847 100.00% Conn: 1 Mbps: 2910.847 Peak Mbps: 2910.847 Avg Mbps: 2910.847 --- fc00:0:0:1::12 tcpbench statistics --- 2151779128 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2788.945/2869.244/2910.847/43.338 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.055 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.055/0.055/0.055/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.066 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.066/0.066/0.066/0.000 ms ==== run-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 752429072 6019.433 100.00% Conn: 1 Mbps: 6019.433 Peak Mbps: 6019.433 Avg Mbps: 6019.433 2000 794823844 6358.591 100.00% Conn: 1 Mbps: 6358.591 Peak Mbps: 6358.591 Avg Mbps: 6358.591 3000 787998976 6310.302 100.00% Conn: 1 Mbps: 6310.302 Peak Mbps: 6358.591 Avg Mbps: 6310.302 4000 791326724 6336.951 100.00% Conn: 1 Mbps: 6336.951 Peak Mbps: 6358.591 Avg Mbps: 6336.951 5001 800037592 6400.301 100.00% Conn: 1 Mbps: 6400.301 Peak Mbps: 6400.301 Avg Mbps: 6400.301 --- 169.254.0.13 tcpbench statistics --- 4725072288 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6019.433/6285.115/6400.301/136.070 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 706180232 5649.442 100.00% Conn: 1 Mbps: 5649.442 Peak Mbps: 5649.442 Avg Mbps: 5649.442 2000 735329928 5882.639 100.00% Conn: 1 Mbps: 5882.639 Peak Mbps: 5882.639 Avg Mbps: 5882.639 3000 739152264 5919.137 100.00% Conn: 1 Mbps: 5919.137 Peak Mbps: 5919.137 Avg Mbps: 5919.137 4001 747855128 5982.841 100.00% Conn: 1 Mbps: 5982.841 Peak Mbps: 5982.841 Avg Mbps: 5982.841 5001 742892720 5943.142 100.00% Conn: 1 Mbps: 5943.142 Peak Mbps: 5982.841 Avg Mbps: 5943.142 --- fc00::13 tcpbench statistics --- 4416231944 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5649.442/5875.440/5982.841/117.605 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.043 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.043/0.043/0.043/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 372619376 2977.977 100.00% Conn: 1 Mbps: 2977.977 Peak Mbps: 2977.977 Avg Mbps: 2977.977 2002 379409640 3035.277 100.00% Conn: 1 Mbps: 3035.277 Peak Mbps: 3035.277 Avg Mbps: 3035.277 3002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3059.745 Avg Mbps: 3059.745 4002 383095048 3064.760 100.00% Conn: 1 Mbps: 3064.760 Peak Mbps: 3064.760 Avg Mbps: 3064.760 5002 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3064.760 Avg Mbps: 3057.648 --- 169.254.1.11 tcpbench statistics --- 2275712608 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2977.977/3039.081/3064.760/32.185 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 353370736 2824.142 100.00% Conn: 1 Mbps: 2824.142 Peak Mbps: 2824.142 Avg Mbps: 2824.142 2001 362283008 2898.264 100.00% Conn: 1 Mbps: 2898.264 Peak Mbps: 2898.264 Avg Mbps: 2898.264 3001 361758564 2894.069 100.00% Conn: 1 Mbps: 2894.069 Peak Mbps: 2898.264 Avg Mbps: 2894.069 4001 363593728 2908.750 100.00% Conn: 1 Mbps: 2908.750 Peak Mbps: 2908.750 Avg Mbps: 2908.750 5002 359759372 2878.075 100.00% Conn: 1 Mbps: 2878.075 Peak Mbps: 2908.750 Avg Mbps: 2878.075 --- fc00:0:0:1::11 tcpbench statistics --- 2153873376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2824.142/2880.660/2908.750/29.932 Mbps ==== run-ping-2-2 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.038 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.038/0.038/0.038/0.000 ms ==== run-ping6-2-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.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-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 923417112 7387.337 100.00% Conn: 1 Mbps: 7387.337 Peak Mbps: 7387.337 Avg Mbps: 7387.337 2000 922629400 7388.424 100.00% Conn: 1 Mbps: 7388.424 Peak Mbps: 7388.424 Avg Mbps: 7388.424 3000 923844272 7390.754 100.00% Conn: 1 Mbps: 7390.754 Peak Mbps: 7390.754 Avg Mbps: 7390.754 4000 925548568 7404.389 100.00% Conn: 1 Mbps: 7404.389 Peak Mbps: 7404.389 Avg Mbps: 7404.389 5000 925450104 7403.601 100.00% Conn: 1 Mbps: 7403.601 Peak Mbps: 7404.389 Avg Mbps: 7403.601 --- 169.254.1.12 tcpbench statistics --- 5544160320 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7387.337/7394.901/7404.389/7.511 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 909958728 7279.670 100.00% Conn: 1 Mbps: 7279.670 Peak Mbps: 7279.670 Avg Mbps: 7279.670 2000 907476864 7267.082 100.00% Conn: 1 Mbps: 7267.082 Peak Mbps: 7279.670 Avg Mbps: 7267.082 3000 907542552 7260.340 100.00% Conn: 1 Mbps: 7260.340 Peak Mbps: 7279.670 Avg Mbps: 7260.340 4000 906442992 7251.544 100.00% Conn: 1 Mbps: 7251.544 Peak Mbps: 7279.670 Avg Mbps: 7251.544 5000 908927712 7271.422 100.00% Conn: 1 Mbps: 7271.422 Peak Mbps: 7279.670 Avg Mbps: 7271.422 --- fc00:0:0:1::12 tcpbench statistics --- 5448261252 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7251.544/7266.012/7279.670/9.575 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.043 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.043/0.043/0.043/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 1261091302 10088.730 100.00% Conn: 1 Mbps: 10088.730 Peak Mbps: 10088.730 Avg Mbps: 10088.730 2000 1261005504 10098.142 100.00% Conn: 1 Mbps: 10098.142 Peak Mbps: 10098.142 Avg Mbps: 10098.142 3000 1260907356 10087.259 100.00% Conn: 1 Mbps: 10087.259 Peak Mbps: 10098.142 Avg Mbps: 10087.259 4000 1260580196 10084.642 100.00% Conn: 1 Mbps: 10084.642 Peak Mbps: 10098.142 Avg Mbps: 10084.642 5000 1262183280 10097.466 100.00% Conn: 1 Mbps: 10097.466 Peak Mbps: 10098.142 Avg Mbps: 10097.466 --- 169.254.0.13 tcpbench statistics --- 7567296598 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10084.642/10091.248/10098.142/5.515 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 1251485884 10011.887 100.00% Conn: 1 Mbps: 10011.887 Peak Mbps: 10011.887 Avg Mbps: 10011.887 2000 1260103840 10090.922 100.00% Conn: 1 Mbps: 10090.922 Peak Mbps: 10090.922 Avg Mbps: 10090.922 3000 1256409192 10051.274 100.00% Conn: 1 Mbps: 10051.274 Peak Mbps: 10090.922 Avg Mbps: 10051.274 4000 1260921240 10087.370 100.00% Conn: 1 Mbps: 10087.370 Peak Mbps: 10090.922 Avg Mbps: 10087.370 5000 1260986632 10087.893 100.00% Conn: 1 Mbps: 10087.893 Peak Mbps: 10090.922 Avg Mbps: 10087.893 --- fc00::13 tcpbench statistics --- 7551220380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10011.887/10065.869/10090.922/30.666 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.058 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.058/0.058/0.058/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 371559184 2969.504 100.00% Conn: 1 Mbps: 2969.504 Peak Mbps: 2969.504 Avg Mbps: 2969.504 2001 375390208 3003.122 100.00% Conn: 1 Mbps: 3003.122 Peak Mbps: 3003.122 Avg Mbps: 3003.122 3002 380370944 3042.968 100.00% Conn: 1 Mbps: 3042.968 Peak Mbps: 3042.968 Avg Mbps: 3042.968 4002 380108800 3040.870 100.00% Conn: 1 Mbps: 3040.870 Peak Mbps: 3042.968 Avg Mbps: 3040.870 5002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3047.162 Avg Mbps: 3047.162 --- 169.254.1.11 tcpbench statistics --- 2268433168 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2969.504/3020.725/3047.162/30.110 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 872314000 6978.512 100.00% Conn: 1 Mbps: 6978.512 Peak Mbps: 6978.512 Avg Mbps: 6978.512 2000 898954024 7198.831 100.00% Conn: 1 Mbps: 7198.831 Peak Mbps: 7198.831 Avg Mbps: 7198.831 3000 915654912 7325.239 100.00% Conn: 1 Mbps: 7325.239 Peak Mbps: 7325.239 Avg Mbps: 7325.239 4000 906445552 7251.564 100.00% Conn: 1 Mbps: 7251.564 Peak Mbps: 7325.239 Avg Mbps: 7251.564 5000 898579000 7188.632 100.00% Conn: 1 Mbps: 7188.632 Peak Mbps: 7325.239 Avg Mbps: 7188.632 --- fc00:0:0:1::11 tcpbench statistics --- 5402804656 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6978.512/7188.556/7325.239/115.652 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.050 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.050/0.050/0.050/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 1260568260 10084.546 100.00% Conn: 1 Mbps: 10084.546 Peak Mbps: 10084.546 Avg Mbps: 10084.546 2000 1263426488 10117.529 100.00% Conn: 1 Mbps: 10117.529 Peak Mbps: 10117.529 Avg Mbps: 10117.529 3000 1263001180 10104.009 100.00% Conn: 1 Mbps: 10104.009 Peak Mbps: 10117.529 Avg Mbps: 10104.009 4000 1261790688 10094.326 100.00% Conn: 1 Mbps: 10094.326 Peak Mbps: 10117.529 Avg Mbps: 10094.326 5000 1263197476 10105.580 100.00% Conn: 1 Mbps: 10105.580 Peak Mbps: 10117.529 Avg Mbps: 10105.580 --- 169.254.1.12 tcpbench statistics --- 7573856570 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10084.546/10101.198/10117.529/11.121 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 1246735604 9973.885 100.00% Conn: 1 Mbps: 9973.885 Peak Mbps: 9973.885 Avg Mbps: 9973.885 2000 1242448000 9949.534 100.00% Conn: 1 Mbps: 9949.534 Peak Mbps: 9973.885 Avg Mbps: 9949.534 3000 1245750296 9966.002 100.00% Conn: 1 Mbps: 9966.002 Peak Mbps: 9973.885 Avg Mbps: 9966.002 4000 1248496760 9987.974 100.00% Conn: 1 Mbps: 9987.974 Peak Mbps: 9987.974 Avg Mbps: 9987.974 5000 1248104408 9984.835 100.00% Conn: 1 Mbps: 9984.835 Peak Mbps: 9987.974 Avg Mbps: 9984.835 --- fc00:0:0:1::12 tcpbench statistics --- 7482026284 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9949.534/9972.446/9987.974/13.879 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.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-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 1270265594 10162.125 100.00% Conn: 1 Mbps: 10162.125 Peak Mbps: 10162.125 Avg Mbps: 10162.125 2000 1274386348 10205.296 100.00% Conn: 1 Mbps: 10205.296 Peak Mbps: 10205.296 Avg Mbps: 10205.296 3000 1274631718 10197.054 100.00% Conn: 1 Mbps: 10197.054 Peak Mbps: 10205.296 Avg Mbps: 10197.054 4000 1277085418 10216.683 100.00% Conn: 1 Mbps: 10216.683 Peak Mbps: 10216.683 Avg Mbps: 10216.683 5000 1276692826 10213.543 100.00% Conn: 1 Mbps: 10213.543 Peak Mbps: 10216.683 Avg Mbps: 10213.543 --- 169.254.0.13 tcpbench statistics --- 7646793932 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10162.125/10198.940/10216.683/19.634 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 1291901492 10335.212 100.00% Conn: 1 Mbps: 10335.212 Peak Mbps: 10335.212 Avg Mbps: 10335.212 2000 1298358160 10397.263 100.00% Conn: 1 Mbps: 10397.263 Peak Mbps: 10397.263 Avg Mbps: 10397.263 3000 1294859688 10358.878 100.00% Conn: 1 Mbps: 10358.878 Peak Mbps: 10397.263 Avg Mbps: 10358.878 4000 1290347640 10322.781 100.00% Conn: 1 Mbps: 10322.781 Peak Mbps: 10397.263 Avg Mbps: 10322.781 5000 1295677088 10365.417 100.00% Conn: 1 Mbps: 10365.417 Peak Mbps: 10397.263 Avg Mbps: 10365.417 --- fc00::13 tcpbench statistics --- 7768227084 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10322.781/10355.910/10397.263/25.827 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m51.90s