START sys/net/pair 2025-03-17T16:39:19Z ==== 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.041 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.041/0.041/0.041/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.053 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.053/0.053/0.053/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 522906868 4183.255 100.00% Conn: 1 Mbps: 4183.255 Peak Mbps: 4183.255 Avg Mbps: 4183.255 2000 518376508 4151.163 100.00% Conn: 1 Mbps: 4151.163 Peak Mbps: 4183.255 Avg Mbps: 4151.163 3000 523709616 4189.677 100.00% Conn: 1 Mbps: 4189.677 Peak Mbps: 4189.677 Avg Mbps: 4189.677 4000 522835336 4182.683 100.00% Conn: 1 Mbps: 4182.683 Peak Mbps: 4189.677 Avg Mbps: 4182.683 5000 523010192 4184.082 100.00% Conn: 1 Mbps: 4184.082 Peak Mbps: 4189.677 Avg Mbps: 4184.082 --- 169.254.1.11 tcpbench statistics --- 3133991776 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4151.163/4178.172/4189.677/13.733 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 523192504 4185.540 100.00% Conn: 1 Mbps: 4185.540 Peak Mbps: 4185.540 Avg Mbps: 4185.540 2000 522471056 4183.952 100.00% Conn: 1 Mbps: 4183.952 Peak Mbps: 4185.540 Avg Mbps: 4183.952 3000 521709968 4173.680 100.00% Conn: 1 Mbps: 4173.680 Peak Mbps: 4185.540 Avg Mbps: 4173.680 4000 521852672 4174.821 100.00% Conn: 1 Mbps: 4174.821 Peak Mbps: 4185.540 Avg Mbps: 4174.821 5000 522740608 4181.925 100.00% Conn: 1 Mbps: 4181.925 Peak Mbps: 4185.540 Avg Mbps: 4181.925 --- fc00:0:0:1::11 tcpbench statistics --- 3134144528 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4173.680/4179.984/4185.540/4.833 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.142 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.142/0.142/0.142/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 272671760 2181.374 100.00% Conn: 1 Mbps: 2181.374 Peak Mbps: 2181.374 Avg Mbps: 2181.374 2001 289535280 2316.282 100.00% Conn: 1 Mbps: 2316.282 Peak Mbps: 2316.282 Avg Mbps: 2316.282 3002 287758968 2302.072 100.00% Conn: 1 Mbps: 2302.072 Peak Mbps: 2316.282 Avg Mbps: 2302.072 4003 291194792 2329.558 100.00% Conn: 1 Mbps: 2329.558 Peak Mbps: 2329.558 Avg Mbps: 2329.558 5003 290016168 2320.129 100.00% Conn: 1 Mbps: 2320.129 Peak Mbps: 2329.558 Avg Mbps: 2320.129 --- 169.254.1.12 tcpbench statistics --- 1718000520 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2181.374/2289.883/2329.558/54.970 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 250798476 2006.388 100.00% Conn: 1 Mbps: 2006.388 Peak Mbps: 2006.388 Avg Mbps: 2006.388 2002 268924616 2149.248 100.00% Conn: 1 Mbps: 2149.248 Peak Mbps: 2149.248 Avg Mbps: 2149.248 3002 270254960 2164.204 100.00% Conn: 1 Mbps: 2164.204 Peak Mbps: 2164.204 Avg Mbps: 2164.204 4003 273660544 2187.097 100.00% Conn: 1 Mbps: 2187.097 Peak Mbps: 2187.097 Avg Mbps: 2187.097 5002 269390612 2157.282 100.00% Conn: 1 Mbps: 2157.282 Peak Mbps: 2187.097 Avg Mbps: 2157.282 --- fc00:0:0:1::12 tcpbench statistics --- 1602990228 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2006.388/2132.844/2187.097/64.474 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.073 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.073/0.073/0.073/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.105 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.105/0.105/0.105/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 568867352 4550.939 100.00% Conn: 1 Mbps: 4550.939 Peak Mbps: 4550.939 Avg Mbps: 4550.939 2000 570068200 4565.111 100.00% Conn: 1 Mbps: 4565.111 Peak Mbps: 4565.111 Avg Mbps: 4565.111 3000 579480592 4635.845 100.00% Conn: 1 Mbps: 4635.845 Peak Mbps: 4635.845 Avg Mbps: 4635.845 4000 556112632 4448.901 100.00% Conn: 1 Mbps: 4448.901 Peak Mbps: 4635.845 Avg Mbps: 4448.901 5000 568750512 4554.559 100.00% Conn: 1 Mbps: 4554.559 Peak Mbps: 4635.845 Avg Mbps: 4554.559 --- 169.254.0.13 tcpbench statistics --- 3390029456 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4448.901/4551.071/4635.845/59.724 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 600422928 4803.383 100.00% Conn: 1 Mbps: 4803.383 Peak Mbps: 4803.383 Avg Mbps: 4803.383 2000 640955416 5127.643 100.00% Conn: 1 Mbps: 5127.643 Peak Mbps: 5127.643 Avg Mbps: 5127.643 3000 638735968 5115.003 100.00% Conn: 1 Mbps: 5115.003 Peak Mbps: 5127.643 Avg Mbps: 5115.003 4000 636078528 5088.628 100.00% Conn: 1 Mbps: 5088.628 Peak Mbps: 5127.643 Avg Mbps: 5088.628 5001 637167264 5097.338 100.00% Conn: 1 Mbps: 5097.338 Peak Mbps: 5127.643 Avg Mbps: 5097.338 --- fc00::13 tcpbench statistics --- 3790028160 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4803.383/5046.399/5127.643/122.263 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.054 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.054/0.054/0.054/0.000 ms ==== run-ping6-2-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.051 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/0.000 ms ==== run-tcpbench-2-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 272391672 2179.133 100.00% Conn: 1 Mbps: 2179.133 Peak Mbps: 2179.133 Avg Mbps: 2179.133 2001 286734504 2293.876 100.00% Conn: 1 Mbps: 2293.876 Peak Mbps: 2293.876 Avg Mbps: 2293.876 3002 287773720 2299.890 100.00% Conn: 1 Mbps: 2299.890 Peak Mbps: 2299.890 Avg Mbps: 2299.890 4003 288006568 2304.053 100.00% Conn: 1 Mbps: 2304.053 Peak Mbps: 2304.053 Avg Mbps: 2304.053 5004 287078848 2294.336 100.00% Conn: 1 Mbps: 2294.336 Peak Mbps: 2304.053 Avg Mbps: 2294.336 --- 169.254.1.11 tcpbench statistics --- 1709525184 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2179.133/2274.258/2304.053/47.710 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 252537184 2018.279 100.00% Conn: 1 Mbps: 2018.279 Peak Mbps: 2018.279 Avg Mbps: 2018.279 2000 265956172 2129.779 100.00% Conn: 1 Mbps: 2129.779 Peak Mbps: 2129.779 Avg Mbps: 2129.779 3002 267829580 2140.496 100.00% Conn: 1 Mbps: 2140.496 Peak Mbps: 2140.496 Avg Mbps: 2140.496 4003 269094548 2150.606 100.00% Conn: 1 Mbps: 2150.606 Peak Mbps: 2150.606 Avg Mbps: 2150.606 5002 269593868 2158.910 100.00% Conn: 1 Mbps: 2158.910 Peak Mbps: 2158.910 Avg Mbps: 2158.910 --- fc00:0:0:1::11 tcpbench statistics --- 1592848540 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2018.279/2119.614/2158.910/51.600 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.040 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.040/0.040/0.040/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 528352032 4226.816 100.00% Conn: 1 Mbps: 4226.816 Peak Mbps: 4226.816 Avg Mbps: 4226.816 2000 527992928 4228.172 100.00% Conn: 1 Mbps: 4228.172 Peak Mbps: 4228.172 Avg Mbps: 4228.172 3000 529252688 4238.260 100.00% Conn: 1 Mbps: 4238.260 Peak Mbps: 4238.260 Avg Mbps: 4238.260 4000 529022456 4232.180 100.00% Conn: 1 Mbps: 4232.180 Peak Mbps: 4238.260 Avg Mbps: 4232.180 5000 528318728 4226.550 100.00% Conn: 1 Mbps: 4226.550 Peak Mbps: 4238.260 Avg Mbps: 4226.550 --- 169.254.1.12 tcpbench statistics --- 3171308240 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4226.550/4230.395/4238.260/4.418 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 524134548 4193.076 100.00% Conn: 1 Mbps: 4193.076 Peak Mbps: 4193.076 Avg Mbps: 4193.076 2000 524565804 4200.727 100.00% Conn: 1 Mbps: 4200.727 Peak Mbps: 4200.727 Avg Mbps: 4200.727 3000 524355888 4194.847 100.00% Conn: 1 Mbps: 4194.847 Peak Mbps: 4200.727 Avg Mbps: 4194.847 4000 524040300 4192.322 100.00% Conn: 1 Mbps: 4192.322 Peak Mbps: 4200.727 Avg Mbps: 4192.322 5000 524994204 4204.158 100.00% Conn: 1 Mbps: 4204.158 Peak Mbps: 4204.158 Avg Mbps: 4204.158 --- fc00:0:0:1::12 tcpbench statistics --- 3146442348 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4192.322/4197.026/4204.158/4.627 Mbps ==== run-ping-2-3 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.056 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.056/0.056/0.056/0.000 ms ==== run-ping6-2-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.051 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/0.000 ms ==== run-tcpbench-2-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 791781792 6334.254 100.00% Conn: 1 Mbps: 6334.254 Peak Mbps: 6334.254 Avg Mbps: 6334.254 2000 798466696 6394.128 100.00% Conn: 1 Mbps: 6394.128 Peak Mbps: 6394.128 Avg Mbps: 6394.128 3000 798401264 6387.210 100.00% Conn: 1 Mbps: 6387.210 Peak Mbps: 6394.128 Avg Mbps: 6387.210 4000 798172252 6385.378 100.00% Conn: 1 Mbps: 6385.378 Peak Mbps: 6394.128 Avg Mbps: 6385.378 5000 798335832 6386.687 100.00% Conn: 1 Mbps: 6386.687 Peak Mbps: 6394.128 Avg Mbps: 6386.687 --- 169.254.0.13 tcpbench statistics --- 4782675768 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6334.254/6377.531/6394.128/21.851 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 772385924 6179.087 100.00% Conn: 1 Mbps: 6179.087 Peak Mbps: 6179.087 Avg Mbps: 6179.087 2000 774372064 6201.178 100.00% Conn: 1 Mbps: 6201.178 Peak Mbps: 6201.178 Avg Mbps: 6201.178 3000 775385640 6203.085 100.00% Conn: 1 Mbps: 6203.085 Peak Mbps: 6203.085 Avg Mbps: 6203.085 4000 769827320 6158.619 100.00% Conn: 1 Mbps: 6158.619 Peak Mbps: 6203.085 Avg Mbps: 6158.619 5000 768192520 6145.540 100.00% Conn: 1 Mbps: 6145.540 Peak Mbps: 6203.085 Avg Mbps: 6145.540 --- fc00::13 tcpbench statistics --- 4631429412 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6145.540/6177.502/6203.085/22.785 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.075 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.075/0.075/0.075/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 1002 273334712 2182.313 100.00% Conn: 1 Mbps: 2182.313 Peak Mbps: 2182.313 Avg Mbps: 2182.313 2002 283655440 2269.244 100.00% Conn: 1 Mbps: 2269.244 Peak Mbps: 2269.244 Avg Mbps: 2269.244 3002 284487712 2278.180 100.00% Conn: 1 Mbps: 2278.180 Peak Mbps: 2278.180 Avg Mbps: 2278.180 4003 284764112 2275.837 100.00% Conn: 1 Mbps: 2275.837 Peak Mbps: 2278.180 Avg Mbps: 2275.837 5004 284032248 2272.258 100.00% Conn: 1 Mbps: 2272.258 Peak Mbps: 2278.180 Avg Mbps: 2272.258 --- 169.254.1.11 tcpbench statistics --- 1692445632 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2182.313/2255.566/2278.180/36.753 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 534444464 4275.556 100.00% Conn: 1 Mbps: 4275.556 Peak Mbps: 4275.556 Avg Mbps: 4275.556 2001 606069272 4848.554 100.00% Conn: 1 Mbps: 4848.554 Peak Mbps: 4848.554 Avg Mbps: 4848.554 3001 606119856 4848.959 100.00% Conn: 1 Mbps: 4848.959 Peak Mbps: 4848.959 Avg Mbps: 4848.959 4001 601779568 4814.237 100.00% Conn: 1 Mbps: 4814.237 Peak Mbps: 4848.959 Avg Mbps: 4814.237 5001 600029024 4805.037 100.00% Conn: 1 Mbps: 4805.037 Peak Mbps: 4848.959 Avg Mbps: 4805.037 --- fc00:0:0:1::11 tcpbench statistics --- 3549757808 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4275.556/4718.469/4848.959/222.165 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 8 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.060 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.060/0.060/0.060/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.051 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.051/0.051/0.051/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 792339666 6338.717 100.00% Conn: 1 Mbps: 6338.717 Peak Mbps: 6338.717 Avg Mbps: 6338.717 2000 794605728 6363.209 100.00% Conn: 1 Mbps: 6363.209 Peak Mbps: 6363.209 Avg Mbps: 6363.209 3000 792119312 6336.954 100.00% Conn: 1 Mbps: 6336.954 Peak Mbps: 6363.209 Avg Mbps: 6336.954 4000 793787876 6350.303 100.00% Conn: 1 Mbps: 6350.303 Peak Mbps: 6363.209 Avg Mbps: 6350.303 5000 792871792 6342.974 100.00% Conn: 1 Mbps: 6342.974 Peak Mbps: 6363.209 Avg Mbps: 6342.974 --- 169.254.1.12 tcpbench statistics --- 4759446794 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6336.954/6346.432/6363.209/9.568 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 765447028 6123.576 100.00% Conn: 1 Mbps: 6123.576 Peak Mbps: 6123.576 Avg Mbps: 6123.576 2000 768879136 6157.190 100.00% Conn: 1 Mbps: 6157.190 Peak Mbps: 6157.190 Avg Mbps: 6157.190 3000 772410304 6179.282 100.00% Conn: 1 Mbps: 6179.282 Peak Mbps: 6179.282 Avg Mbps: 6179.282 4000 772246824 6177.975 100.00% Conn: 1 Mbps: 6177.975 Peak Mbps: 6179.282 Avg Mbps: 6177.975 5000 771102464 6168.820 100.00% Conn: 1 Mbps: 6168.820 Peak Mbps: 6179.282 Avg Mbps: 6168.820 --- fc00:0:0:1::12 tcpbench statistics --- 4620893956 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6123.576/6161.369/6179.282/20.484 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.053 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.053/0.053/0.053/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.069 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.069/0.069/0.069/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 802334986 6418.680 100.00% Conn: 1 Mbps: 6418.680 Peak Mbps: 6418.680 Avg Mbps: 6418.680 2000 803210516 6432.116 100.00% Conn: 1 Mbps: 6432.116 Peak Mbps: 6432.116 Avg Mbps: 6432.116 3000 801607432 6412.859 100.00% Conn: 1 Mbps: 6412.859 Peak Mbps: 6432.116 Avg Mbps: 6412.859 4000 802687060 6421.496 100.00% Conn: 1 Mbps: 6421.496 Peak Mbps: 6432.116 Avg Mbps: 6421.496 5000 801574716 6412.598 100.00% Conn: 1 Mbps: 6412.598 Peak Mbps: 6432.116 Avg Mbps: 6412.598 --- 169.254.0.13 tcpbench statistics --- 4814101770 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6412.598/6419.550/6432.116/7.149 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 791719092 6333.753 100.00% Conn: 1 Mbps: 6333.753 Peak Mbps: 6333.753 Avg Mbps: 6333.753 2000 791047024 6334.711 100.00% Conn: 1 Mbps: 6334.711 Peak Mbps: 6334.711 Avg Mbps: 6334.711 3000 790393104 6323.145 100.00% Conn: 1 Mbps: 6323.145 Peak Mbps: 6334.711 Avg Mbps: 6323.145 4000 790883544 6327.068 100.00% Conn: 1 Mbps: 6327.068 Peak Mbps: 6334.711 Avg Mbps: 6327.068 5000 791799032 6334.392 100.00% Conn: 1 Mbps: 6334.392 Peak Mbps: 6334.711 Avg Mbps: 6334.392 --- fc00::13 tcpbench statistics --- 4747542740 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6323.145/6330.614/6334.711/4.675 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.83s