START sys/net/pair 2025-03-11T04:56:01Z ==== 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 514315080 4114.521 100.00% Conn: 1 Mbps: 4114.521 Peak Mbps: 4114.521 Avg Mbps: 4114.521 2000 513885888 4115.202 100.00% Conn: 1 Mbps: 4115.202 Peak Mbps: 4115.202 Avg Mbps: 4115.202 3000 513520280 4108.162 100.00% Conn: 1 Mbps: 4108.162 Peak Mbps: 4115.202 Avg Mbps: 4108.162 4000 513917680 4111.341 100.00% Conn: 1 Mbps: 4111.341 Peak Mbps: 4115.202 Avg Mbps: 4111.341 5000 513305684 4106.445 100.00% Conn: 1 Mbps: 4106.445 Peak Mbps: 4115.202 Avg Mbps: 4106.445 --- 169.254.1.11 tcpbench statistics --- 3082377464 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4106.445/4111.134/4115.202/3.432 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 507867680 4062.941 100.00% Conn: 1 Mbps: 4062.941 Peak Mbps: 4062.941 Avg Mbps: 4062.941 2000 506955960 4059.707 100.00% Conn: 1 Mbps: 4059.707 Peak Mbps: 4062.941 Avg Mbps: 4059.707 3000 506694336 4053.555 100.00% Conn: 1 Mbps: 4053.555 Peak Mbps: 4062.941 Avg Mbps: 4053.555 4000 505853968 4046.832 100.00% Conn: 1 Mbps: 4046.832 Peak Mbps: 4062.941 Avg Mbps: 4046.832 5000 506147304 4049.178 100.00% Conn: 1 Mbps: 4049.178 Peak Mbps: 4062.941 Avg Mbps: 4049.178 --- fc00:0:0:1::11 tcpbench statistics --- 3039999528 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4046.832/4054.443/4062.941/6.105 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.082 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.082/0.082/0.082/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.163 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.163/0.163/0.163/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 269381952 2155.056 100.00% Conn: 1 Mbps: 2155.056 Peak Mbps: 2155.056 Avg Mbps: 2155.056 2001 286322664 2290.581 100.00% Conn: 1 Mbps: 2290.581 Peak Mbps: 2290.581 Avg Mbps: 2290.581 3001 287863280 2302.906 100.00% Conn: 1 Mbps: 2302.906 Peak Mbps: 2302.906 Avg Mbps: 2302.906 4003 289595296 2314.448 100.00% Conn: 1 Mbps: 2314.448 Peak Mbps: 2314.448 Avg Mbps: 2314.448 5002 288013872 2306.417 100.00% Conn: 1 Mbps: 2306.417 Peak Mbps: 2314.448 Avg Mbps: 2306.417 --- 169.254.1.12 tcpbench statistics --- 1702977840 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2155.056/2273.882/2314.448/59.908 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 251908936 2013.258 100.00% Conn: 1 Mbps: 2013.258 Peak Mbps: 2013.258 Avg Mbps: 2013.258 2001 267933372 2145.613 100.00% Conn: 1 Mbps: 2145.613 Peak Mbps: 2145.613 Avg Mbps: 2145.613 3001 272135000 2179.259 100.00% Conn: 1 Mbps: 2179.259 Peak Mbps: 2179.259 Avg Mbps: 2179.259 4002 271341484 2168.563 100.00% Conn: 1 Mbps: 2168.563 Peak Mbps: 2179.259 Avg Mbps: 2168.563 5002 271726564 2173.813 100.00% Conn: 1 Mbps: 2173.813 Peak Mbps: 2179.259 Avg Mbps: 2173.813 --- fc00:0:0:1::12 tcpbench statistics --- 1608734544 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2013.258/2136.101/2179.259/62.481 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.063 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.063/0.063/0.063/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 576068380 4608.547 100.00% Conn: 1 Mbps: 4608.547 Peak Mbps: 4608.547 Avg Mbps: 4608.547 2000 584340988 4674.728 100.00% Conn: 1 Mbps: 4674.728 Peak Mbps: 4674.728 Avg Mbps: 4674.728 3000 588857552 4710.860 100.00% Conn: 1 Mbps: 4710.860 Peak Mbps: 4710.860 Avg Mbps: 4710.860 4000 572388456 4579.108 100.00% Conn: 1 Mbps: 4579.108 Peak Mbps: 4710.860 Avg Mbps: 4579.108 5000 569680568 4562.007 100.00% Conn: 1 Mbps: 4562.007 Peak Mbps: 4710.860 Avg Mbps: 4562.007 --- 169.254.0.13 tcpbench statistics --- 3437641304 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4562.007/4627.050/4710.860/56.866 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 598963528 4791.708 100.00% Conn: 1 Mbps: 4791.708 Peak Mbps: 4791.708 Avg Mbps: 4791.708 2000 634884648 5079.077 100.00% Conn: 1 Mbps: 5079.077 Peak Mbps: 5079.077 Avg Mbps: 5079.077 3000 636246576 5089.973 100.00% Conn: 1 Mbps: 5089.973 Peak Mbps: 5089.973 Avg Mbps: 5089.973 4000 634888808 5079.110 100.00% Conn: 1 Mbps: 5079.110 Peak Mbps: 5089.973 Avg Mbps: 5079.110 5001 637184808 5097.478 100.00% Conn: 1 Mbps: 5097.478 Peak Mbps: 5097.478 Avg Mbps: 5097.478 --- fc00::13 tcpbench statistics --- 3777773168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4791.708/5027.469/5097.478/118.086 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.047 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.047/0.047/0.047/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.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-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 272960520 2181.503 100.00% Conn: 1 Mbps: 2181.503 Peak Mbps: 2181.503 Avg Mbps: 2181.503 2001 283162232 2265.298 100.00% Conn: 1 Mbps: 2265.298 Peak Mbps: 2265.298 Avg Mbps: 2265.298 3001 284903680 2279.229 100.00% Conn: 1 Mbps: 2279.229 Peak Mbps: 2279.229 Avg Mbps: 2279.229 4002 285591648 2284.733 100.00% Conn: 1 Mbps: 2284.733 Peak Mbps: 2284.733 Avg Mbps: 2284.733 5003 285681304 2283.167 100.00% Conn: 1 Mbps: 2283.167 Peak Mbps: 2284.733 Avg Mbps: 2283.167 --- 169.254.1.11 tcpbench statistics --- 1696946208 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2181.503/2258.786/2284.733/39.245 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 255079308 2040.634 100.00% Conn: 1 Mbps: 2040.634 Peak Mbps: 2040.634 Avg Mbps: 2040.634 2001 269188640 2151.358 100.00% Conn: 1 Mbps: 2151.358 Peak Mbps: 2151.358 Avg Mbps: 2151.358 3001 268902984 2153.377 100.00% Conn: 1 Mbps: 2153.377 Peak Mbps: 2153.377 Avg Mbps: 2153.377 4002 268235344 2143.739 100.00% Conn: 1 Mbps: 2143.739 Peak Mbps: 2153.377 Avg Mbps: 2143.739 5002 272135468 2177.084 100.00% Conn: 1 Mbps: 2177.084 Peak Mbps: 2177.084 Avg Mbps: 2177.084 --- fc00:0:0:1::11 tcpbench statistics --- 1604874464 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2040.634/2133.238/2177.084/47.628 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.053 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.053/0.053/0.053/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 515477864 4123.823 100.00% Conn: 1 Mbps: 4123.823 Peak Mbps: 4123.823 Avg Mbps: 4123.823 2000 517114104 4141.054 100.00% Conn: 1 Mbps: 4141.054 Peak Mbps: 4141.054 Avg Mbps: 4141.054 3000 517554296 4140.434 100.00% Conn: 1 Mbps: 4140.434 Peak Mbps: 4141.054 Avg Mbps: 4140.434 4000 516605856 4132.847 100.00% Conn: 1 Mbps: 4132.847 Peak Mbps: 4141.054 Avg Mbps: 4132.847 5000 516240960 4134.062 100.00% Conn: 1 Mbps: 4134.062 Peak Mbps: 4141.054 Avg Mbps: 4134.062 --- 169.254.1.12 tcpbench statistics --- 3100057952 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4123.823/4134.444/4141.054/6.246 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 516042072 4128.337 100.00% Conn: 1 Mbps: 4128.337 Peak Mbps: 4128.337 Avg Mbps: 4128.337 2000 516226284 4133.944 100.00% Conn: 1 Mbps: 4133.944 Peak Mbps: 4133.944 Avg Mbps: 4133.944 3000 517144488 4137.156 100.00% Conn: 1 Mbps: 4137.156 Peak Mbps: 4137.156 Avg Mbps: 4137.156 4000 516653256 4133.226 100.00% Conn: 1 Mbps: 4133.226 Peak Mbps: 4137.156 Avg Mbps: 4133.226 5000 515700780 4125.606 100.00% Conn: 1 Mbps: 4125.606 Peak Mbps: 4137.156 Avg Mbps: 4125.606 --- fc00:0:0:1::12 tcpbench statistics --- 3098420136 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4125.606/4131.654/4137.156/4.137 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.044 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.044/0.044/0.044/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.050 ms --- fc00::13 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-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 773734904 6189.879 100.00% Conn: 1 Mbps: 6189.879 Peak Mbps: 6189.879 Avg Mbps: 6189.879 2000 773667968 6195.539 100.00% Conn: 1 Mbps: 6195.539 Peak Mbps: 6195.539 Avg Mbps: 6195.539 3000 773438956 6187.512 100.00% Conn: 1 Mbps: 6187.512 Peak Mbps: 6195.539 Avg Mbps: 6187.512 4000 774027844 6192.223 100.00% Conn: 1 Mbps: 6192.223 Peak Mbps: 6195.539 Avg Mbps: 6192.223 5000 773209944 6185.680 100.00% Conn: 1 Mbps: 6185.680 Peak Mbps: 6195.539 Avg Mbps: 6185.680 --- 169.254.0.13 tcpbench statistics --- 4641354992 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6185.680/6190.166/6195.539/3.474 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 746713444 5973.708 100.00% Conn: 1 Mbps: 5973.708 Peak Mbps: 5973.708 Avg Mbps: 5973.708 2000 745893848 5973.124 100.00% Conn: 1 Mbps: 5973.124 Peak Mbps: 5973.708 Avg Mbps: 5973.124 3000 747038208 5976.306 100.00% Conn: 1 Mbps: 5976.306 Peak Mbps: 5976.306 Avg Mbps: 5976.306 4000 746482376 5971.859 100.00% Conn: 1 Mbps: 5971.859 Peak Mbps: 5976.306 Avg Mbps: 5971.859 5000 746449680 5971.597 100.00% Conn: 1 Mbps: 5971.597 Peak Mbps: 5976.306 Avg Mbps: 5971.597 --- fc00::13 tcpbench statistics --- 4479125324 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5971.597/5973.319/5976.306/1.685 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.058 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.058/0.058/0.058/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 269524576 2154.043 100.00% Conn: 1 Mbps: 2154.043 Peak Mbps: 2154.043 Avg Mbps: 2154.043 2001 276653192 2213.226 100.00% Conn: 1 Mbps: 2213.226 Peak Mbps: 2213.226 Avg Mbps: 2213.226 3001 283316384 2266.531 100.00% Conn: 1 Mbps: 2266.531 Peak Mbps: 2266.531 Avg Mbps: 2266.531 4001 281193056 2249.544 100.00% Conn: 1 Mbps: 2249.544 Peak Mbps: 2266.531 Avg Mbps: 2249.544 5001 280928512 2247.428 100.00% Conn: 1 Mbps: 2247.428 Peak Mbps: 2266.531 Avg Mbps: 2247.428 --- 169.254.1.11 tcpbench statistics --- 1672547688 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2154.043/2226.154/2266.531/39.993 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 531893088 4255.145 100.00% Conn: 1 Mbps: 4255.145 Peak Mbps: 4255.145 Avg Mbps: 4255.145 2000 598307272 4786.458 100.00% Conn: 1 Mbps: 4786.458 Peak Mbps: 4786.458 Avg Mbps: 4786.458 3001 610948208 4887.586 100.00% Conn: 1 Mbps: 4887.586 Peak Mbps: 4887.586 Avg Mbps: 4887.586 4001 602964960 4823.720 100.00% Conn: 1 Mbps: 4823.720 Peak Mbps: 4887.586 Avg Mbps: 4823.720 5001 593950624 4751.605 100.00% Conn: 1 Mbps: 4751.605 Peak Mbps: 4887.586 Avg Mbps: 4751.605 --- fc00:0:0:1::11 tcpbench statistics --- 3533245496 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4255.145/4700.903/4887.586/227.387 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.050 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.050/0.050/0.050/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 775225918 6201.807 100.00% Conn: 1 Mbps: 6201.807 Peak Mbps: 6201.807 Avg Mbps: 6201.807 2000 776448348 6217.805 100.00% Conn: 1 Mbps: 6217.805 Peak Mbps: 6217.805 Avg Mbps: 6217.805 3000 777070432 6216.563 100.00% Conn: 1 Mbps: 6216.563 Peak Mbps: 6217.805 Avg Mbps: 6216.563 4000 777168580 6217.349 100.00% Conn: 1 Mbps: 6217.349 Peak Mbps: 6217.805 Avg Mbps: 6217.349 5000 777070432 6216.563 100.00% Conn: 1 Mbps: 6216.563 Peak Mbps: 6217.805 Avg Mbps: 6216.563 --- 169.254.1.12 tcpbench statistics --- 4659367106 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6201.807/6214.017/6217.805/6.124 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 758552420 6068.419 100.00% Conn: 1 Mbps: 6068.419 Peak Mbps: 6068.419 Avg Mbps: 6068.419 2000 759397296 6081.260 100.00% Conn: 1 Mbps: 6081.260 Peak Mbps: 6081.260 Avg Mbps: 6081.260 3000 760018520 6080.148 100.00% Conn: 1 Mbps: 6080.148 Peak Mbps: 6081.260 Avg Mbps: 6080.148 4000 760934008 6087.472 100.00% Conn: 1 Mbps: 6087.472 Peak Mbps: 6087.472 Avg Mbps: 6087.472 5000 761914888 6095.319 100.00% Conn: 1 Mbps: 6095.319 Peak Mbps: 6095.319 Avg Mbps: 6095.319 --- fc00:0:0:1::12 tcpbench statistics --- 4562797412 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6068.419/6082.524/6095.319/8.881 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.039 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.039/0.039/0.039/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.057 ms --- fc00::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-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 782551482 6260.412 100.00% Conn: 1 Mbps: 6260.412 Peak Mbps: 6260.412 Avg Mbps: 6260.412 2000 781912400 6261.561 100.00% Conn: 1 Mbps: 6261.561 Peak Mbps: 6261.561 Avg Mbps: 6261.561 3000 782010548 6256.084 100.00% Conn: 1 Mbps: 6256.084 Peak Mbps: 6261.561 Avg Mbps: 6256.084 4000 781716104 6253.729 100.00% Conn: 1 Mbps: 6253.729 Peak Mbps: 6261.561 Avg Mbps: 6253.729 5000 781290796 6250.326 100.00% Conn: 1 Mbps: 6250.326 Peak Mbps: 6261.561 Avg Mbps: 6250.326 --- 169.254.0.13 tcpbench statistics --- 4691295582 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6250.326/6256.422/6261.561/4.168 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 780604180 6244.833 100.00% Conn: 1 Mbps: 6244.833 Peak Mbps: 6244.833 Avg Mbps: 6244.833 2000 781467096 6257.995 100.00% Conn: 1 Mbps: 6257.995 Peak Mbps: 6257.995 Avg Mbps: 6257.995 3000 781401704 6251.214 100.00% Conn: 1 Mbps: 6251.214 Peak Mbps: 6257.995 Avg Mbps: 6251.214 4000 781107440 6248.860 100.00% Conn: 1 Mbps: 6248.860 Peak Mbps: 6257.995 Avg Mbps: 6248.860 5000 781695968 6253.568 100.00% Conn: 1 Mbps: 6253.568 Peak Mbps: 6257.995 Avg Mbps: 6253.568 --- fc00::13 tcpbench statistics --- 4686435644 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6244.833/6251.294/6257.995/4.421 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.87s