START sys/net/pair 2025-03-16T02:42:09Z ==== 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.040 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.040/0.040/0.040/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.048 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.048/0.048/0.048/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 907733132 7261.865 100.00% Conn: 1 Mbps: 7261.865 Peak Mbps: 7261.865 Avg Mbps: 7261.865 2000 910355972 7290.138 100.00% Conn: 1 Mbps: 7290.138 Peak Mbps: 7290.138 Avg Mbps: 7290.138 3000 910689788 7285.518 100.00% Conn: 1 Mbps: 7285.518 Peak Mbps: 7290.138 Avg Mbps: 7285.518 4000 914735320 7317.883 100.00% Conn: 1 Mbps: 7317.883 Peak Mbps: 7317.883 Avg Mbps: 7317.883 5000 911603808 7292.830 100.00% Conn: 1 Mbps: 7292.830 Peak Mbps: 7317.883 Avg Mbps: 7292.830 --- 169.254.1.11 tcpbench statistics --- 5466395960 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7261.865/7289.647/7317.883/17.869 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 910205752 7281.646 100.00% Conn: 1 Mbps: 7281.646 Peak Mbps: 7281.646 Avg Mbps: 7281.646 2000 912298744 7305.696 100.00% Conn: 1 Mbps: 7305.696 Peak Mbps: 7305.696 Avg Mbps: 7305.696 3000 911870632 7294.965 100.00% Conn: 1 Mbps: 7294.965 Peak Mbps: 7305.696 Avg Mbps: 7294.965 4000 913440376 7307.523 100.00% Conn: 1 Mbps: 7307.523 Peak Mbps: 7307.523 Avg Mbps: 7307.523 5000 912560368 7300.483 100.00% Conn: 1 Mbps: 7300.483 Peak Mbps: 7307.523 Avg Mbps: 7300.483 --- fc00:0:0:1::11 tcpbench statistics --- 5472222720 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7281.646/7298.063/7307.523/9.303 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.068 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.068/0.068/0.068/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.131 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.131/0.131/0.131/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 368785720 2947.338 100.00% Conn: 1 Mbps: 2947.338 Peak Mbps: 2947.338 Avg Mbps: 2947.338 2001 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3045.065 Avg Mbps: 3045.065 3001 381488056 3051.904 100.00% Conn: 1 Mbps: 3051.904 Peak Mbps: 3051.904 Avg Mbps: 3051.904 4001 385875968 3087.008 100.00% Conn: 1 Mbps: 3087.008 Peak Mbps: 3087.008 Avg Mbps: 3087.008 5002 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3089.105 Avg Mbps: 3089.105 --- 169.254.1.12 tcpbench statistics --- 2284340464 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2947.338/3044.084/3089.105/51.558 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 348050988 2781.626 100.00% Conn: 1 Mbps: 2781.626 Peak Mbps: 2781.626 Avg Mbps: 2781.626 2001 355467264 2846.585 100.00% Conn: 1 Mbps: 2846.585 Peak Mbps: 2846.585 Avg Mbps: 2846.585 3001 354942976 2839.544 100.00% Conn: 1 Mbps: 2839.544 Peak Mbps: 2846.585 Avg Mbps: 2839.544 4001 355352856 2842.823 100.00% Conn: 1 Mbps: 2842.823 Peak Mbps: 2846.585 Avg Mbps: 2842.823 5002 359137280 2873.098 100.00% Conn: 1 Mbps: 2873.098 Peak Mbps: 2873.098 Avg Mbps: 2873.098 --- fc00:0:0:1::12 tcpbench statistics --- 2135234372 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2781.626/2836.735/2873.098/30.004 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.068 ms --- fc00::13 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-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 743026588 5944.213 100.00% Conn: 1 Mbps: 5944.213 Peak Mbps: 5944.213 Avg Mbps: 5944.213 2000 779039256 6238.553 100.00% Conn: 1 Mbps: 6238.553 Peak Mbps: 6238.553 Avg Mbps: 6238.553 3000 795920388 6367.363 100.00% Conn: 1 Mbps: 6367.363 Peak Mbps: 6367.363 Avg Mbps: 6367.363 4000 804249916 6433.999 100.00% Conn: 1 Mbps: 6433.999 Peak Mbps: 6433.999 Avg Mbps: 6433.999 5000 809591508 6476.732 100.00% Conn: 1 Mbps: 6476.732 Peak Mbps: 6476.732 Avg Mbps: 6476.732 --- 169.254.0.13 tcpbench statistics --- 4743660220 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5944.213/6292.172/6476.732/191.719 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 704055528 5632.444 100.00% Conn: 1 Mbps: 5632.444 Peak Mbps: 5632.444 Avg Mbps: 5632.444 2000 738476304 5907.810 100.00% Conn: 1 Mbps: 5907.810 Peak Mbps: 5907.810 Avg Mbps: 5907.810 3000 736138584 5889.109 100.00% Conn: 1 Mbps: 5889.109 Peak Mbps: 5907.810 Avg Mbps: 5889.109 4000 742275376 5938.203 100.00% Conn: 1 Mbps: 5938.203 Peak Mbps: 5938.203 Avg Mbps: 5938.203 5000 742052352 5942.361 100.00% Conn: 1 Mbps: 5942.361 Peak Mbps: 5942.361 Avg Mbps: 5942.361 --- fc00::13 tcpbench statistics --- 4403416320 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5632.444/5861.986/5942.361/116.442 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.053 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.053/0.053/0.053/0.000 ms ==== run-tcpbench-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 369341456 2951.780 100.00% Conn: 1 Mbps: 2951.780 Peak Mbps: 2951.780 Avg Mbps: 2951.780 2001 379584512 3036.676 100.00% Conn: 1 Mbps: 3036.676 Peak Mbps: 3036.676 Avg Mbps: 3036.676 3002 379258024 3034.064 100.00% Conn: 1 Mbps: 3034.064 Peak Mbps: 3036.676 Avg Mbps: 3034.064 4002 378055160 3024.441 100.00% Conn: 1 Mbps: 3024.441 Peak Mbps: 3036.676 Avg Mbps: 3024.441 5002 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3045.065 Avg Mbps: 3045.065 --- 169.254.1.11 tcpbench statistics --- 2266456752 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2951.780/3018.405/3045.065/33.956 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 351784460 2811.464 100.00% Conn: 1 Mbps: 2811.464 Peak Mbps: 2811.464 Avg Mbps: 2811.464 2001 359923712 2879.390 100.00% Conn: 1 Mbps: 2879.390 Peak Mbps: 2879.390 Avg Mbps: 2879.390 3001 356777984 2857.081 100.00% Conn: 1 Mbps: 2857.081 Peak Mbps: 2879.390 Avg Mbps: 2857.081 4002 359661568 2877.293 100.00% Conn: 1 Mbps: 2877.293 Peak Mbps: 2879.390 Avg Mbps: 2877.293 5002 362545152 2900.361 100.00% Conn: 1 Mbps: 2900.361 Peak Mbps: 2900.361 Avg Mbps: 2900.361 --- fc00:0:0:1::11 tcpbench statistics --- 2152189452 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2811.464/2865.118/2900.361/30.124 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.038 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.038/0.038/0.038/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 914067376 7312.539 100.00% Conn: 1 Mbps: 7312.539 Peak Mbps: 7312.539 Avg Mbps: 7312.539 2000 914606032 7324.172 100.00% Conn: 1 Mbps: 7324.172 Peak Mbps: 7324.172 Avg Mbps: 7324.172 3000 910573352 7284.587 100.00% Conn: 1 Mbps: 7284.587 Peak Mbps: 7324.172 Avg Mbps: 7284.587 4000 911032368 7288.259 100.00% Conn: 1 Mbps: 7288.259 Peak Mbps: 7324.172 Avg Mbps: 7288.259 5000 912392040 7299.136 100.00% Conn: 1 Mbps: 7299.136 Peak Mbps: 7324.172 Avg Mbps: 7299.136 --- 169.254.1.12 tcpbench statistics --- 5475407832 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7284.587/7301.739/7324.172/14.850 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 875919492 7007.356 100.00% Conn: 1 Mbps: 7007.356 Peak Mbps: 7007.356 Avg Mbps: 7007.356 2000 875068404 7007.555 100.00% Conn: 1 Mbps: 7007.555 Peak Mbps: 7007.555 Avg Mbps: 7007.555 3000 875232624 7001.861 100.00% Conn: 1 Mbps: 7001.861 Peak Mbps: 7007.555 Avg Mbps: 7001.861 4000 875169792 7001.358 100.00% Conn: 1 Mbps: 7001.358 Peak Mbps: 7007.555 Avg Mbps: 7001.358 5000 875462532 7003.700 100.00% Conn: 1 Mbps: 7003.700 Peak Mbps: 7007.555 Avg Mbps: 7003.700 --- fc00:0:0:1::12 tcpbench statistics --- 5253626280 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7001.358/7004.366/7007.555/2.641 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.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-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.050 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-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 1246633794 9973.070 100.00% Conn: 1 Mbps: 9973.070 Peak Mbps: 9973.070 Avg Mbps: 9973.070 2000 1250340088 10012.733 100.00% Conn: 1 Mbps: 10012.733 Peak Mbps: 10012.733 Avg Mbps: 10012.733 3000 1250765396 10006.123 100.00% Conn: 1 Mbps: 10006.123 Peak Mbps: 10012.733 Avg Mbps: 10006.123 4000 1253693478 10029.548 100.00% Conn: 1 Mbps: 10029.548 Peak Mbps: 10029.548 Avg Mbps: 10029.548 5000 1253055516 10024.444 100.00% Conn: 1 Mbps: 10024.444 Peak Mbps: 10029.548 Avg Mbps: 10024.444 --- 169.254.0.13 tcpbench statistics --- 7505580828 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9973.070/10009.184/10029.548/19.868 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 1177832204 9422.658 100.00% Conn: 1 Mbps: 9422.658 Peak Mbps: 9422.658 Avg Mbps: 9422.658 2000 1182189272 9466.981 100.00% Conn: 1 Mbps: 9466.981 Peak Mbps: 9466.981 Avg Mbps: 9466.981 3000 1183268240 9466.146 100.00% Conn: 1 Mbps: 9466.146 Peak Mbps: 9466.981 Avg Mbps: 9466.146 4000 1184085640 9472.685 100.00% Conn: 1 Mbps: 9472.685 Peak Mbps: 9472.685 Avg Mbps: 9472.685 5000 1188761168 9510.089 100.00% Conn: 1 Mbps: 9510.089 Peak Mbps: 9510.089 Avg Mbps: 9510.089 --- fc00::13 tcpbench statistics --- 7111992724 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9422.658/9467.712/9510.089/27.761 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.045 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.045/0.045/0.045/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.059 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.059/0.059/0.059/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 373280504 2983.261 100.00% Conn: 1 Mbps: 2983.261 Peak Mbps: 2983.261 Avg Mbps: 2983.261 2001 377749504 3021.996 100.00% Conn: 1 Mbps: 3021.996 Peak Mbps: 3021.996 Avg Mbps: 3021.996 3001 378535936 3028.287 100.00% Conn: 1 Mbps: 3028.287 Peak Mbps: 3028.287 Avg Mbps: 3028.287 4002 382992384 3063.939 100.00% Conn: 1 Mbps: 3063.939 Peak Mbps: 3063.939 Avg Mbps: 3063.939 5002 379060224 3032.482 100.00% Conn: 1 Mbps: 3032.482 Peak Mbps: 3063.939 Avg Mbps: 3032.482 --- 169.254.1.11 tcpbench statistics --- 2269105912 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2983.261/3025.993/3063.939/25.804 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 835067712 6680.542 100.00% Conn: 1 Mbps: 6680.542 Peak Mbps: 6680.542 Avg Mbps: 6680.542 2000 909953224 7279.626 100.00% Conn: 1 Mbps: 7279.626 Peak Mbps: 7279.626 Avg Mbps: 7279.626 3000 919601152 7356.809 100.00% Conn: 1 Mbps: 7356.809 Peak Mbps: 7356.809 Avg Mbps: 7356.809 4000 894023848 7152.191 100.00% Conn: 1 Mbps: 7152.191 Peak Mbps: 7356.809 Avg Mbps: 7152.191 5001 933494784 7467.958 100.00% Conn: 1 Mbps: 7467.958 Peak Mbps: 7467.958 Avg Mbps: 7467.958 --- fc00:0:0:1::11 tcpbench statistics --- 5398860816 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6680.542/7187.425/7467.958/273.519 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.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-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 1252246618 10017.973 100.00% Conn: 1 Mbps: 10017.973 Peak Mbps: 10017.973 Avg Mbps: 10017.973 2000 1256474338 10061.857 100.00% Conn: 1 Mbps: 10061.857 Peak Mbps: 10061.857 Avg Mbps: 10061.857 3000 1257799336 10062.395 100.00% Conn: 1 Mbps: 10062.395 Peak Mbps: 10062.395 Avg Mbps: 10062.395 4000 1257095942 10056.768 100.00% Conn: 1 Mbps: 10056.768 Peak Mbps: 10062.395 Avg Mbps: 10056.768 5000 1255378352 10043.027 100.00% Conn: 1 Mbps: 10043.027 Peak Mbps: 10062.395 Avg Mbps: 10043.027 --- 169.254.1.12 tcpbench statistics --- 7532737138 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10017.973/10048.404/10062.395/16.743 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 1174714452 9397.716 100.00% Conn: 1 Mbps: 9397.716 Peak Mbps: 9397.716 Avg Mbps: 9397.716 2000 1187616808 9510.445 100.00% Conn: 1 Mbps: 9510.445 Peak Mbps: 9510.445 Avg Mbps: 9510.445 3000 1186407056 9491.256 100.00% Conn: 1 Mbps: 9491.256 Peak Mbps: 9510.445 Avg Mbps: 9491.256 4000 1182450840 9459.607 100.00% Conn: 1 Mbps: 9459.607 Peak Mbps: 9510.445 Avg Mbps: 9459.607 5000 1187812984 9502.504 100.00% Conn: 1 Mbps: 9502.504 Peak Mbps: 9510.445 Avg Mbps: 9502.504 --- fc00:0:0:1::12 tcpbench statistics --- 7112406140 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9397.716/9472.306/9510.445/41.111 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.038 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.038/0.038/0.038/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.046 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-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 1254627876 10037.023 100.00% Conn: 1 Mbps: 10037.023 Peak Mbps: 10037.023 Avg Mbps: 10037.023 2000 1255394710 10053.211 100.00% Conn: 1 Mbps: 10053.211 Peak Mbps: 10053.211 Avg Mbps: 10053.211 3000 1259287914 10074.303 100.00% Conn: 1 Mbps: 10074.303 Peak Mbps: 10074.303 Avg Mbps: 10074.303 4000 1256801498 10054.412 100.00% Conn: 1 Mbps: 10054.412 Peak Mbps: 10074.303 Avg Mbps: 10054.412 5000 1256507054 10052.056 100.00% Conn: 1 Mbps: 10052.056 Peak Mbps: 10074.303 Avg Mbps: 10052.056 --- 169.254.0.13 tcpbench statistics --- 7538815304 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10037.023/10054.201/10074.303/11.873 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 1261177476 10089.420 100.00% Conn: 1 Mbps: 10089.420 Peak Mbps: 10089.420 Avg Mbps: 10089.420 2000 1265335200 10132.814 100.00% Conn: 1 Mbps: 10132.814 Peak Mbps: 10132.814 Avg Mbps: 10132.814 3000 1264812064 10118.497 100.00% Conn: 1 Mbps: 10118.497 Peak Mbps: 10132.814 Avg Mbps: 10118.497 4000 1266087208 10128.698 100.00% Conn: 1 Mbps: 10128.698 Peak Mbps: 10132.814 Avg Mbps: 10128.698 5000 1266806520 10134.452 100.00% Conn: 1 Mbps: 10134.452 Peak Mbps: 10134.452 Avg Mbps: 10134.452 --- fc00::13 tcpbench statistics --- 7590044108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10089.420/10120.776/10134.452/16.632 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.89s