START sys/net/pair 2025-03-29T02:45:38Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.038 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.038/0.038/0.038/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.045 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 936481048 7491.848 100.00% Conn: 1 Mbps: 7491.848 Peak Mbps: 7491.848 Avg Mbps: 7491.848 2000 938905188 7518.760 100.00% Conn: 1 Mbps: 7518.760 Peak Mbps: 7518.760 Avg Mbps: 7518.760 3000 938682644 7509.461 100.00% Conn: 1 Mbps: 7509.461 Peak Mbps: 7518.760 Avg Mbps: 7509.461 4000 938364724 7506.918 100.00% Conn: 1 Mbps: 7506.918 Peak Mbps: 7518.760 Avg Mbps: 7506.918 5000 940868344 7526.947 100.00% Conn: 1 Mbps: 7526.947 Peak Mbps: 7526.947 Avg Mbps: 7526.947 --- 169.254.1.11 tcpbench statistics --- 5633820580 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7491.848/7510.787/7526.947/11.833 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 940506568 7524.053 100.00% Conn: 1 Mbps: 7524.053 Peak Mbps: 7524.053 Avg Mbps: 7524.053 2000 942401360 7546.758 100.00% Conn: 1 Mbps: 7546.758 Peak Mbps: 7546.758 Avg Mbps: 7546.758 3000 943194160 7545.553 100.00% Conn: 1 Mbps: 7545.553 Peak Mbps: 7546.758 Avg Mbps: 7545.553 4000 942195232 7537.562 100.00% Conn: 1 Mbps: 7537.562 Peak Mbps: 7546.758 Avg Mbps: 7537.562 5000 941426216 7531.410 100.00% Conn: 1 Mbps: 7531.410 Peak Mbps: 7546.758 Avg Mbps: 7531.410 --- fc00:0:0:1::11 tcpbench statistics --- 5652227960 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7524.053/7537.067/7546.758/8.574 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.125 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.125/0.125/0.125/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 371995504 2972.991 100.00% Conn: 1 Mbps: 2972.991 Peak Mbps: 2972.991 Avg Mbps: 2972.991 2001 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3089.105 Avg Mbps: 3089.105 3001 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3089.105 Avg Mbps: 3070.231 4001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3089.105 Avg Mbps: 3057.648 5001 383254528 3069.105 100.00% Conn: 1 Mbps: 3069.105 Peak Mbps: 3089.105 Avg Mbps: 3069.105 --- 169.254.1.12 tcpbench statistics --- 2289841008 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2972.991/3051.816/3089.105/40.684 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 355098048 2837.946 100.00% Conn: 1 Mbps: 2837.946 Peak Mbps: 2837.946 Avg Mbps: 2837.946 2001 365021416 2920.171 100.00% Conn: 1 Mbps: 2920.171 Peak Mbps: 2920.171 Avg Mbps: 2920.171 3001 365953024 2927.624 100.00% Conn: 1 Mbps: 2927.624 Peak Mbps: 2927.624 Avg Mbps: 2927.624 4002 366249992 2927.073 100.00% Conn: 1 Mbps: 2927.073 Peak Mbps: 2927.624 Avg Mbps: 2927.073 5003 366215168 2929.721 100.00% Conn: 1 Mbps: 2929.721 Peak Mbps: 2929.721 Avg Mbps: 2929.721 --- fc00:0:0:1::12 tcpbench statistics --- 2185801392 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2837.946/2908.507/2929.721/35.426 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.059 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.059/0.059/0.059/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.067 ms --- fc00::13 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-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 765908880 6127.271 100.00% Conn: 1 Mbps: 6127.271 Peak Mbps: 6127.271 Avg Mbps: 6127.271 2000 810529116 6484.233 100.00% Conn: 1 Mbps: 6484.233 Peak Mbps: 6484.233 Avg Mbps: 6484.233 3000 797549588 6380.397 100.00% Conn: 1 Mbps: 6380.397 Peak Mbps: 6484.233 Avg Mbps: 6380.397 4000 811554384 6498.934 100.00% Conn: 1 Mbps: 6498.934 Peak Mbps: 6498.934 Avg Mbps: 6498.934 5001 814128836 6513.031 100.00% Conn: 1 Mbps: 6513.031 Peak Mbps: 6513.031 Avg Mbps: 6513.031 --- 169.254.0.13 tcpbench statistics --- 4816383440 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6127.271/6400.773/6513.031/144.514 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 713647888 5709.183 100.00% Conn: 1 Mbps: 5709.183 Peak Mbps: 5709.183 Avg Mbps: 5709.183 2000 763697872 6115.699 100.00% Conn: 1 Mbps: 6115.699 Peak Mbps: 6115.699 Avg Mbps: 6115.699 3000 764851720 6124.939 100.00% Conn: 1 Mbps: 6124.939 Peak Mbps: 6124.939 Avg Mbps: 6124.939 4000 754380912 6035.047 100.00% Conn: 1 Mbps: 6035.047 Peak Mbps: 6124.939 Avg Mbps: 6035.047 5000 765076304 6120.610 100.00% Conn: 1 Mbps: 6120.610 Peak Mbps: 6124.939 Avg Mbps: 6120.610 --- fc00::13 tcpbench statistics --- 4528373504 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5709.183/6021.096/6124.939/159.449 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.048 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.048/0.048/0.048/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 372160336 2977.283 100.00% Conn: 1 Mbps: 2977.283 Peak Mbps: 2977.283 Avg Mbps: 2977.283 2001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3055.550 Avg Mbps: 3055.550 3001 382708768 3061.670 100.00% Conn: 1 Mbps: 3061.670 Peak Mbps: 3061.670 Avg Mbps: 3061.670 4001 383778816 3070.231 100.00% Conn: 1 Mbps: 3070.231 Peak Mbps: 3070.231 Avg Mbps: 3070.231 5002 387186688 3097.494 100.00% Conn: 1 Mbps: 3097.494 Peak Mbps: 3097.494 Avg Mbps: 3097.494 --- 169.254.1.11 tcpbench statistics --- 2297324400 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2977.283/3052.445/3097.494/40.224 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 354867048 2836.100 100.00% Conn: 1 Mbps: 2836.100 Peak Mbps: 2836.100 Avg Mbps: 2836.100 2001 360972288 2887.778 100.00% Conn: 1 Mbps: 2887.778 Peak Mbps: 2887.778 Avg Mbps: 2887.778 3002 367001600 2936.013 100.00% Conn: 1 Mbps: 2936.013 Peak Mbps: 2936.013 Avg Mbps: 2936.013 4001 365166592 2924.257 100.00% Conn: 1 Mbps: 2924.257 Peak Mbps: 2936.013 Avg Mbps: 2924.257 5002 360710144 2885.681 100.00% Conn: 1 Mbps: 2885.681 Peak Mbps: 2936.013 Avg Mbps: 2885.681 --- fc00:0:0:1::11 tcpbench statistics --- 2166544232 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2836.100/2893.966/2936.013/35.045 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.043 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.043/0.043/0.043/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 912323984 7298.592 100.00% Conn: 1 Mbps: 7298.592 Peak Mbps: 7298.592 Avg Mbps: 7298.592 2000 913769088 7317.470 100.00% Conn: 1 Mbps: 7317.470 Peak Mbps: 7317.470 Avg Mbps: 7317.470 3000 913737232 7309.898 100.00% Conn: 1 Mbps: 7309.898 Peak Mbps: 7317.470 Avg Mbps: 7309.898 4000 912751144 7302.009 100.00% Conn: 1 Mbps: 7302.009 Peak Mbps: 7317.470 Avg Mbps: 7302.009 5000 914065928 7312.527 100.00% Conn: 1 Mbps: 7312.527 Peak Mbps: 7317.470 Avg Mbps: 7312.527 --- 169.254.1.12 tcpbench statistics --- 5478529720 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7298.592/7308.099/7317.470/6.901 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 933643536 7469.148 100.00% Conn: 1 Mbps: 7469.148 Peak Mbps: 7469.148 Avg Mbps: 7469.148 2000 935574192 7492.086 100.00% Conn: 1 Mbps: 7492.086 Peak Mbps: 7492.086 Avg Mbps: 7492.086 3000 933422196 7467.378 100.00% Conn: 1 Mbps: 7467.378 Peak Mbps: 7492.086 Avg Mbps: 7467.378 4000 932388324 7459.107 100.00% Conn: 1 Mbps: 7459.107 Peak Mbps: 7492.086 Avg Mbps: 7459.107 5000 931184520 7449.476 100.00% Conn: 1 Mbps: 7449.476 Peak Mbps: 7492.086 Avg Mbps: 7449.476 --- fc00:0:0:1::12 tcpbench statistics --- 5597415852 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7449.476/7467.439/7492.086/14.160 Mbps ==== run-ping-2-3 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.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.046 ms --- fc00::13 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-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 1277265994 10218.128 100.00% Conn: 1 Mbps: 10218.128 Peak Mbps: 10218.128 Avg Mbps: 10218.128 2000 1275956716 10217.872 100.00% Conn: 1 Mbps: 10217.872 Peak Mbps: 10218.128 Avg Mbps: 10217.872 3000 1275891284 10207.130 100.00% Conn: 1 Mbps: 10207.130 Peak Mbps: 10218.128 Avg Mbps: 10207.130 4000 1275269680 10202.157 100.00% Conn: 1 Mbps: 10202.157 Peak Mbps: 10218.128 Avg Mbps: 10202.157 5000 1279261032 10234.088 100.00% Conn: 1 Mbps: 10234.088 Peak Mbps: 10234.088 Avg Mbps: 10234.088 --- 169.254.0.13 tcpbench statistics --- 7659961298 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10202.157/10215.875/10234.088/11.004 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 1246078372 9968.627 100.00% Conn: 1 Mbps: 9968.627 Peak Mbps: 9968.627 Avg Mbps: 9968.627 2000 1249869992 10008.969 100.00% Conn: 1 Mbps: 10008.969 Peak Mbps: 10008.969 Avg Mbps: 10008.969 3000 1252420280 10019.362 100.00% Conn: 1 Mbps: 10019.362 Peak Mbps: 10019.362 Avg Mbps: 10019.362 4000 1251177832 10009.423 100.00% Conn: 1 Mbps: 10009.423 Peak Mbps: 10019.362 Avg Mbps: 10009.423 5000 1248954504 9991.636 100.00% Conn: 1 Mbps: 9991.636 Peak Mbps: 10019.362 Avg Mbps: 9991.636 --- fc00::13 tcpbench statistics --- 7493401180 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9968.627/9999.603/10019.362/17.875 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.055 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.055/0.055/0.055/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 376073864 3005.585 100.00% Conn: 1 Mbps: 3005.585 Peak Mbps: 3005.585 Avg Mbps: 3005.585 2001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3057.648 Avg Mbps: 3057.648 3001 379846656 3038.773 100.00% Conn: 1 Mbps: 3038.773 Peak Mbps: 3057.648 Avg Mbps: 3038.773 4002 376700928 3013.607 100.00% Conn: 1 Mbps: 3013.607 Peak Mbps: 3057.648 Avg Mbps: 3013.607 5002 375914496 3007.316 100.00% Conn: 1 Mbps: 3007.316 Peak Mbps: 3057.648 Avg Mbps: 3007.316 --- 169.254.1.11 tcpbench statistics --- 2266918536 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 3005.585/3024.586/3057.648/20.367 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 839052392 6712.419 100.00% Conn: 1 Mbps: 6712.419 Peak Mbps: 6712.419 Avg Mbps: 6712.419 2000 900070608 7200.565 100.00% Conn: 1 Mbps: 7200.565 Peak Mbps: 7200.565 Avg Mbps: 7200.565 3000 912712928 7301.703 100.00% Conn: 1 Mbps: 7301.703 Peak Mbps: 7301.703 Avg Mbps: 7301.703 4000 878864024 7030.912 100.00% Conn: 1 Mbps: 7030.912 Peak Mbps: 7301.703 Avg Mbps: 7030.912 5000 902829304 7222.634 100.00% Conn: 1 Mbps: 7222.634 Peak Mbps: 7301.703 Avg Mbps: 7222.634 --- fc00:0:0:1::11 tcpbench statistics --- 5311187368 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6712.419/7093.647/7301.703/210.060 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.042 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.042/0.042/0.042/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.047 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 1274541058 10196.328 100.00% Conn: 1 Mbps: 10196.328 Peak Mbps: 10196.328 Avg Mbps: 10196.328 2000 1275662272 10215.514 100.00% Conn: 1 Mbps: 10215.514 Peak Mbps: 10215.514 Avg Mbps: 10215.514 3000 1274615360 10196.923 100.00% Conn: 1 Mbps: 10196.923 Peak Mbps: 10215.514 Avg Mbps: 10196.923 4000 1277101776 10216.814 100.00% Conn: 1 Mbps: 10216.814 Peak Mbps: 10216.814 Avg Mbps: 10216.814 5000 1273895608 10191.165 100.00% Conn: 1 Mbps: 10191.165 Peak Mbps: 10216.814 Avg Mbps: 10191.165 --- 169.254.1.12 tcpbench statistics --- 7650954890 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10191.165/10203.349/10216.814/10.661 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 1241934332 9935.475 100.00% Conn: 1 Mbps: 9935.475 Peak Mbps: 9935.475 Avg Mbps: 9935.475 2000 1251929840 10025.464 100.00% Conn: 1 Mbps: 10025.464 Peak Mbps: 10025.464 Avg Mbps: 10025.464 3000 1250491216 10003.930 100.00% Conn: 1 Mbps: 10003.930 Peak Mbps: 10025.464 Avg Mbps: 10003.930 4000 1251929840 10015.439 100.00% Conn: 1 Mbps: 10015.439 Peak Mbps: 10025.464 Avg Mbps: 10015.439 5000 1249608424 9996.867 100.00% Conn: 1 Mbps: 9996.867 Peak Mbps: 10025.464 Avg Mbps: 9996.867 --- fc00:0:0:1::12 tcpbench statistics --- 7497300356 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9935.475/9995.435/10025.464/31.532 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 1274370464 10194.964 100.00% Conn: 1 Mbps: 10194.964 Peak Mbps: 10194.964 Avg Mbps: 10194.964 2000 1276660110 10223.504 100.00% Conn: 1 Mbps: 10223.504 Peak Mbps: 10223.504 Avg Mbps: 10223.504 3000 1273110424 10184.883 100.00% Conn: 1 Mbps: 10184.883 Peak Mbps: 10223.504 Avg Mbps: 10184.883 4000 1273535732 10188.286 100.00% Conn: 1 Mbps: 10188.286 Peak Mbps: 10223.504 Avg Mbps: 10188.286 5000 1274173694 10193.390 100.00% Conn: 1 Mbps: 10193.390 Peak Mbps: 10223.504 Avg Mbps: 10193.390 --- 169.254.0.13 tcpbench statistics --- 7648396028 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10184.883/10197.005/10223.504/13.729 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 1278675780 10229.406 100.00% Conn: 1 Mbps: 10229.406 Peak Mbps: 10229.406 Avg Mbps: 10229.406 2000 1279557960 10246.710 100.00% Conn: 1 Mbps: 10246.710 Peak Mbps: 10246.710 Avg Mbps: 10246.710 3000 1280146488 10241.172 100.00% Conn: 1 Mbps: 10241.172 Peak Mbps: 10246.710 Avg Mbps: 10241.172 4000 1278446296 10227.570 100.00% Conn: 1 Mbps: 10227.570 Peak Mbps: 10246.710 Avg Mbps: 10227.570 5000 1276255664 10210.045 100.00% Conn: 1 Mbps: 10210.045 Peak Mbps: 10246.710 Avg Mbps: 10210.045 --- fc00::13 tcpbench statistics --- 7672182404 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10210.045/10230.981/10246.710/12.678 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.89s