START sys/net/pair 2025-03-21T02:31:57Z ==== 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.034 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.034/0.034/0.034/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.033 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.033/0.033/0.033/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 1045591192 8364.730 100.00% Conn: 1 Mbps: 8364.730 Peak Mbps: 8364.730 Avg Mbps: 8364.730 2000 1042388148 8347.453 100.00% Conn: 1 Mbps: 8347.453 Peak Mbps: 8364.730 Avg Mbps: 8347.453 3000 1037762412 8302.099 100.00% Conn: 1 Mbps: 8302.099 Peak Mbps: 8364.730 Avg Mbps: 8302.099 4000 1035862840 8286.903 100.00% Conn: 1 Mbps: 8286.903 Peak Mbps: 8364.730 Avg Mbps: 8286.903 5000 1038875132 8311.001 100.00% Conn: 1 Mbps: 8311.001 Peak Mbps: 8364.730 Avg Mbps: 8311.001 --- 169.254.1.11 tcpbench statistics --- 6235047040 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8286.903/8322.437/8364.730/29.057 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 1039178456 8313.428 100.00% Conn: 1 Mbps: 8313.428 Peak Mbps: 8313.428 Avg Mbps: 8313.428 2000 1034239312 8282.197 100.00% Conn: 1 Mbps: 8282.197 Peak Mbps: 8313.428 Avg Mbps: 8282.197 3000 1033716064 8269.729 100.00% Conn: 1 Mbps: 8269.729 Peak Mbps: 8313.428 Avg Mbps: 8269.729 4000 1029704496 8237.636 100.00% Conn: 1 Mbps: 8237.636 Peak Mbps: 8313.428 Avg Mbps: 8237.636 5000 1033176960 8265.416 100.00% Conn: 1 Mbps: 8265.416 Peak Mbps: 8313.428 Avg Mbps: 8265.416 --- fc00:0:0:1::11 tcpbench statistics --- 6198919056 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8237.636/8273.681/8313.428/24.639 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.050 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-ping6-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.100 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.100/0.100/0.100/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 573699632 4589.597 100.00% Conn: 1 Mbps: 4589.597 Peak Mbps: 4589.597 Avg Mbps: 4589.597 2001 590610432 4724.883 100.00% Conn: 1 Mbps: 4724.883 Peak Mbps: 4724.883 Avg Mbps: 4724.883 3001 594280448 4754.244 100.00% Conn: 1 Mbps: 4754.244 Peak Mbps: 4754.244 Avg Mbps: 4754.244 4001 594804736 4758.438 100.00% Conn: 1 Mbps: 4758.438 Peak Mbps: 4758.438 Avg Mbps: 4758.438 5001 594679744 4757.438 100.00% Conn: 1 Mbps: 4757.438 Peak Mbps: 4758.438 Avg Mbps: 4757.438 --- 169.254.1.12 tcpbench statistics --- 3540258288 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4589.597/4716.920/4758.438/64.858 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 550708804 4405.670 100.00% Conn: 1 Mbps: 4405.670 Peak Mbps: 4405.670 Avg Mbps: 4405.670 2001 567017472 4536.140 100.00% Conn: 1 Mbps: 4536.140 Peak Mbps: 4536.140 Avg Mbps: 4536.140 3001 567017472 4536.140 100.00% Conn: 1 Mbps: 4536.140 Peak Mbps: 4536.140 Avg Mbps: 4536.140 4001 564658176 4517.265 100.00% Conn: 1 Mbps: 4517.265 Peak Mbps: 4536.140 Avg Mbps: 4517.265 5001 566755328 4534.043 100.00% Conn: 1 Mbps: 4534.043 Peak Mbps: 4536.140 Avg Mbps: 4534.043 --- fc00:0:0:1::12 tcpbench statistics --- 3380291140 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4405.670/4505.852/4536.140/50.589 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.046 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.046/0.046/0.046/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.053 ms --- fc00::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-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 1134259080 9074.073 100.00% Conn: 1 Mbps: 9074.073 Peak Mbps: 9074.073 Avg Mbps: 9074.073 2000 1195037784 9569.872 100.00% Conn: 1 Mbps: 9569.872 Peak Mbps: 9569.872 Avg Mbps: 9569.872 3000 1194465460 9555.724 100.00% Conn: 1 Mbps: 9555.724 Peak Mbps: 9569.872 Avg Mbps: 9555.724 4000 1195760704 9566.086 100.00% Conn: 1 Mbps: 9566.086 Peak Mbps: 9569.872 Avg Mbps: 9566.086 5000 1194298272 9554.386 100.00% Conn: 1 Mbps: 9554.386 Peak Mbps: 9569.872 Avg Mbps: 9554.386 --- 169.254.0.13 tcpbench statistics --- 7109378424 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 9074.073/9464.028/9569.872/195.067 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 1023227320 8185.819 100.00% Conn: 1 Mbps: 8185.819 Peak Mbps: 8185.819 Avg Mbps: 8185.819 2000 1084972096 8688.465 100.00% Conn: 1 Mbps: 8688.465 Peak Mbps: 8688.465 Avg Mbps: 8688.465 3000 1088077840 8704.623 100.00% Conn: 1 Mbps: 8704.623 Peak Mbps: 8704.623 Avg Mbps: 8704.623 4000 1087578896 8700.631 100.00% Conn: 1 Mbps: 8700.631 Peak Mbps: 8704.623 Avg Mbps: 8700.631 5001 1098590888 8788.727 100.00% Conn: 1 Mbps: 8788.727 Peak Mbps: 8788.727 Avg Mbps: 8788.727 --- fc00::13 tcpbench statistics --- 6482579888 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 8185.819/8613.653/8788.727/216.855 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.035 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.035/0.035/0.035/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.039 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.039/0.039/0.039/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 575580688 4604.646 100.00% Conn: 1 Mbps: 4604.646 Peak Mbps: 4604.646 Avg Mbps: 4604.646 2000 587063224 4696.506 100.00% Conn: 1 Mbps: 4696.506 Peak Mbps: 4696.506 Avg Mbps: 4696.506 3000 589037568 4712.301 100.00% Conn: 1 Mbps: 4712.301 Peak Mbps: 4712.301 Avg Mbps: 4712.301 4001 587988992 4703.912 100.00% Conn: 1 Mbps: 4703.912 Peak Mbps: 4712.301 Avg Mbps: 4703.912 5001 583270400 4666.163 100.00% Conn: 1 Mbps: 4666.163 Peak Mbps: 4712.301 Avg Mbps: 4666.163 --- 169.254.1.11 tcpbench statistics --- 3506211272 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4604.646/4676.705/4712.301/39.251 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 547066692 4376.534 100.00% Conn: 1 Mbps: 4376.534 Peak Mbps: 4376.534 Avg Mbps: 4376.534 2000 560201728 4481.614 100.00% Conn: 1 Mbps: 4481.614 Peak Mbps: 4481.614 Avg Mbps: 4481.614 3000 560726016 4485.808 100.00% Conn: 1 Mbps: 4485.808 Peak Mbps: 4485.808 Avg Mbps: 4485.808 4001 560201728 4481.614 100.00% Conn: 1 Mbps: 4481.614 Peak Mbps: 4485.808 Avg Mbps: 4481.614 5001 560364820 4482.919 100.00% Conn: 1 Mbps: 4482.919 Peak Mbps: 4485.808 Avg Mbps: 4482.919 --- fc00:0:0:1::11 tcpbench statistics --- 3348500568 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4376.534/4461.698/4485.808/42.610 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.032 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.032/0.032/0.032/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.034 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.034/0.034/0.034/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 1034275992 8274.208 100.00% Conn: 1 Mbps: 8274.208 Peak Mbps: 8274.208 Avg Mbps: 8274.208 2000 1032551424 8268.680 100.00% Conn: 1 Mbps: 8268.680 Peak Mbps: 8274.208 Avg Mbps: 8268.680 3000 1035322896 8282.583 100.00% Conn: 1 Mbps: 8282.583 Peak Mbps: 8282.583 Avg Mbps: 8282.583 4000 1033714168 8269.713 100.00% Conn: 1 Mbps: 8269.713 Peak Mbps: 8282.583 Avg Mbps: 8269.713 5000 1041795456 8334.364 100.00% Conn: 1 Mbps: 8334.364 Peak Mbps: 8334.364 Avg Mbps: 8334.364 --- 169.254.1.12 tcpbench statistics --- 6211815744 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8268.680/8285.910/8334.364/24.718 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 1023353352 8186.827 100.00% Conn: 1 Mbps: 8186.827 Peak Mbps: 8186.827 Avg Mbps: 8186.827 2000 1023713208 8197.904 100.00% Conn: 1 Mbps: 8197.904 Peak Mbps: 8197.904 Avg Mbps: 8197.904 3000 1024481472 8195.852 100.00% Conn: 1 Mbps: 8195.852 Peak Mbps: 8197.904 Avg Mbps: 8195.852 4000 1022525112 8180.201 100.00% Conn: 1 Mbps: 8180.201 Peak Mbps: 8197.904 Avg Mbps: 8180.201 5000 1023297660 8186.381 100.00% Conn: 1 Mbps: 8186.381 Peak Mbps: 8197.904 Avg Mbps: 8186.381 --- fc00:0:0:1::12 tcpbench statistics --- 6142122168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8180.201/8189.433/8197.904/6.547 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.036 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.036/0.036/0.036/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.037 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.037/0.037/0.037/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 1339111630 10712.893 100.00% Conn: 1 Mbps: 10712.893 Peak Mbps: 10712.893 Avg Mbps: 10712.893 2000 1359055356 10883.326 100.00% Conn: 1 Mbps: 10883.326 Peak Mbps: 10883.326 Avg Mbps: 10883.326 3000 1366285592 10930.285 100.00% Conn: 1 Mbps: 10930.285 Peak Mbps: 10930.285 Avg Mbps: 10930.285 4000 1356634372 10853.075 100.00% Conn: 1 Mbps: 10853.075 Peak Mbps: 10930.285 Avg Mbps: 10853.075 5000 1355423880 10843.391 100.00% Conn: 1 Mbps: 10843.391 Peak Mbps: 10930.285 Avg Mbps: 10843.391 --- 169.254.0.13 tcpbench statistics --- 8151335298 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10712.893/10844.594/10930.285/72.473 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 1310066316 10480.531 100.00% Conn: 1 Mbps: 10480.531 Peak Mbps: 10480.531 Avg Mbps: 10480.531 2000 1316700616 10544.149 100.00% Conn: 1 Mbps: 10544.149 Peak Mbps: 10544.149 Avg Mbps: 10544.149 3000 1306597552 10452.780 100.00% Conn: 1 Mbps: 10452.780 Peak Mbps: 10544.149 Avg Mbps: 10452.780 4000 1305257016 10442.056 100.00% Conn: 1 Mbps: 10442.056 Peak Mbps: 10544.149 Avg Mbps: 10442.056 5000 1293486456 10347.892 100.00% Conn: 1 Mbps: 10347.892 Peak Mbps: 10544.149 Avg Mbps: 10347.892 --- fc00::13 tcpbench statistics --- 7846225588 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10347.892/10453.482/10544.149/63.612 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.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-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.039 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.039/0.039/0.039/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 575296680 4602.373 100.00% Conn: 1 Mbps: 4602.373 Peak Mbps: 4602.373 Avg Mbps: 4602.373 2000 583559776 4668.478 100.00% Conn: 1 Mbps: 4668.478 Peak Mbps: 4668.478 Avg Mbps: 4668.478 3001 585367552 4682.940 100.00% Conn: 1 Mbps: 4682.940 Peak Mbps: 4682.940 Avg Mbps: 4682.940 4001 585367552 4682.940 100.00% Conn: 1 Mbps: 4682.940 Peak Mbps: 4682.940 Avg Mbps: 4682.940 5001 585629696 4685.038 100.00% Conn: 1 Mbps: 4685.038 Peak Mbps: 4685.038 Avg Mbps: 4685.038 --- 169.254.1.11 tcpbench statistics --- 3499540232 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4602.373/4664.354/4685.038/31.551 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 1180524696 9444.198 100.00% Conn: 1 Mbps: 9444.198 Peak Mbps: 9444.198 Avg Mbps: 9444.198 2000 1221066752 9768.534 100.00% Conn: 1 Mbps: 9768.534 Peak Mbps: 9768.534 Avg Mbps: 9768.534 3000 1226309632 9810.477 100.00% Conn: 1 Mbps: 9810.477 Peak Mbps: 9810.477 Avg Mbps: 9810.477 4000 1224194304 9803.358 100.00% Conn: 1 Mbps: 9803.358 Peak Mbps: 9810.477 Avg Mbps: 9803.358 5000 1221328896 9770.631 100.00% Conn: 1 Mbps: 9770.631 Peak Mbps: 9810.477 Avg Mbps: 9770.631 --- fc00:0:0:1::11 tcpbench statistics --- 7292393880 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 9444.198/9719.440/9810.477/138.650 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.034 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.034/0.034/0.034/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.039 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.039/0.039/0.039/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 1383179974 11065.440 100.00% Conn: 1 Mbps: 11065.440 Peak Mbps: 11065.440 Avg Mbps: 11065.440 2000 1380157176 11052.310 100.00% Conn: 1 Mbps: 11052.310 Peak Mbps: 11065.440 Avg Mbps: 11052.310 3000 1362359672 10898.877 100.00% Conn: 1 Mbps: 10898.877 Peak Mbps: 11065.440 Avg Mbps: 10898.877 4000 1351268948 10810.152 100.00% Conn: 1 Mbps: 10810.152 Peak Mbps: 11065.440 Avg Mbps: 10810.152 5000 1382807172 11062.457 100.00% Conn: 1 Mbps: 11062.457 Peak Mbps: 11065.440 Avg Mbps: 11062.457 --- 169.254.1.12 tcpbench statistics --- 8250039362 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10810.152/10977.847/11065.440/104.627 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 1342369964 10738.960 100.00% Conn: 1 Mbps: 10738.960 Peak Mbps: 10738.960 Avg Mbps: 10738.960 2000 1354954936 10850.490 100.00% Conn: 1 Mbps: 10850.490 Peak Mbps: 10850.490 Avg Mbps: 10850.490 3000 1362867368 10902.939 100.00% Conn: 1 Mbps: 10902.939 Peak Mbps: 10902.939 Avg Mbps: 10902.939 4000 1360349776 10882.798 100.00% Conn: 1 Mbps: 10882.798 Peak Mbps: 10902.939 Avg Mbps: 10882.798 5000 1355870424 10846.963 100.00% Conn: 1 Mbps: 10846.963 Peak Mbps: 10902.939 Avg Mbps: 10846.963 --- fc00:0:0:1::12 tcpbench statistics --- 8141274292 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10738.960/10844.430/10902.939/56.679 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.031 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.031/0.031/0.031/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.036 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.036/0.036/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 1440275562 11522.204 100.00% Conn: 1 Mbps: 11522.204 Peak Mbps: 11522.204 Avg Mbps: 11522.204 2000 1462814150 11714.227 100.00% Conn: 1 Mbps: 11714.227 Peak Mbps: 11714.227 Avg Mbps: 11714.227 3000 1465545936 11724.367 100.00% Conn: 1 Mbps: 11724.367 Peak Mbps: 11724.367 Avg Mbps: 11724.367 4000 1453866324 11630.931 100.00% Conn: 1 Mbps: 11630.931 Peak Mbps: 11724.367 Avg Mbps: 11630.931 5000 1451412624 11611.301 100.00% Conn: 1 Mbps: 11611.301 Peak Mbps: 11724.367 Avg Mbps: 11611.301 --- 169.254.0.13 tcpbench statistics --- 8725883392 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 11522.204/11640.606/11724.367/74.037 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 1498026004 11984.208 100.00% Conn: 1 Mbps: 11984.208 Peak Mbps: 11984.208 Avg Mbps: 11984.208 2000 1497346016 11990.759 100.00% Conn: 1 Mbps: 11990.759 Peak Mbps: 11990.759 Avg Mbps: 11990.759 3000 1484104136 11872.833 100.00% Conn: 1 Mbps: 11872.833 Peak Mbps: 11990.759 Avg Mbps: 11872.833 4000 1484986928 11879.895 100.00% Conn: 1 Mbps: 11879.895 Peak Mbps: 11990.759 Avg Mbps: 11879.895 5000 1495482344 11963.859 100.00% Conn: 1 Mbps: 11963.859 Peak Mbps: 11990.759 Avg Mbps: 11963.859 --- fc00::13 tcpbench statistics --- 8975306940 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 11872.833/11938.311/11990.759/51.400 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 1m51.37s