START sys/net/pair 2025-03-24T04:43:04Z ==== 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.049 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.049/0.049/0.049/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.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-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 518646740 4149.174 100.00% Conn: 1 Mbps: 4149.174 Peak Mbps: 4149.174 Avg Mbps: 4149.174 2000 517605552 4144.989 100.00% Conn: 1 Mbps: 4144.989 Peak Mbps: 4149.174 Avg Mbps: 4144.989 3000 517486332 4139.891 100.00% Conn: 1 Mbps: 4139.891 Peak Mbps: 4149.174 Avg Mbps: 4139.891 4000 517963212 4143.706 100.00% Conn: 1 Mbps: 4143.706 Peak Mbps: 4149.174 Avg Mbps: 4143.706 5000 519330268 4154.642 100.00% Conn: 1 Mbps: 4154.642 Peak Mbps: 4154.642 Avg Mbps: 4154.642 --- 169.254.1.11 tcpbench statistics --- 3109957024 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4139.891/4146.480/4154.642/5.044 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 513472776 4107.782 100.00% Conn: 1 Mbps: 4107.782 Peak Mbps: 4107.782 Avg Mbps: 4107.782 2000 512267720 4102.244 100.00% Conn: 1 Mbps: 4102.244 Peak Mbps: 4107.782 Avg Mbps: 4102.244 3000 511998168 4095.985 100.00% Conn: 1 Mbps: 4095.985 Peak Mbps: 4107.782 Avg Mbps: 4095.985 4000 511427352 4091.419 100.00% Conn: 1 Mbps: 4091.419 Peak Mbps: 4107.782 Avg Mbps: 4091.419 5000 512243936 4097.951 100.00% Conn: 1 Mbps: 4097.951 Peak Mbps: 4107.782 Avg Mbps: 4097.951 --- fc00:0:0:1::11 tcpbench statistics --- 3074391192 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4091.419/4099.076/4107.782/5.573 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.071 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.071/0.071/0.071/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.141 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.141/0.141/0.141/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 274910864 2197.090 100.00% Conn: 1 Mbps: 2197.090 Peak Mbps: 2197.090 Avg Mbps: 2197.090 2002 289429512 2313.123 100.00% Conn: 1 Mbps: 2313.123 Peak Mbps: 2313.123 Avg Mbps: 2313.123 3002 288177560 2307.728 100.00% Conn: 1 Mbps: 2307.728 Peak Mbps: 2313.123 Avg Mbps: 2307.728 4001 291075664 2330.936 100.00% Conn: 1 Mbps: 2330.936 Peak Mbps: 2330.936 Avg Mbps: 2330.936 5001 287093496 2296.748 100.00% Conn: 1 Mbps: 2296.748 Peak Mbps: 2330.936 Avg Mbps: 2296.748 --- 169.254.1.12 tcpbench statistics --- 1718394440 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2197.090/2289.125/2330.936/47.326 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 257232972 2057.864 100.00% Conn: 1 Mbps: 2057.864 Peak Mbps: 2057.864 Avg Mbps: 2057.864 2000 271163876 2171.482 100.00% Conn: 1 Mbps: 2171.482 Peak Mbps: 2171.482 Avg Mbps: 2171.482 3001 277249616 2217.997 100.00% Conn: 1 Mbps: 2217.997 Peak Mbps: 2217.997 Avg Mbps: 2217.997 4000 276017536 2210.351 100.00% Conn: 1 Mbps: 2210.351 Peak Mbps: 2217.997 Avg Mbps: 2210.351 5001 277962500 2223.700 100.00% Conn: 1 Mbps: 2223.700 Peak Mbps: 2223.700 Avg Mbps: 2223.700 --- fc00:0:0:1::12 tcpbench statistics --- 1636104784 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2057.864/2176.279/2223.700/61.960 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.062 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.062/0.062/0.062/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.072 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.072/0.072/0.072/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 554459168 4435.673 100.00% Conn: 1 Mbps: 4435.673 Peak Mbps: 4435.673 Avg Mbps: 4435.673 2000 553505688 4432.478 100.00% Conn: 1 Mbps: 4432.478 Peak Mbps: 4435.673 Avg Mbps: 4432.478 3000 557297864 4458.383 100.00% Conn: 1 Mbps: 4458.383 Peak Mbps: 4458.383 Avg Mbps: 4458.383 4000 570411644 4563.293 100.00% Conn: 1 Mbps: 4563.293 Peak Mbps: 4563.293 Avg Mbps: 4563.293 5000 530242872 4241.943 100.00% Conn: 1 Mbps: 4241.943 Peak Mbps: 4563.293 Avg Mbps: 4241.943 --- 169.254.0.13 tcpbench statistics --- 3287822516 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4241.943/4426.354/4563.293/103.836 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 1001 598721528 4784.987 100.00% Conn: 1 Mbps: 4784.987 Peak Mbps: 4784.987 Avg Mbps: 4784.987 2000 638259640 5111.188 100.00% Conn: 1 Mbps: 5111.188 Peak Mbps: 5111.188 Avg Mbps: 5111.188 3001 637377032 5099.016 100.00% Conn: 1 Mbps: 5099.016 Peak Mbps: 5111.188 Avg Mbps: 5099.016 4001 640905248 5127.242 100.00% Conn: 1 Mbps: 5127.242 Peak Mbps: 5127.242 Avg Mbps: 5127.242 5001 640874184 5132.126 100.00% Conn: 1 Mbps: 5132.126 Peak Mbps: 5132.126 Avg Mbps: 5132.126 --- fc00::13 tcpbench statistics --- 3791595568 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4784.987/5050.912/5132.126/133.480 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.058 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.058/0.058/0.058/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.064 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.064/0.064/0.064/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 276158976 2207.065 100.00% Conn: 1 Mbps: 2207.065 Peak Mbps: 2207.065 Avg Mbps: 2207.065 2002 285807000 2286.456 100.00% Conn: 1 Mbps: 2286.456 Peak Mbps: 2286.456 Avg Mbps: 2286.456 3002 288482072 2310.167 100.00% Conn: 1 Mbps: 2310.167 Peak Mbps: 2310.167 Avg Mbps: 2310.167 4002 289537608 2316.301 100.00% Conn: 1 Mbps: 2316.301 Peak Mbps: 2316.301 Avg Mbps: 2316.301 5003 288899264 2311.194 100.00% Conn: 1 Mbps: 2311.194 Peak Mbps: 2316.301 Avg Mbps: 2311.194 --- 169.254.1.11 tcpbench statistics --- 1715453728 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2207.065/2286.236/2316.301/40.909 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 254388848 2033.078 100.00% Conn: 1 Mbps: 2033.078 Peak Mbps: 2033.078 Avg Mbps: 2033.078 2002 269952860 2159.623 100.00% Conn: 1 Mbps: 2159.623 Peak Mbps: 2159.623 Avg Mbps: 2159.623 3002 271607616 2175.036 100.00% Conn: 1 Mbps: 2175.036 Peak Mbps: 2175.036 Avg Mbps: 2175.036 4003 272434824 2177.301 100.00% Conn: 1 Mbps: 2177.301 Peak Mbps: 2177.301 Avg Mbps: 2177.301 5003 272007796 2178.241 100.00% Conn: 1 Mbps: 2178.241 Peak Mbps: 2178.241 Avg Mbps: 2178.241 --- fc00:0:0:1::11 tcpbench statistics --- 1611522480 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2033.078/2144.656/2178.241/56.197 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.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-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.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-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 521776664 4174.213 100.00% Conn: 1 Mbps: 4174.213 Peak Mbps: 4174.213 Avg Mbps: 4174.213 2000 521112032 4173.069 100.00% Conn: 1 Mbps: 4173.069 Peak Mbps: 4174.213 Avg Mbps: 4173.069 3000 520060784 4160.486 100.00% Conn: 1 Mbps: 4160.486 Peak Mbps: 4174.213 Avg Mbps: 4160.486 4000 520224408 4161.795 100.00% Conn: 1 Mbps: 4161.795 Peak Mbps: 4174.213 Avg Mbps: 4161.795 5000 520716728 4165.734 100.00% Conn: 1 Mbps: 4165.734 Peak Mbps: 4174.213 Avg Mbps: 4165.734 --- 169.254.1.12 tcpbench statistics --- 3124296024 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4160.486/4167.060/4174.213/5.656 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 525466872 4203.735 100.00% Conn: 1 Mbps: 4203.735 Peak Mbps: 4203.735 Avg Mbps: 4203.735 2000 526022364 4212.391 100.00% Conn: 1 Mbps: 4212.391 Peak Mbps: 4212.391 Avg Mbps: 4212.391 3000 526565004 4212.520 100.00% Conn: 1 Mbps: 4212.520 Peak Mbps: 4212.520 Avg Mbps: 4212.520 4000 526450764 4211.606 100.00% Conn: 1 Mbps: 4211.606 Peak Mbps: 4212.520 Avg Mbps: 4211.606 5000 526125180 4209.001 100.00% Conn: 1 Mbps: 4209.001 Peak Mbps: 4212.520 Avg Mbps: 4209.001 --- fc00:0:0:1::12 tcpbench statistics --- 3157029540 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4203.735/4209.851/4212.520/3.310 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.057 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.057/0.057/0.057/0.000 ms ==== run-ping6-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.053 ms --- fc00::13 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-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 774621178 6196.969 100.00% Conn: 1 Mbps: 6196.969 Peak Mbps: 6196.969 Avg Mbps: 6196.969 2000 777986480 6230.122 100.00% Conn: 1 Mbps: 6230.122 Peak Mbps: 6230.122 Avg Mbps: 6230.122 3000 777757468 6222.060 100.00% Conn: 1 Mbps: 6222.060 Peak Mbps: 6230.122 Avg Mbps: 6222.060 4000 776612408 6212.899 100.00% Conn: 1 Mbps: 6212.899 Peak Mbps: 6230.122 Avg Mbps: 6212.899 5000 775401916 6209.425 100.00% Conn: 1 Mbps: 6209.425 Peak Mbps: 6230.122 Avg Mbps: 6209.425 --- 169.254.0.13 tcpbench statistics --- 4657159762 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6196.969/6214.295/6230.122/11.284 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 754173532 6033.388 100.00% Conn: 1 Mbps: 6033.388 Peak Mbps: 6033.388 Avg Mbps: 6033.388 2000 756029608 6054.291 100.00% Conn: 1 Mbps: 6054.291 Peak Mbps: 6054.291 Avg Mbps: 6054.291 3000 755081424 6040.651 100.00% Conn: 1 Mbps: 6040.651 Peak Mbps: 6054.291 Avg Mbps: 6040.651 4000 761947584 6095.581 100.00% Conn: 1 Mbps: 6095.581 Peak Mbps: 6095.581 Avg Mbps: 6095.581 5000 763582384 6108.659 100.00% Conn: 1 Mbps: 6108.659 Peak Mbps: 6108.659 Avg Mbps: 6108.659 --- fc00::13 tcpbench statistics --- 4555410492 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6033.388/6066.514/6108.659/30.122 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.061 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.061/0.061/0.061/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.059 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.059/0.059/0.059/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 276436392 2209.282 100.00% Conn: 1 Mbps: 2209.282 Peak Mbps: 2209.282 Avg Mbps: 2209.282 2001 281506104 2254.303 100.00% Conn: 1 Mbps: 2254.303 Peak Mbps: 2254.303 Avg Mbps: 2254.303 3002 286012560 2285.815 100.00% Conn: 1 Mbps: 2285.815 Peak Mbps: 2285.815 Avg Mbps: 2285.815 4003 283172200 2263.114 100.00% Conn: 1 Mbps: 2263.114 Peak Mbps: 2285.815 Avg Mbps: 2263.114 5005 284067664 2270.271 100.00% Conn: 1 Mbps: 2270.271 Peak Mbps: 2285.815 Avg Mbps: 2270.271 --- 169.254.1.11 tcpbench statistics --- 1695449712 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2209.282/2256.557/2285.815/25.796 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 538825920 4310.607 100.00% Conn: 1 Mbps: 4310.607 Peak Mbps: 4310.607 Avg Mbps: 4310.607 2000 609213024 4873.704 100.00% Conn: 1 Mbps: 4873.704 Peak Mbps: 4873.704 Avg Mbps: 4873.704 3000 596935808 4775.486 100.00% Conn: 1 Mbps: 4775.486 Peak Mbps: 4873.704 Avg Mbps: 4775.486 4001 607569880 4860.559 100.00% Conn: 1 Mbps: 4860.559 Peak Mbps: 4873.704 Avg Mbps: 4860.559 5001 596926280 4775.410 100.00% Conn: 1 Mbps: 4775.410 Peak Mbps: 4873.704 Avg Mbps: 4775.410 --- fc00:0:0:1::11 tcpbench statistics --- 3550761120 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4310.607/4719.153/4873.704/208.389 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.071 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.071/0.071/0.071/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.062 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.062/0.062/0.062/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 788541006 6308.328 100.00% Conn: 1 Mbps: 6308.328 Peak Mbps: 6308.328 Avg Mbps: 6308.328 2000 788291540 6312.645 100.00% Conn: 1 Mbps: 6312.645 Peak Mbps: 6312.645 Avg Mbps: 6312.645 3000 789305724 6314.446 100.00% Conn: 1 Mbps: 6314.446 Peak Mbps: 6314.446 Avg Mbps: 6314.446 4000 788095256 6304.762 100.00% Conn: 1 Mbps: 6304.762 Peak Mbps: 6314.446 Avg Mbps: 6304.762 5000 788814960 6310.520 100.00% Conn: 1 Mbps: 6310.520 Peak Mbps: 6314.446 Avg Mbps: 6310.520 --- 169.254.1.12 tcpbench statistics --- 4732223382 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6304.762/6310.140/6314.446/3.381 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 771370548 6170.964 100.00% Conn: 1 Mbps: 6170.964 Peak Mbps: 6170.964 Avg Mbps: 6170.964 2000 771919864 6181.540 100.00% Conn: 1 Mbps: 6181.540 Peak Mbps: 6181.540 Avg Mbps: 6181.540 3000 771592904 6172.743 100.00% Conn: 1 Mbps: 6172.743 Peak Mbps: 6181.540 Avg Mbps: 6172.743 4000 774437456 6195.500 100.00% Conn: 1 Mbps: 6195.500 Peak Mbps: 6195.500 Avg Mbps: 6195.500 5000 779014896 6232.119 100.00% Conn: 1 Mbps: 6232.119 Peak Mbps: 6232.119 Avg Mbps: 6232.119 --- fc00:0:0:1::12 tcpbench statistics --- 4647056300 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6170.964/6190.573/6232.119/22.514 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.048 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.048/0.048/0.048/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.074 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.074/0.074/0.074/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 793201502 6345.612 100.00% Conn: 1 Mbps: 6345.612 Peak Mbps: 6345.612 Avg Mbps: 6345.612 2000 793330284 6352.995 100.00% Conn: 1 Mbps: 6352.995 Peak Mbps: 6352.995 Avg Mbps: 6352.995 3000 793493864 6347.951 100.00% Conn: 1 Mbps: 6347.951 Peak Mbps: 6352.995 Avg Mbps: 6347.951 4000 794409912 6355.279 100.00% Conn: 1 Mbps: 6355.279 Peak Mbps: 6355.279 Avg Mbps: 6355.279 5000 793755592 6350.045 100.00% Conn: 1 Mbps: 6350.045 Peak Mbps: 6355.279 Avg Mbps: 6350.045 --- 169.254.0.13 tcpbench statistics --- 4759525762 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6345.612/6350.376/6355.279/3.452 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 786390796 6291.126 100.00% Conn: 1 Mbps: 6291.126 Peak Mbps: 6291.126 Avg Mbps: 6291.126 2000 785194440 6287.843 100.00% Conn: 1 Mbps: 6287.843 Peak Mbps: 6291.126 Avg Mbps: 6287.843 3000 785227136 6281.817 100.00% Conn: 1 Mbps: 6281.817 Peak Mbps: 6291.126 Avg Mbps: 6281.817 4000 785129048 6281.032 100.00% Conn: 1 Mbps: 6281.032 Peak Mbps: 6291.126 Avg Mbps: 6281.032 5000 785488704 6283.910 100.00% Conn: 1 Mbps: 6283.910 Peak Mbps: 6291.126 Avg Mbps: 6283.910 --- fc00::13 tcpbench statistics --- 4711676380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6281.032/6285.146/6291.126/3.810 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 1m52.85s