START sys/net/pair 2025-03-31T03:50:12Z ==== 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.048 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.048/0.048/0.048/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 496138004 3969.104 100.00% Conn: 1 Mbps: 3969.104 Peak Mbps: 3969.104 Avg Mbps: 3969.104 2000 494778896 3962.193 100.00% Conn: 1 Mbps: 3962.193 Peak Mbps: 3969.104 Avg Mbps: 3962.193 3000 494699416 3957.595 100.00% Conn: 1 Mbps: 3957.595 Peak Mbps: 3969.104 Avg Mbps: 3957.595 4000 494596092 3956.769 100.00% Conn: 1 Mbps: 3956.769 Peak Mbps: 3969.104 Avg Mbps: 3956.769 5000 494818636 3958.549 100.00% Conn: 1 Mbps: 3958.549 Peak Mbps: 3969.104 Avg Mbps: 3958.549 --- 169.254.1.11 tcpbench statistics --- 2969706616 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3956.769/3960.842/3969.104/4.527 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 489506432 3916.051 100.00% Conn: 1 Mbps: 3916.051 Peak Mbps: 3916.051 Avg Mbps: 3916.051 2000 488293448 3910.258 100.00% Conn: 1 Mbps: 3910.258 Peak Mbps: 3916.051 Avg Mbps: 3910.258 3000 486144960 3889.160 100.00% Conn: 1 Mbps: 3889.160 Peak Mbps: 3916.051 Avg Mbps: 3889.160 4000 487849480 3902.796 100.00% Conn: 1 Mbps: 3902.796 Peak Mbps: 3916.051 Avg Mbps: 3902.796 5000 488245880 3905.967 100.00% Conn: 1 Mbps: 3905.967 Peak Mbps: 3916.051 Avg Mbps: 3905.967 --- fc00:0:0:1::11 tcpbench statistics --- 2927612200 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3889.160/3904.846/3916.051/9.015 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.079 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.079/0.079/0.079/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.144 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.144/0.144/0.144/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 270226240 2161.810 100.00% Conn: 1 Mbps: 2161.810 Peak Mbps: 2161.810 Avg Mbps: 2161.810 2001 290528216 2324.226 100.00% Conn: 1 Mbps: 2324.226 Peak Mbps: 2324.226 Avg Mbps: 2324.226 3000 287803632 2304.734 100.00% Conn: 1 Mbps: 2304.734 Peak Mbps: 2324.226 Avg Mbps: 2304.734 4001 288936144 2309.180 100.00% Conn: 1 Mbps: 2309.180 Peak Mbps: 2324.226 Avg Mbps: 2309.180 5001 290013120 2322.427 100.00% Conn: 1 Mbps: 2322.427 Peak Mbps: 2324.226 Avg Mbps: 2322.427 --- 169.254.1.12 tcpbench statistics --- 1717909808 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2161.810/2284.475/2324.226/61.787 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 253743676 2029.949 100.00% Conn: 1 Mbps: 2029.949 Peak Mbps: 2029.949 Avg Mbps: 2029.949 2001 274384112 2192.880 100.00% Conn: 1 Mbps: 2192.880 Peak Mbps: 2192.880 Avg Mbps: 2192.880 3001 273877188 2193.211 100.00% Conn: 1 Mbps: 2193.211 Peak Mbps: 2193.211 Avg Mbps: 2193.211 4001 278350760 2226.806 100.00% Conn: 1 Mbps: 2226.806 Peak Mbps: 2226.806 Avg Mbps: 2226.806 5003 277249644 2215.781 100.00% Conn: 1 Mbps: 2215.781 Peak Mbps: 2226.806 Avg Mbps: 2215.781 --- fc00:0:0:1::12 tcpbench statistics --- 1637063476 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2029.949/2171.726/2226.806/72.089 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.076 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.076/0.076/0.076/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.073 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.073/0.073/0.073/0.000 ms ==== run-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 551590360 4412.723 100.00% Conn: 1 Mbps: 4412.723 Peak Mbps: 4412.723 Avg Mbps: 4412.723 2000 558568984 4473.025 100.00% Conn: 1 Mbps: 4473.025 Peak Mbps: 4473.025 Avg Mbps: 4473.025 3000 561851368 4494.811 100.00% Conn: 1 Mbps: 4494.811 Peak Mbps: 4494.811 Avg Mbps: 4494.811 4000 565762204 4526.098 100.00% Conn: 1 Mbps: 4526.098 Peak Mbps: 4526.098 Avg Mbps: 4526.098 5000 550494376 4403.955 100.00% Conn: 1 Mbps: 4403.955 Peak Mbps: 4526.098 Avg Mbps: 4403.955 --- 169.254.0.13 tcpbench statistics --- 3310625748 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4403.955/4462.122/4526.098/47.125 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 595164584 4761.317 100.00% Conn: 1 Mbps: 4761.317 Peak Mbps: 4761.317 Avg Mbps: 4761.317 2000 629242256 5033.938 100.00% Conn: 1 Mbps: 5033.938 Peak Mbps: 5033.938 Avg Mbps: 5033.938 3000 628847280 5030.778 100.00% Conn: 1 Mbps: 5030.778 Peak Mbps: 5033.938 Avg Mbps: 5030.778 4001 631925032 5055.400 100.00% Conn: 1 Mbps: 5055.400 Peak Mbps: 5055.400 Avg Mbps: 5055.400 5001 626398576 5016.205 100.00% Conn: 1 Mbps: 5016.205 Peak Mbps: 5055.400 Avg Mbps: 5016.205 --- fc00::13 tcpbench statistics --- 3739585160 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4761.317/4979.528/5055.400/109.823 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.048 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.048/0.048/0.048/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 261833136 2092.573 100.00% Conn: 1 Mbps: 2092.573 Peak Mbps: 2092.573 Avg Mbps: 2092.573 2002 282617952 2258.685 100.00% Conn: 1 Mbps: 2258.685 Peak Mbps: 2258.685 Avg Mbps: 2258.685 3001 285432256 2285.744 100.00% Conn: 1 Mbps: 2285.744 Peak Mbps: 2285.744 Avg Mbps: 2285.744 4002 283518496 2268.148 100.00% Conn: 1 Mbps: 2268.148 Peak Mbps: 2285.744 Avg Mbps: 2268.148 5002 285610968 2284.888 100.00% Conn: 1 Mbps: 2284.888 Peak Mbps: 2285.744 Avg Mbps: 2284.888 --- 169.254.1.11 tcpbench statistics --- 1683477072 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2092.573/2238.007/2285.744/73.435 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 255943800 2047.550 100.00% Conn: 1 Mbps: 2047.550 Peak Mbps: 2047.550 Avg Mbps: 2047.550 2001 269459324 2153.521 100.00% Conn: 1 Mbps: 2153.521 Peak Mbps: 2153.521 Avg Mbps: 2153.521 3001 272627520 2183.203 100.00% Conn: 1 Mbps: 2183.203 Peak Mbps: 2183.203 Avg Mbps: 2183.203 4002 270280904 2162.247 100.00% Conn: 1 Mbps: 2162.247 Peak Mbps: 2183.203 Avg Mbps: 2162.247 5002 276469504 2211.756 100.00% Conn: 1 Mbps: 2211.756 Peak Mbps: 2211.756 Avg Mbps: 2211.756 --- fc00:0:0:1::11 tcpbench statistics --- 1621773628 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2047.550/2151.656/2211.756/55.787 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.043 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.043/0.043/0.043/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.046 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.046/0.046/0.046/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 500740120 4005.921 100.00% Conn: 1 Mbps: 4005.921 Peak Mbps: 4005.921 Avg Mbps: 4005.921 2000 500451968 4007.623 100.00% Conn: 1 Mbps: 4007.623 Peak Mbps: 4007.623 Avg Mbps: 4007.623 3000 500402736 4003.222 100.00% Conn: 1 Mbps: 4003.222 Peak Mbps: 4007.623 Avg Mbps: 4003.222 4000 500760392 4006.083 100.00% Conn: 1 Mbps: 4006.083 Peak Mbps: 4007.623 Avg Mbps: 4006.083 5000 500957320 4007.659 100.00% Conn: 1 Mbps: 4007.659 Peak Mbps: 4007.659 Avg Mbps: 4007.659 --- 169.254.1.12 tcpbench statistics --- 3004054104 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4003.222/4006.102/4007.659/1.617 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 496542732 3972.342 100.00% Conn: 1 Mbps: 3972.342 Peak Mbps: 3972.342 Avg Mbps: 3972.342 2000 496041504 3972.304 100.00% Conn: 1 Mbps: 3972.304 Peak Mbps: 3972.342 Avg Mbps: 3972.304 3000 495501720 3964.014 100.00% Conn: 1 Mbps: 3964.014 Peak Mbps: 3972.342 Avg Mbps: 3964.014 4000 496631268 3973.050 100.00% Conn: 1 Mbps: 3973.050 Peak Mbps: 3973.050 Avg Mbps: 3973.050 5000 496875456 3975.004 100.00% Conn: 1 Mbps: 3975.004 Peak Mbps: 3975.004 Avg Mbps: 3975.004 --- fc00:0:0:1::12 tcpbench statistics --- 2978142552 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3964.014/3971.343/3975.004/3.794 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.048 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.048/0.048/0.048/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.059 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.059/0.059/0.059/0.000 ms ==== run-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 739780214 5918.242 100.00% Conn: 1 Mbps: 5918.242 Peak Mbps: 5918.242 Avg Mbps: 5918.242 2000 739905056 5925.166 100.00% Conn: 1 Mbps: 5925.166 Peak Mbps: 5925.166 Avg Mbps: 5925.166 3000 739512464 5916.100 100.00% Conn: 1 Mbps: 5916.100 Peak Mbps: 5925.166 Avg Mbps: 5916.100 4000 739250736 5914.006 100.00% Conn: 1 Mbps: 5914.006 Peak Mbps: 5925.166 Avg Mbps: 5914.006 5000 739218020 5913.744 100.00% Conn: 1 Mbps: 5913.744 Peak Mbps: 5925.166 Avg Mbps: 5913.744 --- 169.254.0.13 tcpbench statistics --- 4436459202 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5913.744/5917.451/5925.166/4.185 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 719630820 5757.047 100.00% Conn: 1 Mbps: 5757.047 Peak Mbps: 5757.047 Avg Mbps: 5757.047 2000 715813528 5726.508 100.00% Conn: 1 Mbps: 5726.508 Peak Mbps: 5757.047 Avg Mbps: 5726.508 3000 720162096 5761.297 100.00% Conn: 1 Mbps: 5761.297 Peak Mbps: 5761.297 Avg Mbps: 5761.297 4000 719638960 5757.112 100.00% Conn: 1 Mbps: 5757.112 Peak Mbps: 5761.297 Avg Mbps: 5757.112 5000 719475480 5755.804 100.00% Conn: 1 Mbps: 5755.804 Peak Mbps: 5761.297 Avg Mbps: 5755.804 --- fc00::13 tcpbench statistics --- 4313771316 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5726.508/5751.553/5761.297/12.660 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.054 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.054/0.054/0.054/0.000 ms ==== run-ping6-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.058 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.058/0.058/0.058/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 272405984 2179.248 100.00% Conn: 1 Mbps: 2179.248 Peak Mbps: 2179.248 Avg Mbps: 2179.248 2001 283751624 2267.745 100.00% Conn: 1 Mbps: 2267.745 Peak Mbps: 2267.745 Avg Mbps: 2267.745 3003 283381600 2264.788 100.00% Conn: 1 Mbps: 2264.788 Peak Mbps: 2267.745 Avg Mbps: 2264.788 4003 284744000 2280.232 100.00% Conn: 1 Mbps: 2280.232 Peak Mbps: 2280.232 Avg Mbps: 2280.232 5003 280314952 2242.520 100.00% Conn: 1 Mbps: 2242.520 Peak Mbps: 2280.232 Avg Mbps: 2242.520 --- 169.254.1.11 tcpbench statistics --- 1687136128 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2179.248/2246.907/2280.232/35.949 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 533700104 4269.601 100.00% Conn: 1 Mbps: 4269.601 Peak Mbps: 4269.601 Avg Mbps: 4269.601 2000 601148008 4809.184 100.00% Conn: 1 Mbps: 4809.184 Peak Mbps: 4809.184 Avg Mbps: 4809.184 3001 606297472 4850.380 100.00% Conn: 1 Mbps: 4850.380 Peak Mbps: 4850.380 Avg Mbps: 4850.380 4001 598615272 4788.922 100.00% Conn: 1 Mbps: 4788.922 Peak Mbps: 4850.380 Avg Mbps: 4788.922 5001 602966128 4823.729 100.00% Conn: 1 Mbps: 4823.729 Peak Mbps: 4850.380 Avg Mbps: 4823.729 --- fc00:0:0:1::11 tcpbench statistics --- 3548504304 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4269.601/4708.363/4850.380/220.293 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.060 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.060/0.060/0.060/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.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-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 750197450 6001.580 100.00% Conn: 1 Mbps: 6001.580 Peak Mbps: 6001.580 Avg Mbps: 6001.580 2000 750799052 6012.405 100.00% Conn: 1 Mbps: 6012.405 Peak Mbps: 6012.405 Avg Mbps: 6012.405 3000 750341016 6002.728 100.00% Conn: 1 Mbps: 6002.728 Peak Mbps: 6012.405 Avg Mbps: 6002.728 4000 750799388 6006.395 100.00% Conn: 1 Mbps: 6006.395 Peak Mbps: 6012.405 Avg Mbps: 6006.395 5000 750276028 6002.208 100.00% Conn: 1 Mbps: 6002.208 Peak Mbps: 6012.405 Avg Mbps: 6002.208 --- 169.254.1.12 tcpbench statistics --- 4502329086 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6001.580/6005.063/6012.405/4.035 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 721703164 5773.625 100.00% Conn: 1 Mbps: 5773.625 Peak Mbps: 5773.625 Avg Mbps: 5773.625 2000 722908560 5789.058 100.00% Conn: 1 Mbps: 5789.058 Peak Mbps: 5789.058 Avg Mbps: 5789.058 3000 723072040 5784.576 100.00% Conn: 1 Mbps: 5784.576 Peak Mbps: 5789.058 Avg Mbps: 5784.576 4000 722810472 5782.484 100.00% Conn: 1 Mbps: 5782.484 Peak Mbps: 5789.058 Avg Mbps: 5782.484 5000 722679688 5781.438 100.00% Conn: 1 Mbps: 5781.438 Peak Mbps: 5789.058 Avg Mbps: 5781.438 --- fc00:0:0:1::12 tcpbench statistics --- 4335624740 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5773.625/5782.236/5789.058/5.037 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.044 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-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 762168462 6097.348 100.00% Conn: 1 Mbps: 6097.348 Peak Mbps: 6097.348 Avg Mbps: 6097.348 2000 760188976 6087.599 100.00% Conn: 1 Mbps: 6087.599 Peak Mbps: 6097.348 Avg Mbps: 6087.599 3000 760352556 6082.820 100.00% Conn: 1 Mbps: 6082.820 Peak Mbps: 6097.348 Avg Mbps: 6082.820 4000 761006876 6088.055 100.00% Conn: 1 Mbps: 6088.055 Peak Mbps: 6097.348 Avg Mbps: 6088.055 5000 760974160 6087.793 100.00% Conn: 1 Mbps: 6087.793 Peak Mbps: 6097.348 Avg Mbps: 6087.793 --- 169.254.0.13 tcpbench statistics --- 4565010870 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6082.820/6088.723/6097.348/4.729 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 743508804 5948.070 100.00% Conn: 1 Mbps: 5948.070 Peak Mbps: 5948.070 Avg Mbps: 5948.070 2000 741545280 5938.301 100.00% Conn: 1 Mbps: 5938.301 Peak Mbps: 5948.070 Avg Mbps: 5938.301 3000 741839544 5934.716 100.00% Conn: 1 Mbps: 5934.716 Peak Mbps: 5948.070 Avg Mbps: 5934.716 4000 741937632 5935.501 100.00% Conn: 1 Mbps: 5935.501 Peak Mbps: 5948.070 Avg Mbps: 5935.501 5000 742460768 5939.686 100.00% Conn: 1 Mbps: 5939.686 Peak Mbps: 5948.070 Avg Mbps: 5939.686 --- fc00::13 tcpbench statistics --- 4454079756 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5934.716/5939.255/5948.070/4.764 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