START sys/net/pair 2025-03-13T04:56:50Z ==== 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.049 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.049/0.049/0.049/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.056 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.056/0.056/0.056/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 515705980 4125.648 100.00% Conn: 1 Mbps: 4125.648 Peak Mbps: 4125.648 Avg Mbps: 4125.648 2000 514815804 4122.649 100.00% Conn: 1 Mbps: 4122.649 Peak Mbps: 4125.648 Avg Mbps: 4122.649 3000 515443696 4123.550 100.00% Conn: 1 Mbps: 4123.550 Peak Mbps: 4125.648 Avg Mbps: 4123.550 4000 515666240 4125.330 100.00% Conn: 1 Mbps: 4125.330 Peak Mbps: 4125.648 Avg Mbps: 4125.330 5000 515721876 4125.775 100.00% Conn: 1 Mbps: 4125.775 Peak Mbps: 4125.775 Avg Mbps: 4125.775 --- 169.254.1.11 tcpbench statistics --- 3092598592 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4122.649/4124.590/4125.775/1.259 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 502682768 4021.462 100.00% Conn: 1 Mbps: 4021.462 Peak Mbps: 4021.462 Avg Mbps: 4021.462 2000 502421144 4023.393 100.00% Conn: 1 Mbps: 4023.393 Peak Mbps: 4023.393 Avg Mbps: 4023.393 3000 503190160 4025.521 100.00% Conn: 1 Mbps: 4025.521 Peak Mbps: 4025.521 Avg Mbps: 4025.521 4000 502381504 4019.052 100.00% Conn: 1 Mbps: 4019.052 Peak Mbps: 4025.521 Avg Mbps: 4019.052 5000 502746192 4021.970 100.00% Conn: 1 Mbps: 4021.970 Peak Mbps: 4025.521 Avg Mbps: 4021.970 --- fc00:0:0:1::11 tcpbench statistics --- 3015731920 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4019.052/4022.280/4025.521/2.141 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.120 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.120/0.120/0.120/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1001 271672864 2171.212 100.00% Conn: 1 Mbps: 2171.212 Peak Mbps: 2171.212 Avg Mbps: 2171.212 2001 287333088 2298.665 100.00% Conn: 1 Mbps: 2298.665 Peak Mbps: 2298.665 Avg Mbps: 2298.665 3001 288475344 2310.113 100.00% Conn: 1 Mbps: 2310.113 Peak Mbps: 2310.113 Avg Mbps: 2310.113 4001 288957632 2311.661 100.00% Conn: 1 Mbps: 2311.661 Peak Mbps: 2311.661 Avg Mbps: 2311.661 5001 290463936 2326.038 100.00% Conn: 1 Mbps: 2326.038 Peak Mbps: 2326.038 Avg Mbps: 2326.038 --- 169.254.1.12 tcpbench statistics --- 1713742168 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2171.212/2283.538/2326.038/56.832 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 256184296 2049.474 100.00% Conn: 1 Mbps: 2049.474 Peak Mbps: 2049.474 Avg Mbps: 2049.474 2001 269961472 2159.692 100.00% Conn: 1 Mbps: 2159.692 Peak Mbps: 2159.692 Avg Mbps: 2159.692 3002 274590808 2196.726 100.00% Conn: 1 Mbps: 2196.726 Peak Mbps: 2196.726 Avg Mbps: 2196.726 4002 276501076 2212.009 100.00% Conn: 1 Mbps: 2212.009 Peak Mbps: 2212.009 Avg Mbps: 2212.009 5003 275818844 2206.551 100.00% Conn: 1 Mbps: 2206.551 Peak Mbps: 2212.009 Avg Mbps: 2206.551 --- fc00:0:0:1::12 tcpbench statistics --- 1630414188 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2049.474/2164.890/2212.009/60.526 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.072 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.072/0.072/0.072/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.098 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.098/0.098/0.098/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 569084188 4552.674 100.00% Conn: 1 Mbps: 4552.674 Peak Mbps: 4552.674 Avg Mbps: 4552.674 2000 542569660 4344.902 100.00% Conn: 1 Mbps: 4344.902 Peak Mbps: 4552.674 Avg Mbps: 4344.902 3000 548490360 4387.923 100.00% Conn: 1 Mbps: 4387.923 Peak Mbps: 4552.674 Avg Mbps: 4387.923 4000 562477860 4499.823 100.00% Conn: 1 Mbps: 4499.823 Peak Mbps: 4552.674 Avg Mbps: 4499.823 5000 575729136 4605.833 100.00% Conn: 1 Mbps: 4605.833 Peak Mbps: 4605.833 Avg Mbps: 4605.833 --- 169.254.0.13 tcpbench statistics --- 3356517188 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4344.902/4478.231/4605.833/98.206 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 597306704 4778.454 100.00% Conn: 1 Mbps: 4778.454 Peak Mbps: 4778.454 Avg Mbps: 4778.454 2001 636692240 5093.538 100.00% Conn: 1 Mbps: 5093.538 Peak Mbps: 5093.538 Avg Mbps: 5093.538 3001 643576072 5153.762 100.00% Conn: 1 Mbps: 5153.762 Peak Mbps: 5153.762 Avg Mbps: 5153.762 4001 641226136 5129.809 100.00% Conn: 1 Mbps: 5129.809 Peak Mbps: 5153.762 Avg Mbps: 5129.809 5001 642616528 5140.932 100.00% Conn: 1 Mbps: 5140.932 Peak Mbps: 5153.762 Avg Mbps: 5140.932 --- fc00::13 tcpbench statistics --- 3801805920 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4778.454/5059.299/5153.762/141.849 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.058 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.058/0.058/0.058/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.054 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.054/0.054/0.054/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 272378528 2179.028 100.00% Conn: 1 Mbps: 2179.028 Peak Mbps: 2179.028 Avg Mbps: 2179.028 2000 283187520 2267.768 100.00% Conn: 1 Mbps: 2267.768 Peak Mbps: 2267.768 Avg Mbps: 2267.768 3000 284649168 2277.193 100.00% Conn: 1 Mbps: 2277.193 Peak Mbps: 2277.193 Avg Mbps: 2277.193 4002 284404952 2272.967 100.00% Conn: 1 Mbps: 2272.967 Peak Mbps: 2277.193 Avg Mbps: 2272.967 5002 285863088 2286.905 100.00% Conn: 1 Mbps: 2286.905 Peak Mbps: 2286.905 Avg Mbps: 2286.905 --- 169.254.1.11 tcpbench statistics --- 1696837376 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2179.028/2256.772/2286.905/39.376 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 255275480 2042.204 100.00% Conn: 1 Mbps: 2042.204 Peak Mbps: 2042.204 Avg Mbps: 2042.204 2001 267657316 2141.259 100.00% Conn: 1 Mbps: 2141.259 Peak Mbps: 2141.259 Avg Mbps: 2141.259 3001 271604280 2172.834 100.00% Conn: 1 Mbps: 2172.834 Peak Mbps: 2172.834 Avg Mbps: 2172.834 4002 273374236 2186.994 100.00% Conn: 1 Mbps: 2186.994 Peak Mbps: 2186.994 Avg Mbps: 2186.994 5002 270641892 2167.302 100.00% Conn: 1 Mbps: 2167.302 Peak Mbps: 2186.994 Avg Mbps: 2167.302 --- fc00:0:0:1::11 tcpbench statistics --- 1610803732 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2042.204/2142.119/2186.994/52.106 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.044 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.044/0.044/0.044/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.048 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.048/0.048/0.048/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 518333320 4146.667 100.00% Conn: 1 Mbps: 4146.667 Peak Mbps: 4146.667 Avg Mbps: 4146.667 2000 517228496 4141.970 100.00% Conn: 1 Mbps: 4141.970 Peak Mbps: 4146.667 Avg Mbps: 4141.970 3000 517686064 4141.489 100.00% Conn: 1 Mbps: 4141.489 Peak Mbps: 4146.667 Avg Mbps: 4141.489 4000 517144512 4137.156 100.00% Conn: 1 Mbps: 4137.156 Peak Mbps: 4146.667 Avg Mbps: 4137.156 5000 517111208 4136.890 100.00% Conn: 1 Mbps: 4136.890 Peak Mbps: 4146.667 Avg Mbps: 4136.890 --- 169.254.1.12 tcpbench statistics --- 3106010680 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4136.890/4140.834/4146.667/3.601 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 512176476 4097.412 100.00% Conn: 1 Mbps: 4097.412 Peak Mbps: 4097.412 Avg Mbps: 4097.412 2000 514274208 4118.312 100.00% Conn: 1 Mbps: 4118.312 Peak Mbps: 4118.312 Avg Mbps: 4118.312 3000 513133236 4105.066 100.00% Conn: 1 Mbps: 4105.066 Peak Mbps: 4118.312 Avg Mbps: 4105.066 4000 514357032 4114.856 100.00% Conn: 1 Mbps: 4114.856 Peak Mbps: 4118.312 Avg Mbps: 4114.856 5000 513932916 4111.463 100.00% Conn: 1 Mbps: 4111.463 Peak Mbps: 4118.312 Avg Mbps: 4111.463 --- fc00:0:0:1::12 tcpbench statistics --- 3081678264 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4097.412/4109.422/4118.312/7.429 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.047 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.047/0.047/0.047/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.054 ms --- fc00::13 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-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 778248586 6225.989 100.00% Conn: 1 Mbps: 6225.989 Peak Mbps: 6225.989 Avg Mbps: 6225.989 2000 777463024 6225.930 100.00% Conn: 1 Mbps: 6225.930 Peak Mbps: 6225.989 Avg Mbps: 6225.930 3000 777332160 6218.657 100.00% Conn: 1 Mbps: 6218.657 Peak Mbps: 6225.989 Avg Mbps: 6218.657 4000 777659320 6221.275 100.00% Conn: 1 Mbps: 6221.275 Peak Mbps: 6225.989 Avg Mbps: 6221.275 5000 777528456 6220.228 100.00% Conn: 1 Mbps: 6220.228 Peak Mbps: 6225.989 Avg Mbps: 6220.228 --- 169.254.0.13 tcpbench statistics --- 4664255066 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6218.657/6222.416/6225.989/3.011 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 762946900 6103.575 100.00% Conn: 1 Mbps: 6103.575 Peak Mbps: 6103.575 Avg Mbps: 6103.575 2000 762634200 6107.181 100.00% Conn: 1 Mbps: 6107.181 Peak Mbps: 6107.181 Avg Mbps: 6107.181 3000 762863072 6102.905 100.00% Conn: 1 Mbps: 6102.905 Peak Mbps: 6107.181 Avg Mbps: 6102.905 4000 762993856 6103.951 100.00% Conn: 1 Mbps: 6103.951 Peak Mbps: 6107.181 Avg Mbps: 6103.951 5000 763157336 6105.259 100.00% Conn: 1 Mbps: 6105.259 Peak Mbps: 6107.181 Avg Mbps: 6105.259 --- fc00::13 tcpbench statistics --- 4578297368 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6102.905/6104.574/6107.181/1.512 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.055 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.055/0.055/0.055/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.070 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.070/0.070/0.070/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 272600464 2178.625 100.00% Conn: 1 Mbps: 2178.625 Peak Mbps: 2178.625 Avg Mbps: 2178.625 2001 284905840 2281.528 100.00% Conn: 1 Mbps: 2281.528 Peak Mbps: 2281.528 Avg Mbps: 2281.528 3002 284896208 2276.893 100.00% Conn: 1 Mbps: 2276.893 Peak Mbps: 2281.528 Avg Mbps: 2276.893 4004 285612024 2282.614 100.00% Conn: 1 Mbps: 2282.614 Peak Mbps: 2282.614 Avg Mbps: 2282.614 5004 285861592 2286.893 100.00% Conn: 1 Mbps: 2286.893 Peak Mbps: 2286.893 Avg Mbps: 2286.893 --- 169.254.1.11 tcpbench statistics --- 1696509048 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2178.625/2261.310/2286.893/41.465 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 539312416 4314.499 100.00% Conn: 1 Mbps: 4314.499 Peak Mbps: 4314.499 Avg Mbps: 4314.499 2000 605145928 4841.167 100.00% Conn: 1 Mbps: 4841.167 Peak Mbps: 4841.167 Avg Mbps: 4841.167 3000 600225640 4801.805 100.00% Conn: 1 Mbps: 4801.805 Peak Mbps: 4841.167 Avg Mbps: 4801.805 4001 604726352 4837.811 100.00% Conn: 1 Mbps: 4837.811 Peak Mbps: 4841.167 Avg Mbps: 4837.811 5001 603185680 4825.485 100.00% Conn: 1 Mbps: 4825.485 Peak Mbps: 4841.167 Avg Mbps: 4825.485 --- fc00:0:0:1::11 tcpbench statistics --- 3550586696 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4314.499/4724.154/4841.167/205.292 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.061 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.061/0.061/0.061/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.068 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.068/0.068/0.068/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 779247510 6233.980 100.00% Conn: 1 Mbps: 6233.980 Peak Mbps: 6233.980 Avg Mbps: 6233.980 2000 778411788 6233.528 100.00% Conn: 1 Mbps: 6233.528 Peak Mbps: 6233.980 Avg Mbps: 6233.528 3000 778411788 6227.294 100.00% Conn: 1 Mbps: 6227.294 Peak Mbps: 6233.980 Avg Mbps: 6227.294 4000 778019196 6224.154 100.00% Conn: 1 Mbps: 6224.154 Peak Mbps: 6233.980 Avg Mbps: 6224.154 5000 775958088 6207.665 100.00% Conn: 1 Mbps: 6207.665 Peak Mbps: 6233.980 Avg Mbps: 6207.665 --- 169.254.1.12 tcpbench statistics --- 4666791642 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6207.665/6225.324/6233.980/9.585 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 754396572 6035.173 100.00% Conn: 1 Mbps: 6035.173 Peak Mbps: 6035.173 Avg Mbps: 6035.173 2000 748967272 5997.736 100.00% Conn: 1 Mbps: 5997.736 Peak Mbps: 6035.173 Avg Mbps: 5997.736 3000 753642800 6029.142 100.00% Conn: 1 Mbps: 6029.142 Peak Mbps: 6035.173 Avg Mbps: 6029.142 4000 755114120 6040.913 100.00% Conn: 1 Mbps: 6040.913 Peak Mbps: 6040.913 Avg Mbps: 6040.913 5000 755604560 6044.836 100.00% Conn: 1 Mbps: 6044.836 Peak Mbps: 6044.836 Avg Mbps: 6044.836 --- fc00:0:0:1::12 tcpbench statistics --- 4522839444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5997.736/6029.560/6044.836/16.773 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.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 782589378 6260.715 100.00% Conn: 1 Mbps: 6260.715 Peak Mbps: 6260.715 Avg Mbps: 6260.715 2000 783842644 6277.018 100.00% Conn: 1 Mbps: 6277.018 Peak Mbps: 6277.018 Avg Mbps: 6277.018 3000 783155608 6265.245 100.00% Conn: 1 Mbps: 6265.245 Peak Mbps: 6277.018 Avg Mbps: 6265.245 4000 784104372 6272.835 100.00% Conn: 1 Mbps: 6272.835 Peak Mbps: 6277.018 Avg Mbps: 6272.835 5000 784398816 6275.191 100.00% Conn: 1 Mbps: 6275.191 Peak Mbps: 6277.018 Avg Mbps: 6275.191 --- 169.254.0.13 tcpbench statistics --- 4701769882 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6260.715/6270.201/6277.018/6.211 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 765732396 6125.859 100.00% Conn: 1 Mbps: 6125.859 Peak Mbps: 6125.859 Avg Mbps: 6125.859 2000 765478752 6129.960 100.00% Conn: 1 Mbps: 6129.960 Peak Mbps: 6129.960 Avg Mbps: 6129.960 3000 766394240 6131.154 100.00% Conn: 1 Mbps: 6131.154 Peak Mbps: 6131.154 Avg Mbps: 6131.154 4000 766394240 6131.154 100.00% Conn: 1 Mbps: 6131.154 Peak Mbps: 6131.154 Avg Mbps: 6131.154 5000 766557720 6132.462 100.00% Conn: 1 Mbps: 6132.462 Peak Mbps: 6132.462 Avg Mbps: 6132.462 --- fc00::13 tcpbench statistics --- 4597278548 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6125.859/6130.118/6132.462/2.272 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.87s