START sys/net/pair 2025-04-02T03:47:15Z ==== 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.048 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.048/0.048/0.048/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.046 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 520427092 4163.417 100.00% Conn: 1 Mbps: 4163.417 Peak Mbps: 4163.417 Avg Mbps: 4163.417 2000 519091828 4156.892 100.00% Conn: 1 Mbps: 4156.892 Peak Mbps: 4163.417 Avg Mbps: 4156.892 3000 519211048 4153.688 100.00% Conn: 1 Mbps: 4153.688 Peak Mbps: 4163.417 Avg Mbps: 4153.688 4000 519664084 4157.313 100.00% Conn: 1 Mbps: 4157.313 Peak Mbps: 4163.417 Avg Mbps: 4157.313 5000 518360612 4146.885 100.00% Conn: 1 Mbps: 4146.885 Peak Mbps: 4163.417 Avg Mbps: 4146.885 --- 169.254.1.11 tcpbench statistics --- 3113700532 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4146.885/4155.639/4163.417/5.391 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 514202152 4113.617 100.00% Conn: 1 Mbps: 4113.617 Peak Mbps: 4113.617 Avg Mbps: 4113.617 2000 512291504 4102.434 100.00% Conn: 1 Mbps: 4102.434 Peak Mbps: 4113.617 Avg Mbps: 4102.434 3000 512759256 4102.074 100.00% Conn: 1 Mbps: 4102.074 Peak Mbps: 4113.617 Avg Mbps: 4102.074 4000 512783040 4102.264 100.00% Conn: 1 Mbps: 4102.264 Peak Mbps: 4113.617 Avg Mbps: 4102.264 5000 512886104 4103.089 100.00% Conn: 1 Mbps: 4103.089 Peak Mbps: 4113.617 Avg Mbps: 4103.089 --- fc00:0:0:1::11 tcpbench statistics --- 3077300768 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4102.074/4104.696/4113.617/4.474 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.147 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.147/0.147/0.147/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 269507928 2153.910 100.00% Conn: 1 Mbps: 2153.910 Peak Mbps: 2153.910 Avg Mbps: 2153.910 2002 285333456 2282.668 100.00% Conn: 1 Mbps: 2282.668 Peak Mbps: 2282.668 Avg Mbps: 2282.668 3002 287913736 2303.310 100.00% Conn: 1 Mbps: 2303.310 Peak Mbps: 2303.310 Avg Mbps: 2303.310 4002 286874624 2294.997 100.00% Conn: 1 Mbps: 2294.997 Peak Mbps: 2303.310 Avg Mbps: 2294.997 5002 288667920 2311.655 100.00% Conn: 1 Mbps: 2311.655 Peak Mbps: 2311.655 Avg Mbps: 2311.655 --- 169.254.1.12 tcpbench statistics --- 1705961616 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2153.910/2269.308/2311.655/58.489 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 255166840 2039.295 100.00% Conn: 1 Mbps: 2039.295 Peak Mbps: 2039.295 Avg Mbps: 2039.295 2002 272824908 2182.599 100.00% Conn: 1 Mbps: 2182.599 Peak Mbps: 2182.599 Avg Mbps: 2182.599 3002 274203056 2193.624 100.00% Conn: 1 Mbps: 2193.624 Peak Mbps: 2193.624 Avg Mbps: 2193.624 4004 275504600 2201.835 100.00% Conn: 1 Mbps: 2201.835 Peak Mbps: 2201.835 Avg Mbps: 2201.835 5003 277017248 2218.356 100.00% Conn: 1 Mbps: 2218.356 Peak Mbps: 2218.356 Avg Mbps: 2218.356 --- fc00:0:0:1::12 tcpbench statistics --- 1629444448 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2039.295/2167.142/2218.356/64.979 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.066 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.066/0.066/0.066/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.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-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 580862284 4646.898 100.00% Conn: 1 Mbps: 4646.898 Peak Mbps: 4646.898 Avg Mbps: 4646.898 2000 562224084 4502.295 100.00% Conn: 1 Mbps: 4502.295 Peak Mbps: 4646.898 Avg Mbps: 4502.295 3000 559817240 4478.538 100.00% Conn: 1 Mbps: 4478.538 Peak Mbps: 4646.898 Avg Mbps: 4478.538 4000 534367744 4274.942 100.00% Conn: 1 Mbps: 4274.942 Peak Mbps: 4646.898 Avg Mbps: 4274.942 5000 527246476 4222.194 100.00% Conn: 1 Mbps: 4222.194 Peak Mbps: 4646.898 Avg Mbps: 4222.194 --- 169.254.0.13 tcpbench statistics --- 3290524416 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4222.194/4424.973/4646.898/156.030 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 603744760 4829.958 100.00% Conn: 1 Mbps: 4829.958 Peak Mbps: 4829.958 Avg Mbps: 4829.958 2000 638155536 5105.244 100.00% Conn: 1 Mbps: 5105.244 Peak Mbps: 5105.244 Avg Mbps: 5105.244 3000 640820512 5126.564 100.00% Conn: 1 Mbps: 5126.564 Peak Mbps: 5126.564 Avg Mbps: 5126.564 4001 643327448 5146.620 100.00% Conn: 1 Mbps: 5146.620 Peak Mbps: 5146.620 Avg Mbps: 5146.620 5001 645544424 5164.355 100.00% Conn: 1 Mbps: 5164.355 Peak Mbps: 5164.355 Avg Mbps: 5164.355 --- fc00::13 tcpbench statistics --- 3816155600 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4829.958/5074.548/5164.355/123.880 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.057 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.057/0.057/0.057/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.052 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.052/0.052/0.052/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 274046016 2190.178 100.00% Conn: 1 Mbps: 2190.178 Peak Mbps: 2190.178 Avg Mbps: 2190.178 2000 284046072 2276.922 100.00% Conn: 1 Mbps: 2276.922 Peak Mbps: 2276.922 Avg Mbps: 2276.922 3000 285368040 2282.944 100.00% Conn: 1 Mbps: 2282.944 Peak Mbps: 2282.944 Avg Mbps: 2282.944 4002 286234896 2287.592 100.00% Conn: 1 Mbps: 2287.592 Peak Mbps: 2287.592 Avg Mbps: 2287.592 5002 285598736 2287.077 100.00% Conn: 1 Mbps: 2287.077 Peak Mbps: 2287.592 Avg Mbps: 2287.077 --- 169.254.1.11 tcpbench statistics --- 1700024736 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2190.178/2264.943/2287.592/37.577 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 254396512 2035.172 100.00% Conn: 1 Mbps: 2035.172 Peak Mbps: 2035.172 Avg Mbps: 2035.172 2000 267504448 2142.178 100.00% Conn: 1 Mbps: 2142.178 Peak Mbps: 2142.178 Avg Mbps: 2142.178 3001 269142916 2153.143 100.00% Conn: 1 Mbps: 2153.143 Peak Mbps: 2153.143 Avg Mbps: 2153.143 4003 270104568 2158.678 100.00% Conn: 1 Mbps: 2158.678 Peak Mbps: 2158.678 Avg Mbps: 2158.678 5002 268788532 2152.461 100.00% Conn: 1 Mbps: 2152.461 Peak Mbps: 2158.678 Avg Mbps: 2152.461 --- fc00:0:0:1::11 tcpbench statistics --- 1600665680 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2035.172/2128.326/2158.678/46.881 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.047 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-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 523640240 4189.122 100.00% Conn: 1 Mbps: 4189.122 Peak Mbps: 4189.122 Avg Mbps: 4189.122 2000 523667752 4193.536 100.00% Conn: 1 Mbps: 4193.536 Peak Mbps: 4193.536 Avg Mbps: 4193.536 3000 523094344 4184.755 100.00% Conn: 1 Mbps: 4184.755 Peak Mbps: 4193.536 Avg Mbps: 4184.755 4000 523796624 4190.373 100.00% Conn: 1 Mbps: 4190.373 Peak Mbps: 4193.536 Avg Mbps: 4190.373 5000 524058712 4192.470 100.00% Conn: 1 Mbps: 4192.470 Peak Mbps: 4193.536 Avg Mbps: 4192.470 --- 169.254.1.12 tcpbench statistics --- 3141740080 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4184.755/4190.051/4193.536/3.066 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 515212404 4121.699 100.00% Conn: 1 Mbps: 4121.699 Peak Mbps: 4121.699 Avg Mbps: 4121.699 2000 515456592 4127.781 100.00% Conn: 1 Mbps: 4127.781 Peak Mbps: 4127.781 Avg Mbps: 4127.781 3000 515342352 4122.739 100.00% Conn: 1 Mbps: 4122.739 Peak Mbps: 4127.781 Avg Mbps: 4122.739 4000 514983924 4119.871 100.00% Conn: 1 Mbps: 4119.871 Peak Mbps: 4127.781 Avg Mbps: 4119.871 5000 515473728 4123.790 100.00% Conn: 1 Mbps: 4123.790 Peak Mbps: 4127.781 Avg Mbps: 4123.790 --- fc00:0:0:1::12 tcpbench statistics --- 3092155500 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4119.871/4123.176/4127.781/2.641 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.045 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.045/0.045/0.045/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.076 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.076/0.076/0.076/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 780981806 6247.854 100.00% Conn: 1 Mbps: 6247.854 Peak Mbps: 6247.854 Avg Mbps: 6247.854 2000 780865488 6253.177 100.00% Conn: 1 Mbps: 6253.177 Peak Mbps: 6253.177 Avg Mbps: 6253.177 3000 783450052 6267.600 100.00% Conn: 1 Mbps: 6267.600 Peak Mbps: 6267.600 Avg Mbps: 6267.600 4000 776350680 6210.805 100.00% Conn: 1 Mbps: 6210.805 Peak Mbps: 6267.600 Avg Mbps: 6210.805 5000 779884008 6239.072 100.00% Conn: 1 Mbps: 6239.072 Peak Mbps: 6267.600 Avg Mbps: 6239.072 --- 169.254.0.13 tcpbench statistics --- 4677457406 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6210.805/6243.702/6267.600/18.877 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 759366868 6074.935 100.00% Conn: 1 Mbps: 6074.935 Peak Mbps: 6074.935 Avg Mbps: 6074.935 2000 759233816 6079.950 100.00% Conn: 1 Mbps: 6079.950 Peak Mbps: 6079.950 Avg Mbps: 6079.950 3000 760280088 6082.241 100.00% Conn: 1 Mbps: 6082.241 Peak Mbps: 6082.241 Avg Mbps: 6082.241 4000 754950640 6039.605 100.00% Conn: 1 Mbps: 6039.605 Peak Mbps: 6082.241 Avg Mbps: 6039.605 5000 763059248 6104.474 100.00% Conn: 1 Mbps: 6104.474 Peak Mbps: 6104.474 Avg Mbps: 6104.474 --- fc00::13 tcpbench statistics --- 4559197900 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6039.605/6076.241/6104.474/20.932 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 1002 272907664 2178.904 100.00% Conn: 1 Mbps: 2178.904 Peak Mbps: 2178.904 Avg Mbps: 2178.904 2003 282783584 2260.009 100.00% Conn: 1 Mbps: 2260.009 Peak Mbps: 2260.009 Avg Mbps: 2260.009 3003 278088768 2226.937 100.00% Conn: 1 Mbps: 2226.937 Peak Mbps: 2260.009 Avg Mbps: 2226.937 4004 282699096 2259.333 100.00% Conn: 1 Mbps: 2259.333 Peak Mbps: 2260.009 Avg Mbps: 2259.333 5006 285324536 2278.040 100.00% Conn: 1 Mbps: 2278.040 Peak Mbps: 2278.040 Avg Mbps: 2278.040 --- 169.254.1.11 tcpbench statistics --- 1681887264 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2178.904/2240.645/2278.040/34.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 540667904 4325.343 100.00% Conn: 1 Mbps: 4325.343 Peak Mbps: 4325.343 Avg Mbps: 4325.343 2000 601847552 4814.780 100.00% Conn: 1 Mbps: 4814.780 Peak Mbps: 4814.780 Avg Mbps: 4814.780 3001 612489152 4899.913 100.00% Conn: 1 Mbps: 4899.913 Peak Mbps: 4899.913 Avg Mbps: 4899.913 4001 608181640 4865.453 100.00% Conn: 1 Mbps: 4865.453 Peak Mbps: 4899.913 Avg Mbps: 4865.453 5001 598747816 4794.777 100.00% Conn: 1 Mbps: 4794.777 Peak Mbps: 4899.913 Avg Mbps: 4794.777 --- fc00:0:0:1::11 tcpbench statistics --- 3565268200 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4325.343/4740.053/4899.913/210.639 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.048 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.048/0.048/0.048/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.050 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 790565966 6324.528 100.00% Conn: 1 Mbps: 6324.528 Peak Mbps: 6324.528 Avg Mbps: 6324.528 2000 788455492 6313.958 100.00% Conn: 1 Mbps: 6313.958 Peak Mbps: 6324.528 Avg Mbps: 6313.958 3000 789142636 6313.141 100.00% Conn: 1 Mbps: 6313.141 Peak Mbps: 6324.528 Avg Mbps: 6313.141 4000 789895104 6319.161 100.00% Conn: 1 Mbps: 6319.161 Peak Mbps: 6324.528 Avg Mbps: 6319.161 5000 790483992 6323.872 100.00% Conn: 1 Mbps: 6323.872 Peak Mbps: 6324.528 Avg Mbps: 6323.872 --- 169.254.1.12 tcpbench statistics --- 4738798170 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6313.141/6318.932/6324.528/4.776 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 754461316 6035.691 100.00% Conn: 1 Mbps: 6035.691 Peak Mbps: 6035.691 Avg Mbps: 6035.691 2000 755571864 6050.626 100.00% Conn: 1 Mbps: 6050.626 Peak Mbps: 6050.626 Avg Mbps: 6050.626 3000 756323872 6050.591 100.00% Conn: 1 Mbps: 6050.591 Peak Mbps: 6050.626 Avg Mbps: 6050.591 4000 756225784 6049.806 100.00% Conn: 1 Mbps: 6049.806 Peak Mbps: 6050.626 Avg Mbps: 6049.806 5000 756127696 6049.022 100.00% Conn: 1 Mbps: 6049.022 Peak Mbps: 6050.626 Avg Mbps: 6049.022 --- fc00:0:0:1::12 tcpbench statistics --- 4536407636 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6035.691/6047.147/6050.626/5.758 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.051 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.051/0.051/0.051/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 781280354 6250.243 100.00% Conn: 1 Mbps: 6250.243 Peak Mbps: 6250.243 Avg Mbps: 6250.243 2000 782239560 6264.181 100.00% Conn: 1 Mbps: 6264.181 Peak Mbps: 6264.181 Avg Mbps: 6264.181 3000 782141412 6257.131 100.00% Conn: 1 Mbps: 6257.131 Peak Mbps: 6264.181 Avg Mbps: 6257.131 4000 781192648 6249.541 100.00% Conn: 1 Mbps: 6249.541 Peak Mbps: 6264.181 Avg Mbps: 6249.541 5000 782174128 6257.393 100.00% Conn: 1 Mbps: 6257.393 Peak Mbps: 6264.181 Avg Mbps: 6257.393 --- 169.254.0.13 tcpbench statistics --- 4691104082 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6249.541/6255.698/6264.181/5.377 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 784547468 6276.380 100.00% Conn: 1 Mbps: 6276.380 Peak Mbps: 6276.380 Avg Mbps: 6276.380 2000 786567672 6298.840 100.00% Conn: 1 Mbps: 6298.840 Peak Mbps: 6298.840 Avg Mbps: 6298.840 3000 787188896 6297.511 100.00% Conn: 1 Mbps: 6297.511 Peak Mbps: 6298.840 Avg Mbps: 6297.511 4000 786829240 6294.634 100.00% Conn: 1 Mbps: 6294.634 Peak Mbps: 6298.840 Avg Mbps: 6294.634 5000 789608400 6316.867 100.00% Conn: 1 Mbps: 6316.867 Peak Mbps: 6316.867 Avg Mbps: 6316.867 --- fc00::13 tcpbench statistics --- 4724350076 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6276.380/6296.846/6316.867/12.877 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.88s