START sys/net/pair 2025-03-27T04:48:17Z ==== 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.043 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.043/0.043/0.043/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 506732688 4053.862 100.00% Conn: 1 Mbps: 4053.862 Peak Mbps: 4053.862 Avg Mbps: 4053.862 2000 507106244 4060.911 100.00% Conn: 1 Mbps: 4060.911 Peak Mbps: 4060.911 Avg Mbps: 4060.911 3000 506987024 4055.896 100.00% Conn: 1 Mbps: 4055.896 Peak Mbps: 4060.911 Avg Mbps: 4055.896 4000 503497852 4027.983 100.00% Conn: 1 Mbps: 4027.983 Peak Mbps: 4060.911 Avg Mbps: 4027.983 5000 505755084 4046.041 100.00% Conn: 1 Mbps: 4046.041 Peak Mbps: 4060.911 Avg Mbps: 4046.041 --- 169.254.1.11 tcpbench statistics --- 3036191636 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4027.983/4048.938/4060.911/11.520 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 507439568 4059.517 100.00% Conn: 1 Mbps: 4059.517 Peak Mbps: 4059.517 Avg Mbps: 4059.517 2000 506940104 4059.580 100.00% Conn: 1 Mbps: 4059.580 Peak Mbps: 4059.580 Avg Mbps: 4059.580 3000 506884608 4055.077 100.00% Conn: 1 Mbps: 4055.077 Peak Mbps: 4059.580 Avg Mbps: 4055.077 4000 507368216 4058.946 100.00% Conn: 1 Mbps: 4058.946 Peak Mbps: 4059.580 Avg Mbps: 4058.946 5000 506179016 4049.432 100.00% Conn: 1 Mbps: 4049.432 Peak Mbps: 4059.580 Avg Mbps: 4049.432 --- fc00:0:0:1::11 tcpbench statistics --- 3040277008 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4049.432/4056.510/4059.580/3.913 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.075 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.075/0.075/0.075/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.143 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.143/0.143/0.143/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 271641560 2170.962 100.00% Conn: 1 Mbps: 2170.962 Peak Mbps: 2170.962 Avg Mbps: 2170.962 2001 287110272 2296.882 100.00% Conn: 1 Mbps: 2296.882 Peak Mbps: 2296.882 Avg Mbps: 2296.882 3001 290556168 2324.449 100.00% Conn: 1 Mbps: 2324.449 Peak Mbps: 2324.449 Avg Mbps: 2324.449 4001 288440752 2309.836 100.00% Conn: 1 Mbps: 2309.836 Peak Mbps: 2324.449 Avg Mbps: 2309.836 5002 292557352 2340.459 100.00% Conn: 1 Mbps: 2340.459 Peak Mbps: 2340.459 Avg Mbps: 2340.459 --- 169.254.1.12 tcpbench statistics --- 1720784464 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2170.962/2288.518/2340.459/60.552 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 254446096 2035.569 100.00% Conn: 1 Mbps: 2035.569 Peak Mbps: 2035.569 Avg Mbps: 2035.569 2001 271104112 2168.833 100.00% Conn: 1 Mbps: 2168.833 Peak Mbps: 2168.833 Avg Mbps: 2168.833 3001 275718108 2205.745 100.00% Conn: 1 Mbps: 2205.745 Peak Mbps: 2205.745 Avg Mbps: 2205.745 4001 275006808 2202.257 100.00% Conn: 1 Mbps: 2202.257 Peak Mbps: 2205.745 Avg Mbps: 2202.257 5001 275971584 2207.773 100.00% Conn: 1 Mbps: 2207.773 Peak Mbps: 2207.773 Avg Mbps: 2207.773 --- fc00:0:0:1::12 tcpbench statistics --- 1629120252 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2035.569/2164.035/2207.773/65.788 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.088 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.088/0.088/0.088/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.084 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.084/0.084/0.084/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 583537680 4668.301 100.00% Conn: 1 Mbps: 4668.301 Peak Mbps: 4668.301 Avg Mbps: 4668.301 2000 588416912 4712.047 100.00% Conn: 1 Mbps: 4712.047 Peak Mbps: 4712.047 Avg Mbps: 4712.047 3000 581831660 4654.653 100.00% Conn: 1 Mbps: 4654.653 Peak Mbps: 4712.047 Avg Mbps: 4654.653 4000 575783372 4610.878 100.00% Conn: 1 Mbps: 4610.878 Peak Mbps: 4712.047 Avg Mbps: 4610.878 5000 557281408 4458.251 100.00% Conn: 1 Mbps: 4458.251 Peak Mbps: 4712.047 Avg Mbps: 4458.251 --- 169.254.0.13 tcpbench statistics --- 3432671564 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4458.251/4620.826/4712.047/87.463 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 605149448 4841.196 100.00% Conn: 1 Mbps: 4841.196 Peak Mbps: 4841.196 Avg Mbps: 4841.196 2000 642074304 5141.736 100.00% Conn: 1 Mbps: 5141.736 Peak Mbps: 5141.736 Avg Mbps: 5141.736 3000 640203944 5126.758 100.00% Conn: 1 Mbps: 5126.758 Peak Mbps: 5141.736 Avg Mbps: 5126.758 4001 642970168 5143.761 100.00% Conn: 1 Mbps: 5143.761 Peak Mbps: 5143.761 Avg Mbps: 5143.761 5001 642411960 5139.296 100.00% Conn: 1 Mbps: 5139.296 Peak Mbps: 5143.761 Avg Mbps: 5139.296 --- fc00::13 tcpbench statistics --- 3812461280 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4841.196/5078.549/5143.761/118.824 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.056 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.056/0.056/0.056/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.051 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.051/0.051/0.051/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 274715320 2195.527 100.00% Conn: 1 Mbps: 2195.527 Peak Mbps: 2195.527 Avg Mbps: 2195.527 2002 286430632 2289.156 100.00% Conn: 1 Mbps: 2289.156 Peak Mbps: 2289.156 Avg Mbps: 2289.156 3002 286786736 2294.294 100.00% Conn: 1 Mbps: 2294.294 Peak Mbps: 2294.294 Avg Mbps: 2294.294 4004 287064760 2294.224 100.00% Conn: 1 Mbps: 2294.224 Peak Mbps: 2294.294 Avg Mbps: 2294.224 5005 288732624 2307.553 100.00% Conn: 1 Mbps: 2307.553 Peak Mbps: 2307.553 Avg Mbps: 2307.553 --- 169.254.1.11 tcpbench statistics --- 1709729824 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2195.527/2276.151/2307.553/40.771 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 1000 253366132 2026.929 100.00% Conn: 1 Mbps: 2026.929 Peak Mbps: 2026.929 Avg Mbps: 2026.929 2001 270775488 2166.204 100.00% Conn: 1 Mbps: 2166.204 Peak Mbps: 2166.204 Avg Mbps: 2166.204 3001 269753860 2158.031 100.00% Conn: 1 Mbps: 2158.031 Peak Mbps: 2166.204 Avg Mbps: 2158.031 4002 272490360 2179.923 100.00% Conn: 1 Mbps: 2179.923 Peak Mbps: 2179.923 Avg Mbps: 2179.923 5002 271904584 2175.237 100.00% Conn: 1 Mbps: 2175.237 Peak Mbps: 2179.923 Avg Mbps: 2175.237 --- fc00:0:0:1::11 tcpbench statistics --- 1609702588 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2026.929/2141.265/2179.923/57.662 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.051 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.051/0.051/0.051/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 512496432 4099.971 100.00% Conn: 1 Mbps: 4099.971 Peak Mbps: 4099.971 Avg Mbps: 4099.971 2000 513411568 4111.404 100.00% Conn: 1 Mbps: 4111.404 Peak Mbps: 4111.404 Avg Mbps: 4111.404 3000 514458472 4115.668 100.00% Conn: 1 Mbps: 4115.668 Peak Mbps: 4115.668 Avg Mbps: 4115.668 4000 514164528 4117.434 100.00% Conn: 1 Mbps: 4117.434 Peak Mbps: 4117.434 Avg Mbps: 4117.434 5000 513734472 4109.876 100.00% Conn: 1 Mbps: 4109.876 Peak Mbps: 4117.434 Avg Mbps: 4109.876 --- 169.254.1.12 tcpbench statistics --- 3081430880 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4099.971/4110.871/4117.434/6.102 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 518059836 4144.479 100.00% Conn: 1 Mbps: 4144.479 Peak Mbps: 4144.479 Avg Mbps: 4144.479 2000 518552496 4152.573 100.00% Conn: 1 Mbps: 4152.573 Peak Mbps: 4152.573 Avg Mbps: 4152.573 3000 518799540 4150.396 100.00% Conn: 1 Mbps: 4150.396 Peak Mbps: 4152.573 Avg Mbps: 4150.396 4000 518785260 4150.282 100.00% Conn: 1 Mbps: 4150.282 Peak Mbps: 4152.573 Avg Mbps: 4150.282 5000 519078000 4152.624 100.00% Conn: 1 Mbps: 4152.624 Peak Mbps: 4152.624 Avg Mbps: 4152.624 --- fc00:0:0:1::12 tcpbench statistics --- 3111353532 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4144.479/4150.071/4152.624/2.973 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.056 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.056/0.056/0.056/0.000 ms ==== run-ping6-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.051 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/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 778153402 6225.227 100.00% Conn: 1 Mbps: 6225.227 Peak Mbps: 6225.227 Avg Mbps: 6225.227 2000 778313184 6232.738 100.00% Conn: 1 Mbps: 6232.738 Peak Mbps: 6232.738 Avg Mbps: 6232.738 3000 773766068 6190.129 100.00% Conn: 1 Mbps: 6190.129 Peak Mbps: 6232.738 Avg Mbps: 6190.129 4000 777626604 6221.013 100.00% Conn: 1 Mbps: 6221.013 Peak Mbps: 6232.738 Avg Mbps: 6221.013 5000 777299444 6218.396 100.00% Conn: 1 Mbps: 6218.396 Peak Mbps: 6232.738 Avg Mbps: 6218.396 --- 169.254.0.13 tcpbench statistics --- 4662850738 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6190.129/6217.500/6232.738/14.521 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 771304508 6170.436 100.00% Conn: 1 Mbps: 6170.436 Peak Mbps: 6170.436 Avg Mbps: 6170.436 2000 771952560 6181.802 100.00% Conn: 1 Mbps: 6181.802 Peak Mbps: 6181.802 Avg Mbps: 6181.802 3000 771396728 6171.174 100.00% Conn: 1 Mbps: 6171.174 Peak Mbps: 6181.802 Avg Mbps: 6171.174 4000 772835352 6182.683 100.00% Conn: 1 Mbps: 6182.683 Peak Mbps: 6182.683 Avg Mbps: 6182.683 5000 772868048 6182.944 100.00% Conn: 1 Mbps: 6182.944 Peak Mbps: 6182.944 Avg Mbps: 6182.944 --- fc00::13 tcpbench statistics --- 4632930980 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6170.436/6177.808/6182.944/5.735 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.063 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.063/0.063/0.063/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 1000 275290968 2202.328 100.00% Conn: 1 Mbps: 2202.328 Peak Mbps: 2202.328 Avg Mbps: 2202.328 2001 283957520 2271.660 100.00% Conn: 1 Mbps: 2271.660 Peak Mbps: 2271.660 Avg Mbps: 2271.660 3001 284697160 2277.577 100.00% Conn: 1 Mbps: 2277.577 Peak Mbps: 2277.577 Avg Mbps: 2277.577 4002 284124760 2272.998 100.00% Conn: 1 Mbps: 2272.998 Peak Mbps: 2277.577 Avg Mbps: 2272.998 5001 284142632 2275.416 100.00% Conn: 1 Mbps: 2275.416 Peak Mbps: 2277.577 Avg Mbps: 2275.416 --- 169.254.1.11 tcpbench statistics --- 1695414256 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2202.328/2259.996/2277.577/28.905 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 542733848 4341.871 100.00% Conn: 1 Mbps: 4341.871 Peak Mbps: 4341.871 Avg Mbps: 4341.871 2000 608745184 4869.961 100.00% Conn: 1 Mbps: 4869.961 Peak Mbps: 4869.961 Avg Mbps: 4869.961 3001 609621696 4876.974 100.00% Conn: 1 Mbps: 4876.974 Peak Mbps: 4876.974 Avg Mbps: 4876.974 4001 612746568 4901.973 100.00% Conn: 1 Mbps: 4901.973 Peak Mbps: 4901.973 Avg Mbps: 4901.973 5001 613030840 4904.247 100.00% Conn: 1 Mbps: 4904.247 Peak Mbps: 4904.247 Avg Mbps: 4904.247 --- fc00:0:0:1::11 tcpbench statistics --- 3598667248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4341.871/4779.005/4904.247/218.981 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.059 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.059/0.059/0.059/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.049 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.049/0.049/0.049/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 777992786 6223.942 100.00% Conn: 1 Mbps: 6223.942 Peak Mbps: 6223.942 Avg Mbps: 6223.942 2000 778837096 6236.934 100.00% Conn: 1 Mbps: 6236.934 Peak Mbps: 6236.934 Avg Mbps: 6236.934 3000 778608084 6228.865 100.00% Conn: 1 Mbps: 6228.865 Peak Mbps: 6236.934 Avg Mbps: 6228.865 4000 779229688 6233.838 100.00% Conn: 1 Mbps: 6233.838 Peak Mbps: 6236.934 Avg Mbps: 6233.838 5000 779393268 6235.146 100.00% Conn: 1 Mbps: 6235.146 Peak Mbps: 6236.934 Avg Mbps: 6235.146 --- 169.254.1.12 tcpbench statistics --- 4673519622 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6223.942/6231.745/6236.934/4.734 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 758897708 6071.182 100.00% Conn: 1 Mbps: 6071.182 Peak Mbps: 6071.182 Avg Mbps: 6071.182 2000 761260968 6096.184 100.00% Conn: 1 Mbps: 6096.184 Peak Mbps: 6096.184 Avg Mbps: 6096.184 3000 760214696 6081.718 100.00% Conn: 1 Mbps: 6081.718 Peak Mbps: 6096.184 Avg Mbps: 6081.718 4000 760835920 6086.687 100.00% Conn: 1 Mbps: 6086.687 Peak Mbps: 6096.184 Avg Mbps: 6086.687 5000 760966704 6087.734 100.00% Conn: 1 Mbps: 6087.734 Peak Mbps: 6096.184 Avg Mbps: 6087.734 --- fc00:0:0:1::12 tcpbench statistics --- 4562456084 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6071.182/6084.701/6096.184/8.206 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.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-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.045 ms --- fc00::13 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-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 773915236 6191.322 100.00% Conn: 1 Mbps: 6191.322 Peak Mbps: 6191.322 Avg Mbps: 6191.322 2000 775500064 6210.211 100.00% Conn: 1 Mbps: 6210.211 Peak Mbps: 6210.211 Avg Mbps: 6210.211 3000 777397592 6219.181 100.00% Conn: 1 Mbps: 6219.181 Peak Mbps: 6219.181 Avg Mbps: 6219.181 4000 776285248 6210.282 100.00% Conn: 1 Mbps: 6210.282 Peak Mbps: 6219.181 Avg Mbps: 6210.282 5000 775761792 6206.094 100.00% Conn: 1 Mbps: 6206.094 Peak Mbps: 6219.181 Avg Mbps: 6206.094 --- 169.254.0.13 tcpbench statistics --- 4654981600 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6191.322/6207.418/6219.181/9.113 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 787420972 6299.368 100.00% Conn: 1 Mbps: 6299.368 Peak Mbps: 6299.368 Avg Mbps: 6299.368 2000 786077232 6294.913 100.00% Conn: 1 Mbps: 6294.913 Peak Mbps: 6299.368 Avg Mbps: 6294.913 3000 785161744 6281.294 100.00% Conn: 1 Mbps: 6281.294 Peak Mbps: 6299.368 Avg Mbps: 6281.294 4000 787025416 6296.203 100.00% Conn: 1 Mbps: 6296.203 Peak Mbps: 6299.368 Avg Mbps: 6296.203 5000 786469584 6291.757 100.00% Conn: 1 Mbps: 6291.757 Peak Mbps: 6299.368 Avg Mbps: 6291.757 --- fc00::13 tcpbench statistics --- 4718232180 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6281.294/6292.707/6299.368/6.207 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.86s