START sys/net/pair 2025-03-15T05:04:58Z ==== 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.044 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.044/0.044/0.044/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 511588916 4092.711 100.00% Conn: 1 Mbps: 4092.711 Peak Mbps: 4092.711 Avg Mbps: 4092.711 2000 510309288 4086.561 100.00% Conn: 1 Mbps: 4086.561 Peak Mbps: 4092.711 Avg Mbps: 4086.561 3000 510213912 4081.711 100.00% Conn: 1 Mbps: 4081.711 Peak Mbps: 4092.711 Avg Mbps: 4081.711 4000 510182120 4081.457 100.00% Conn: 1 Mbps: 4081.457 Peak Mbps: 4092.711 Avg Mbps: 4081.457 5000 509776772 4078.214 100.00% Conn: 1 Mbps: 4078.214 Peak Mbps: 4092.711 Avg Mbps: 4078.214 --- 169.254.1.11 tcpbench statistics --- 3061951104 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4078.214/4084.131/4092.711/5.051 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 507772544 4062.180 100.00% Conn: 1 Mbps: 4062.180 Peak Mbps: 4062.180 Avg Mbps: 4062.180 2000 506194872 4053.613 100.00% Conn: 1 Mbps: 4053.613 Peak Mbps: 4062.180 Avg Mbps: 4053.613 3000 506139376 4049.115 100.00% Conn: 1 Mbps: 4049.115 Peak Mbps: 4062.180 Avg Mbps: 4049.115 4000 506329648 4050.637 100.00% Conn: 1 Mbps: 4050.637 Peak Mbps: 4062.180 Avg Mbps: 4050.637 5000 506179016 4049.432 100.00% Conn: 1 Mbps: 4049.432 Peak Mbps: 4062.180 Avg Mbps: 4049.432 --- fc00:0:0:1::11 tcpbench statistics --- 3038588344 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4049.115/4052.995/4062.180/4.859 Mbps ==== run-ping-1-2 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.071 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/0.000 ms ==== run-ping6-1-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.139 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.139/0.139/0.139/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 276223640 2209.789 100.00% Conn: 1 Mbps: 2209.789 Peak Mbps: 2209.789 Avg Mbps: 2209.789 2001 291229656 2329.837 100.00% Conn: 1 Mbps: 2329.837 Peak Mbps: 2329.837 Avg Mbps: 2329.837 3001 289032648 2314.576 100.00% Conn: 1 Mbps: 2314.576 Peak Mbps: 2329.837 Avg Mbps: 2314.576 4002 291707384 2331.328 100.00% Conn: 1 Mbps: 2331.328 Peak Mbps: 2331.328 Avg Mbps: 2331.328 5001 290643656 2327.477 100.00% Conn: 1 Mbps: 2327.477 Peak Mbps: 2331.328 Avg Mbps: 2327.477 --- 169.254.1.12 tcpbench statistics --- 1728753184 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2209.789/2302.601/2331.328/46.783 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 258953896 2071.631 100.00% Conn: 1 Mbps: 2071.631 Peak Mbps: 2071.631 Avg Mbps: 2071.631 2000 272180044 2177.440 100.00% Conn: 1 Mbps: 2177.440 Peak Mbps: 2177.440 Avg Mbps: 2177.440 3002 277368564 2216.732 100.00% Conn: 1 Mbps: 2216.732 Peak Mbps: 2216.732 Avg Mbps: 2216.732 4003 274427364 2195.419 100.00% Conn: 1 Mbps: 2195.419 Peak Mbps: 2216.732 Avg Mbps: 2195.419 5002 274977952 2202.026 100.00% Conn: 1 Mbps: 2202.026 Peak Mbps: 2216.732 Avg Mbps: 2202.026 --- fc00:0:0:1::12 tcpbench statistics --- 1636748752 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2071.631/2172.650/2216.732/52.062 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.061 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.061/0.061/0.061/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.071 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/0.000 ms ==== run-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 566787076 4534.297 100.00% Conn: 1 Mbps: 4534.297 Peak Mbps: 4534.297 Avg Mbps: 4534.297 2000 574630632 4597.045 100.00% Conn: 1 Mbps: 4597.045 Peak Mbps: 4597.045 Avg Mbps: 4597.045 3000 586259956 4690.080 100.00% Conn: 1 Mbps: 4690.080 Peak Mbps: 4690.080 Avg Mbps: 4690.080 4000 571435676 4571.485 100.00% Conn: 1 Mbps: 4571.485 Peak Mbps: 4690.080 Avg Mbps: 4571.485 5000 561842860 4494.743 100.00% Conn: 1 Mbps: 4494.743 Peak Mbps: 4690.080 Avg Mbps: 4494.743 --- 169.254.0.13 tcpbench statistics --- 3387717848 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4494.743/4577.530/4690.080/66.042 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 603122216 4824.978 100.00% Conn: 1 Mbps: 4824.978 Peak Mbps: 4824.978 Avg Mbps: 4824.978 2000 640595928 5129.897 100.00% Conn: 1 Mbps: 5129.897 Peak Mbps: 5129.897 Avg Mbps: 5129.897 3000 641393536 5131.148 100.00% Conn: 1 Mbps: 5131.148 Peak Mbps: 5131.148 Avg Mbps: 5131.148 4001 639122880 5112.983 100.00% Conn: 1 Mbps: 5112.983 Peak Mbps: 5131.148 Avg Mbps: 5112.983 5001 639930112 5119.441 100.00% Conn: 1 Mbps: 5119.441 Peak Mbps: 5131.148 Avg Mbps: 5119.441 --- fc00::13 tcpbench statistics --- 3803332784 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4824.978/5063.689/5131.148/119.545 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.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 275592528 2202.538 100.00% Conn: 1 Mbps: 2202.538 Peak Mbps: 2202.538 Avg Mbps: 2202.538 2001 285653456 2285.228 100.00% Conn: 1 Mbps: 2285.228 Peak Mbps: 2285.228 Avg Mbps: 2285.228 3003 288849864 2308.490 100.00% Conn: 1 Mbps: 2308.490 Peak Mbps: 2308.490 Avg Mbps: 2308.490 4004 288535360 2308.283 100.00% Conn: 1 Mbps: 2308.283 Peak Mbps: 2308.490 Avg Mbps: 2308.283 5004 288531200 2308.250 100.00% Conn: 1 Mbps: 2308.250 Peak Mbps: 2308.490 Avg Mbps: 2308.250 --- 169.254.1.11 tcpbench statistics --- 1712383264 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2202.538/2282.558/2308.490/40.999 Mbps ==== run-tcpbench6-2-1 ==== rm -f nc.log nc -6 -v -l -V 11 fc00:0:0:1::11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::11 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 12 -b fc00:0:0:1::12 fc00:0:0:1::11 elapsed_ms bytes mbps bwidth 1001 258443872 2065.485 100.00% Conn: 1 Mbps: 2065.485 Peak Mbps: 2065.485 Avg Mbps: 2065.485 2001 269649248 2157.194 100.00% Conn: 1 Mbps: 2157.194 Peak Mbps: 2157.194 Avg Mbps: 2157.194 3001 270530168 2164.241 100.00% Conn: 1 Mbps: 2164.241 Peak Mbps: 2164.241 Avg Mbps: 2164.241 4002 273891100 2188.940 100.00% Conn: 1 Mbps: 2188.940 Peak Mbps: 2188.940 Avg Mbps: 2188.940 5003 274232280 2193.858 100.00% Conn: 1 Mbps: 2193.858 Peak Mbps: 2193.858 Avg Mbps: 2193.858 --- fc00:0:0:1::11 tcpbench statistics --- 1621082188 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2065.485/2153.944/2193.858/46.388 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.049 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.049/0.049/0.049/0.000 ms ==== run-ping6-2-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.043 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-tcpbench-2-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 512104024 4096.832 100.00% Conn: 1 Mbps: 4096.832 Peak Mbps: 4096.832 Avg Mbps: 4096.832 2000 511364096 4095.008 100.00% Conn: 1 Mbps: 4095.008 Peak Mbps: 4096.832 Avg Mbps: 4095.008 3000 510705256 4085.642 100.00% Conn: 1 Mbps: 4085.642 Peak Mbps: 4096.832 Avg Mbps: 4085.642 4000 511035400 4092.376 100.00% Conn: 1 Mbps: 4092.376 Peak Mbps: 4096.832 Avg Mbps: 4092.376 5000 512047552 4096.380 100.00% Conn: 1 Mbps: 4096.380 Peak Mbps: 4096.832 Avg Mbps: 4096.380 --- 169.254.1.12 tcpbench statistics --- 3069028760 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4085.642/4093.248/4096.832/4.108 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 511646688 4093.174 100.00% Conn: 1 Mbps: 4093.174 Peak Mbps: 4093.174 Avg Mbps: 4093.174 2000 510691356 4089.620 100.00% Conn: 1 Mbps: 4089.620 Peak Mbps: 4093.174 Avg Mbps: 4089.620 3000 509867400 4078.939 100.00% Conn: 1 Mbps: 4078.939 Peak Mbps: 4093.174 Avg Mbps: 4078.939 4000 509921664 4079.373 100.00% Conn: 1 Mbps: 4079.373 Peak Mbps: 4093.174 Avg Mbps: 4079.373 5000 510115872 4080.927 100.00% Conn: 1 Mbps: 4080.927 Peak Mbps: 4093.174 Avg Mbps: 4080.927 --- fc00:0:0:1::12 tcpbench statistics --- 3061916172 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4078.939/4084.407/4093.174/5.855 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.058 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.058/0.058/0.058/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 756461802 6051.694 100.00% Conn: 1 Mbps: 6051.694 Peak Mbps: 6051.694 Avg Mbps: 6051.694 2000 758520460 6074.238 100.00% Conn: 1 Mbps: 6074.238 Peak Mbps: 6074.238 Avg Mbps: 6074.238 3000 755117996 6040.944 100.00% Conn: 1 Mbps: 6040.944 Peak Mbps: 6074.238 Avg Mbps: 6040.944 4000 759730952 6077.848 100.00% Conn: 1 Mbps: 6077.848 Peak Mbps: 6077.848 Avg Mbps: 6077.848 5000 758585892 6068.687 100.00% Conn: 1 Mbps: 6068.687 Peak Mbps: 6077.848 Avg Mbps: 6068.687 --- 169.254.0.13 tcpbench statistics --- 4541735718 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6040.944/6062.682/6077.848/14.092 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 747451372 5979.611 100.00% Conn: 1 Mbps: 5979.611 Peak Mbps: 5979.611 Avg Mbps: 5979.611 2000 750961728 6013.708 100.00% Conn: 1 Mbps: 6013.708 Peak Mbps: 6013.708 Avg Mbps: 6013.708 3000 748607616 5988.861 100.00% Conn: 1 Mbps: 5988.861 Peak Mbps: 6013.708 Avg Mbps: 5988.861 4000 747921000 5983.368 100.00% Conn: 1 Mbps: 5983.368 Peak Mbps: 6013.708 Avg Mbps: 5983.368 5000 748346048 5986.768 100.00% Conn: 1 Mbps: 5986.768 Peak Mbps: 6013.708 Avg Mbps: 5986.768 --- fc00::13 tcpbench statistics --- 4490620236 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5979.611/5990.463/6013.708/12.039 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.051 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.051/0.051/0.051/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.057 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.057/0.057/0.057/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 274643144 2194.950 100.00% Conn: 1 Mbps: 2194.950 Peak Mbps: 2194.950 Avg Mbps: 2194.950 2001 285462496 2283.700 100.00% Conn: 1 Mbps: 2283.700 Peak Mbps: 2283.700 Avg Mbps: 2283.700 3002 286420456 2291.364 100.00% Conn: 1 Mbps: 2291.364 Peak Mbps: 2291.364 Avg Mbps: 2291.364 4001 284963592 2281.991 100.00% Conn: 1 Mbps: 2281.991 Peak Mbps: 2291.364 Avg Mbps: 2281.991 5002 282532456 2260.260 100.00% Conn: 1 Mbps: 2260.260 Peak Mbps: 2291.364 Avg Mbps: 2260.260 --- 169.254.1.11 tcpbench statistics --- 1698833536 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2194.950/2262.453/2291.364/35.300 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 536923912 4295.391 100.00% Conn: 1 Mbps: 4295.391 Peak Mbps: 4295.391 Avg Mbps: 4295.391 2000 605630544 4845.044 100.00% Conn: 1 Mbps: 4845.044 Peak Mbps: 4845.044 Avg Mbps: 4845.044 3000 608215552 4870.595 100.00% Conn: 1 Mbps: 4870.595 Peak Mbps: 4870.595 Avg Mbps: 4870.595 4000 608168224 4865.346 100.00% Conn: 1 Mbps: 4865.346 Peak Mbps: 4870.595 Avg Mbps: 4865.346 5001 607938960 4863.512 100.00% Conn: 1 Mbps: 4863.512 Peak Mbps: 4870.595 Avg Mbps: 4863.512 --- fc00:0:0:1::11 tcpbench statistics --- 3576526648 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4295.391/4747.978/4870.595/226.457 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.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 763954686 6111.637 100.00% Conn: 1 Mbps: 6111.637 Peak Mbps: 6111.637 Avg Mbps: 6111.637 2000 763526008 6114.322 100.00% Conn: 1 Mbps: 6114.322 Peak Mbps: 6114.322 Avg Mbps: 6114.322 3000 764343908 6114.751 100.00% Conn: 1 Mbps: 6114.751 Peak Mbps: 6114.751 Avg Mbps: 6114.751 4000 764769216 6118.154 100.00% Conn: 1 Mbps: 6118.154 Peak Mbps: 6118.154 Avg Mbps: 6118.154 5000 761890208 6095.122 100.00% Conn: 1 Mbps: 6095.122 Peak Mbps: 6118.154 Avg Mbps: 6095.122 --- 169.254.1.12 tcpbench statistics --- 4579687198 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6095.122/6110.797/6118.154/8.107 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 763359668 6106.877 100.00% Conn: 1 Mbps: 6106.877 Peak Mbps: 6106.877 Avg Mbps: 6106.877 2000 763353512 6112.941 100.00% Conn: 1 Mbps: 6112.941 Peak Mbps: 6112.941 Avg Mbps: 6112.941 3000 764399784 6115.198 100.00% Conn: 1 Mbps: 6115.198 Peak Mbps: 6115.198 Avg Mbps: 6115.198 4000 763582384 6108.659 100.00% Conn: 1 Mbps: 6108.659 Peak Mbps: 6115.198 Avg Mbps: 6108.659 5000 762797680 6102.381 100.00% Conn: 1 Mbps: 6102.381 Peak Mbps: 6115.198 Avg Mbps: 6102.381 --- fc00:0:0:1::12 tcpbench statistics --- 4579277132 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6102.381/6109.211/6115.198/4.520 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.047 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-tcpbench-3-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 782030390 6256.243 100.00% Conn: 1 Mbps: 6256.243 Peak Mbps: 6256.243 Avg Mbps: 6256.243 2000 782599436 6267.063 100.00% Conn: 1 Mbps: 6267.063 Peak Mbps: 6267.063 Avg Mbps: 6267.063 3000 784660544 6277.284 100.00% Conn: 1 Mbps: 6277.284 Peak Mbps: 6277.284 Avg Mbps: 6277.284 4000 782206844 6257.655 100.00% Conn: 1 Mbps: 6257.655 Peak Mbps: 6277.284 Avg Mbps: 6257.655 5000 782239560 6257.916 100.00% Conn: 1 Mbps: 6257.916 Peak Mbps: 6277.284 Avg Mbps: 6257.916 --- 169.254.0.13 tcpbench statistics --- 4697710282 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6256.243/6263.232/6277.284/8.004 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 779101244 6232.810 100.00% Conn: 1 Mbps: 6232.810 Peak Mbps: 6232.810 Avg Mbps: 6232.810 2000 778164800 6231.550 100.00% Conn: 1 Mbps: 6231.550 Peak Mbps: 6232.810 Avg Mbps: 6231.550 3000 778393672 6227.149 100.00% Conn: 1 Mbps: 6227.149 Peak Mbps: 6232.810 Avg Mbps: 6227.149 4000 780584304 6244.674 100.00% Conn: 1 Mbps: 6244.674 Peak Mbps: 6244.674 Avg Mbps: 6244.674 5000 780420824 6243.367 100.00% Conn: 1 Mbps: 6243.367 Peak Mbps: 6244.674 Avg Mbps: 6243.367 --- fc00::13 tcpbench statistics --- 4674437292 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6227.149/6235.910/6244.674/6.896 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.84s