START sys/net/pair 2025-03-31T01:37:58Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.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.046 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 922985344 7383.883 100.00% Conn: 1 Mbps: 7383.883 Peak Mbps: 7383.883 Avg Mbps: 7383.883 2000 924956448 7407.059 100.00% Conn: 1 Mbps: 7407.059 Peak Mbps: 7407.059 Avg Mbps: 7407.059 3000 924582892 7396.663 100.00% Conn: 1 Mbps: 7396.663 Peak Mbps: 7407.059 Avg Mbps: 7396.663 4000 927221628 7417.773 100.00% Conn: 1 Mbps: 7417.773 Peak Mbps: 7417.773 Avg Mbps: 7417.773 5000 925862520 7406.900 100.00% Conn: 1 Mbps: 7406.900 Peak Mbps: 7417.773 Avg Mbps: 7406.900 --- 169.254.1.11 tcpbench statistics --- 5550287100 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7383.883/7402.456/7417.773/11.437 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 934520928 7476.167 100.00% Conn: 1 Mbps: 7476.167 Peak Mbps: 7476.167 Avg Mbps: 7476.167 2000 936954824 7503.142 100.00% Conn: 1 Mbps: 7503.142 Peak Mbps: 7503.142 Avg Mbps: 7503.142 3000 935147240 7481.178 100.00% Conn: 1 Mbps: 7481.178 Peak Mbps: 7503.142 Avg Mbps: 7481.178 4000 936931040 7495.448 100.00% Conn: 1 Mbps: 7495.448 Peak Mbps: 7503.142 Avg Mbps: 7495.448 5000 935725984 7485.808 100.00% Conn: 1 Mbps: 7485.808 Peak Mbps: 7503.142 Avg Mbps: 7485.808 --- fc00:0:0:1::11 tcpbench statistics --- 5619691448 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7476.167/7488.349/7503.142/9.752 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.069 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.069/0.069/0.069/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.130 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.130/0.130/0.130/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 366348152 2927.857 100.00% Conn: 1 Mbps: 2927.857 Peak Mbps: 2927.857 Avg Mbps: 2927.857 2001 377749504 3021.996 100.00% Conn: 1 Mbps: 3021.996 Peak Mbps: 3021.996 Avg Mbps: 3021.996 3001 378873568 3030.989 100.00% Conn: 1 Mbps: 3030.989 Peak Mbps: 3030.989 Avg Mbps: 3030.989 4002 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3055.550 Avg Mbps: 3055.550 5002 378273792 3026.190 100.00% Conn: 1 Mbps: 3026.190 Peak Mbps: 3055.550 Avg Mbps: 3026.190 --- 169.254.1.12 tcpbench statistics --- 2263452216 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2927.857/3012.517/3055.550/43.902 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1001 342200768 2734.871 100.00% Conn: 1 Mbps: 2734.871 Peak Mbps: 2734.871 Avg Mbps: 2734.871 2001 356314568 2850.517 100.00% Conn: 1 Mbps: 2850.517 Peak Mbps: 2850.517 Avg Mbps: 2850.517 3002 358088704 2864.710 100.00% Conn: 1 Mbps: 2864.710 Peak Mbps: 2864.710 Avg Mbps: 2864.710 4001 358088704 2867.577 100.00% Conn: 1 Mbps: 2867.577 Peak Mbps: 2867.577 Avg Mbps: 2867.577 5002 361160680 2886.399 100.00% Conn: 1 Mbps: 2886.399 Peak Mbps: 2886.399 Avg Mbps: 2886.399 --- fc00:0:0:1::12 tcpbench statistics --- 2132107120 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2734.871/2840.815/2886.399/54.191 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.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-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.067 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.067/0.067/0.067/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 745236272 5961.890 100.00% Conn: 1 Mbps: 5961.890 Peak Mbps: 5961.890 Avg Mbps: 5961.890 2000 785158796 6287.558 100.00% Conn: 1 Mbps: 6287.558 Peak Mbps: 6287.558 Avg Mbps: 6287.558 3000 799378048 6395.024 100.00% Conn: 1 Mbps: 6395.024 Peak Mbps: 6395.024 Avg Mbps: 6395.024 4001 803344264 6426.754 100.00% Conn: 1 Mbps: 6426.754 Peak Mbps: 6426.754 Avg Mbps: 6426.754 5001 807572296 6460.578 100.00% Conn: 1 Mbps: 6460.578 Peak Mbps: 6460.578 Avg Mbps: 6460.578 --- 169.254.0.13 tcpbench statistics --- 4755765164 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5961.890/6306.361/6460.578/181.743 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 693369104 5546.953 100.00% Conn: 1 Mbps: 5546.953 Peak Mbps: 5546.953 Avg Mbps: 5546.953 2000 729874944 5839.000 100.00% Conn: 1 Mbps: 5839.000 Peak Mbps: 5839.000 Avg Mbps: 5839.000 3001 733942528 5871.540 100.00% Conn: 1 Mbps: 5871.540 Peak Mbps: 5871.540 Avg Mbps: 5871.540 4000 734449920 5881.481 100.00% Conn: 1 Mbps: 5881.481 Peak Mbps: 5881.481 Avg Mbps: 5881.481 5000 745461912 5963.695 100.00% Conn: 1 Mbps: 5963.695 Peak Mbps: 5963.695 Avg Mbps: 5963.695 --- fc00::13 tcpbench statistics --- 4378478368 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5546.953/5820.534/5963.695/142.828 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.043 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.043/0.043/0.043/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 1001 373075256 2981.620 100.00% Conn: 1 Mbps: 2981.620 Peak Mbps: 2981.620 Avg Mbps: 2981.620 2001 383268776 3066.150 100.00% Conn: 1 Mbps: 3066.150 Peak Mbps: 3066.150 Avg Mbps: 3066.150 3002 381705880 3053.647 100.00% Conn: 1 Mbps: 3053.647 Peak Mbps: 3066.150 Avg Mbps: 3053.647 4002 379881760 3039.054 100.00% Conn: 1 Mbps: 3039.054 Peak Mbps: 3066.150 Avg Mbps: 3039.054 5003 388235264 3105.882 100.00% Conn: 1 Mbps: 3105.882 Peak Mbps: 3105.882 Avg Mbps: 3105.882 --- 169.254.1.11 tcpbench statistics --- 2287752568 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2981.620/3049.271/3105.882/40.472 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 351395048 2808.352 100.00% Conn: 1 Mbps: 2808.352 Peak Mbps: 2808.352 Avg Mbps: 2808.352 2001 362283008 2898.264 100.00% Conn: 1 Mbps: 2898.264 Peak Mbps: 2898.264 Avg Mbps: 2898.264 3001 358088704 2864.710 100.00% Conn: 1 Mbps: 2864.710 Peak Mbps: 2898.264 Avg Mbps: 2864.710 4001 356515840 2854.982 100.00% Conn: 1 Mbps: 2854.982 Peak Mbps: 2898.264 Avg Mbps: 2854.982 5002 359399424 2875.195 100.00% Conn: 1 Mbps: 2875.195 Peak Mbps: 2898.264 Avg Mbps: 2875.195 --- fc00:0:0:1::11 tcpbench statistics --- 2148654312 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2808.352/2860.301/2898.264/29.697 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.037 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.037/0.037/0.037/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.045 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.045/0.045/0.045/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 912229864 7297.839 100.00% Conn: 1 Mbps: 7297.839 Peak Mbps: 7297.839 Avg Mbps: 7297.839 2000 910790552 7293.618 100.00% Conn: 1 Mbps: 7293.618 Peak Mbps: 7297.839 Avg Mbps: 7293.618 3000 912193664 7297.549 100.00% Conn: 1 Mbps: 7297.549 Peak Mbps: 7297.839 Avg Mbps: 7297.549 4000 909606088 7276.849 100.00% Conn: 1 Mbps: 7276.849 Peak Mbps: 7297.839 Avg Mbps: 7276.849 5000 912720736 7301.766 100.00% Conn: 1 Mbps: 7301.766 Peak Mbps: 7301.766 Avg Mbps: 7301.766 --- 169.254.1.12 tcpbench statistics --- 5469851856 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7276.849/7293.524/7301.766/8.727 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 900948048 7207.584 100.00% Conn: 1 Mbps: 7207.584 Peak Mbps: 7207.584 Avg Mbps: 7207.584 2000 898938852 7198.710 100.00% Conn: 1 Mbps: 7198.710 Peak Mbps: 7207.584 Avg Mbps: 7198.710 3000 896458416 7171.667 100.00% Conn: 1 Mbps: 7171.667 Peak Mbps: 7207.584 Avg Mbps: 7171.667 4000 903521304 7228.170 100.00% Conn: 1 Mbps: 7228.170 Peak Mbps: 7228.170 Avg Mbps: 7228.170 5000 901203660 7209.629 100.00% Conn: 1 Mbps: 7209.629 Peak Mbps: 7228.170 Avg Mbps: 7209.629 --- fc00:0:0:1::12 tcpbench statistics --- 5398896720 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7171.667/7203.152/7228.170/18.431 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.041 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.041/0.041/0.041/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.049 ms --- fc00::13 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-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 1257579938 10060.640 100.00% Conn: 1 Mbps: 10060.640 Peak Mbps: 10060.640 Avg Mbps: 10060.640 2000 1260171246 10091.461 100.00% Conn: 1 Mbps: 10091.461 Peak Mbps: 10091.461 Avg Mbps: 10091.461 3000 1258977112 10071.817 100.00% Conn: 1 Mbps: 10071.817 Peak Mbps: 10091.461 Avg Mbps: 10071.817 4000 1258486372 10067.891 100.00% Conn: 1 Mbps: 10067.891 Peak Mbps: 10091.461 Avg Mbps: 10067.891 5000 1258928038 10071.424 100.00% Conn: 1 Mbps: 10071.424 Peak Mbps: 10091.461 Avg Mbps: 10071.424 --- 169.254.0.13 tcpbench statistics --- 7553119818 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10060.640/10072.647/10091.461/10.227 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 1251614796 10012.918 100.00% Conn: 1 Mbps: 10012.918 Peak Mbps: 10012.918 Avg Mbps: 10012.918 2000 1257880512 10073.117 100.00% Conn: 1 Mbps: 10073.117 Peak Mbps: 10073.117 Avg Mbps: 10073.117 3000 1258142080 10065.137 100.00% Conn: 1 Mbps: 10065.137 Peak Mbps: 10073.117 Avg Mbps: 10065.137 4000 1255787968 10046.304 100.00% Conn: 1 Mbps: 10046.304 Peak Mbps: 10073.117 Avg Mbps: 10046.304 5000 1258469040 10067.752 100.00% Conn: 1 Mbps: 10067.752 Peak Mbps: 10073.117 Avg Mbps: 10067.752 --- fc00::13 tcpbench statistics --- 7541344316 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10012.918/10053.046/10073.117/22.005 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.047 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-ping6-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.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-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 375388432 3000.107 100.00% Conn: 1 Mbps: 3000.107 Peak Mbps: 3000.107 Avg Mbps: 3000.107 2001 380936200 3047.490 100.00% Conn: 1 Mbps: 3047.490 Peak Mbps: 3047.490 Avg Mbps: 3047.490 3002 384565248 3076.522 100.00% Conn: 1 Mbps: 3076.522 Peak Mbps: 3076.522 Avg Mbps: 3076.522 4002 379060224 3032.482 100.00% Conn: 1 Mbps: 3032.482 Peak Mbps: 3076.522 Avg Mbps: 3032.482 5003 385613824 3084.911 100.00% Conn: 1 Mbps: 3084.911 Peak Mbps: 3084.911 Avg Mbps: 3084.911 --- 169.254.1.11 tcpbench statistics --- 2288032024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3000.107/3048.302/3084.911/30.693 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 843373064 6746.985 100.00% Conn: 1 Mbps: 6746.985 Peak Mbps: 6746.985 Avg Mbps: 6746.985 2000 889367296 7114.938 100.00% Conn: 1 Mbps: 7114.938 Peak Mbps: 7114.938 Avg Mbps: 7114.938 3000 883903848 7071.231 100.00% Conn: 1 Mbps: 7071.231 Peak Mbps: 7114.938 Avg Mbps: 7071.231 4001 885709960 7085.680 100.00% Conn: 1 Mbps: 7085.680 Peak Mbps: 7114.938 Avg Mbps: 7085.680 5001 889454616 7115.637 100.00% Conn: 1 Mbps: 7115.637 Peak Mbps: 7115.637 Avg Mbps: 7115.637 --- fc00:0:0:1::11 tcpbench statistics --- 5280016360 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6746.985/7026.894/7115.637/140.995 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.042 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.042/0.042/0.042/0.000 ms ==== run-ping6-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.049 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.049/0.049/0.049/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 1244006046 9952.048 100.00% Conn: 1 Mbps: 9952.048 Peak Mbps: 9952.048 Avg Mbps: 9952.048 2000 1246381452 9981.033 100.00% Conn: 1 Mbps: 9981.033 Peak Mbps: 9981.033 Avg Mbps: 9981.033 3000 1247526512 9980.212 100.00% Conn: 1 Mbps: 9980.212 Peak Mbps: 9981.033 Avg Mbps: 9980.212 4000 1245923428 9967.387 100.00% Conn: 1 Mbps: 9967.387 Peak Mbps: 9981.033 Avg Mbps: 9967.387 5000 1246774044 9974.192 100.00% Conn: 1 Mbps: 9974.192 Peak Mbps: 9981.033 Avg Mbps: 9974.192 --- 169.254.1.12 tcpbench statistics --- 7479103116 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9952.048/9970.975/9981.033/10.658 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 1255395612 10043.165 100.00% Conn: 1 Mbps: 10043.165 Peak Mbps: 10043.165 Avg Mbps: 10043.165 2000 1260528888 10094.325 100.00% Conn: 1 Mbps: 10094.325 Peak Mbps: 10094.325 Avg Mbps: 10094.325 3000 1258959480 10071.676 100.00% Conn: 1 Mbps: 10071.676 Peak Mbps: 10094.325 Avg Mbps: 10071.676 4000 1259122960 10072.984 100.00% Conn: 1 Mbps: 10072.984 Peak Mbps: 10094.325 Avg Mbps: 10072.984 5000 1258697912 10069.583 100.00% Conn: 1 Mbps: 10069.583 Peak Mbps: 10094.325 Avg Mbps: 10069.583 --- fc00:0:0:1::12 tcpbench statistics --- 7548590908 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10043.165/10070.347/10094.325/16.267 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.040 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.040/0.040/0.040/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.043 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-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 1267076644 10136.613 100.00% Conn: 1 Mbps: 10136.613 Peak Mbps: 10136.613 Avg Mbps: 10136.613 2000 1272554252 10190.625 100.00% Conn: 1 Mbps: 10190.625 Peak Mbps: 10190.625 Avg Mbps: 10190.625 3000 1269020924 10152.167 100.00% Conn: 1 Mbps: 10152.167 Peak Mbps: 10190.625 Avg Mbps: 10152.167 4000 1268546542 10148.372 100.00% Conn: 1 Mbps: 10148.372 Peak Mbps: 10190.625 Avg Mbps: 10148.372 5000 1269380800 10155.046 100.00% Conn: 1 Mbps: 10155.046 Peak Mbps: 10190.625 Avg Mbps: 10155.046 --- 169.254.0.13 tcpbench statistics --- 7613997002 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10136.613/10156.565/10190.625/18.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 1278171044 10225.368 100.00% Conn: 1 Mbps: 10225.368 Peak Mbps: 10225.368 Avg Mbps: 10225.368 2000 1277530808 10230.477 100.00% Conn: 1 Mbps: 10230.477 Peak Mbps: 10230.477 Avg Mbps: 10230.477 3000 1278969432 10231.755 100.00% Conn: 1 Mbps: 10231.755 Peak Mbps: 10231.755 Avg Mbps: 10231.755 4000 1280702320 10245.619 100.00% Conn: 1 Mbps: 10245.619 Peak Mbps: 10245.619 Avg Mbps: 10245.619 5000 1278936736 10231.494 100.00% Conn: 1 Mbps: 10231.494 Peak Mbps: 10245.619 Avg Mbps: 10231.494 --- fc00::13 tcpbench statistics --- 7674162564 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10225.368/10232.943/10245.619/6.747 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.90s