START sys/net/pair 2025-03-10T17:09:00Z ==== 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.038 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.038/0.038/0.038/0.000 ms ==== run-ping6-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.044 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.044/0.044/0.044/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 497767344 3982.139 100.00% Conn: 1 Mbps: 3982.139 Peak Mbps: 3982.139 Avg Mbps: 3982.139 2000 496765896 3978.105 100.00% Conn: 1 Mbps: 3978.105 Peak Mbps: 3982.139 Avg Mbps: 3978.105 3000 496662572 3973.301 100.00% Conn: 1 Mbps: 3973.301 Peak Mbps: 3982.139 Avg Mbps: 3973.301 4000 496765896 3978.105 100.00% Conn: 1 Mbps: 3978.105 Peak Mbps: 3982.139 Avg Mbps: 3978.105 5000 496972544 3975.780 100.00% Conn: 1 Mbps: 3975.780 Peak Mbps: 3982.139 Avg Mbps: 3975.780 --- 169.254.1.11 tcpbench statistics --- 2981596824 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3973.301/3977.486/3982.139/2.927 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 491377440 3931.020 100.00% Conn: 1 Mbps: 3931.020 Peak Mbps: 3931.020 Avg Mbps: 3931.020 2000 490307160 3926.384 100.00% Conn: 1 Mbps: 3926.384 Peak Mbps: 3931.020 Avg Mbps: 3926.384 3000 490862120 3926.897 100.00% Conn: 1 Mbps: 3926.897 Peak Mbps: 3931.020 Avg Mbps: 3926.897 4000 491163384 3929.307 100.00% Conn: 1 Mbps: 3929.307 Peak Mbps: 3931.020 Avg Mbps: 3929.307 5000 490418152 3923.345 100.00% Conn: 1 Mbps: 3923.345 Peak Mbps: 3931.020 Avg Mbps: 3923.345 --- fc00:0:0:1::11 tcpbench statistics --- 2944895240 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3923.345/3927.390/3931.020/2.625 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.084 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.084/0.084/0.084/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.136 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.136/0.136/0.136/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 270732824 2163.699 100.00% Conn: 1 Mbps: 2163.699 Peak Mbps: 2163.699 Avg Mbps: 2163.699 2000 278754184 2232.266 100.00% Conn: 1 Mbps: 2232.266 Peak Mbps: 2232.266 Avg Mbps: 2232.266 3001 280656864 2243.012 100.00% Conn: 1 Mbps: 2243.012 Peak Mbps: 2243.012 Avg Mbps: 2243.012 4002 281600392 2252.803 100.00% Conn: 1 Mbps: 2252.803 Peak Mbps: 2252.803 Avg Mbps: 2252.803 5002 282236680 2257.893 100.00% Conn: 1 Mbps: 2257.893 Peak Mbps: 2257.893 Avg Mbps: 2257.893 --- 169.254.1.12 tcpbench statistics --- 1678264152 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2163.699/2229.935/2257.893/34.259 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 249579332 1994.640 100.00% Conn: 1 Mbps: 1994.640 Peak Mbps: 1994.640 Avg Mbps: 1994.640 2003 264451244 2113.496 100.00% Conn: 1 Mbps: 2113.496 Peak Mbps: 2113.496 Avg Mbps: 2113.496 3003 263926828 2111.415 100.00% Conn: 1 Mbps: 2111.415 Peak Mbps: 2113.496 Avg Mbps: 2111.415 4001 267449832 2146.037 100.00% Conn: 1 Mbps: 2146.037 Peak Mbps: 2146.037 Avg Mbps: 2146.037 5002 266149008 2129.192 100.00% Conn: 1 Mbps: 2129.192 Peak Mbps: 2146.037 Avg Mbps: 2129.192 --- fc00:0:0:1::12 tcpbench statistics --- 1583288084 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1994.640/2098.956/2146.037/53.627 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.077 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.077/0.077/0.077/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.071 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.071/0.071/0.071/0.000 ms ==== run-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 563257884 4506.063 100.00% Conn: 1 Mbps: 4506.063 Peak Mbps: 4506.063 Avg Mbps: 4506.063 2000 571031308 4572.823 100.00% Conn: 1 Mbps: 4572.823 Peak Mbps: 4572.823 Avg Mbps: 4572.823 3000 569164228 4553.314 100.00% Conn: 1 Mbps: 4553.314 Peak Mbps: 4572.823 Avg Mbps: 4553.314 4000 570674068 4565.393 100.00% Conn: 1 Mbps: 4565.393 Peak Mbps: 4572.823 Avg Mbps: 4565.393 5000 559888352 4479.107 100.00% Conn: 1 Mbps: 4479.107 Peak Mbps: 4572.823 Avg Mbps: 4479.107 --- 169.254.0.13 tcpbench statistics --- 3354522272 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4479.107/4535.340/4572.823/36.471 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 589012328 4712.099 100.00% Conn: 1 Mbps: 4712.099 Peak Mbps: 4712.099 Avg Mbps: 4712.099 2000 626822000 5019.596 100.00% Conn: 1 Mbps: 5019.596 Peak Mbps: 5019.596 Avg Mbps: 5019.596 3000 627070368 5016.563 100.00% Conn: 1 Mbps: 5016.563 Peak Mbps: 5019.596 Avg Mbps: 5016.563 4000 623075048 4984.600 100.00% Conn: 1 Mbps: 4984.600 Peak Mbps: 5019.596 Avg Mbps: 4984.600 5001 621907552 4970.290 100.00% Conn: 1 Mbps: 4970.290 Peak Mbps: 5019.596 Avg Mbps: 4970.290 --- fc00::13 tcpbench statistics --- 3710120936 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4712.099/4940.630/5019.596/115.794 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.046 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.046/0.046/0.046/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.049 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.049/0.049/0.049/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 268357600 2144.716 100.00% Conn: 1 Mbps: 2144.716 Peak Mbps: 2144.716 Avg Mbps: 2144.716 2001 274840240 2198.722 100.00% Conn: 1 Mbps: 2198.722 Peak Mbps: 2198.722 Avg Mbps: 2198.722 3002 280159688 2241.278 100.00% Conn: 1 Mbps: 2241.278 Peak Mbps: 2241.278 Avg Mbps: 2241.278 4003 279174376 2231.164 100.00% Conn: 1 Mbps: 2231.164 Peak Mbps: 2241.278 Avg Mbps: 2231.164 5004 281360136 2250.881 100.00% Conn: 1 Mbps: 2250.881 Peak Mbps: 2250.881 Avg Mbps: 2250.881 --- 169.254.1.11 tcpbench statistics --- 1661059488 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2144.716/2213.352/2250.881/38.550 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 250335448 2002.684 100.00% Conn: 1 Mbps: 2002.684 Peak Mbps: 2002.684 Avg Mbps: 2002.684 2001 263762268 2110.098 100.00% Conn: 1 Mbps: 2110.098 Peak Mbps: 2110.098 Avg Mbps: 2110.098 3002 265099852 2120.799 100.00% Conn: 1 Mbps: 2120.799 Peak Mbps: 2120.799 Avg Mbps: 2120.799 4003 265613932 2124.911 100.00% Conn: 1 Mbps: 2124.911 Peak Mbps: 2124.911 Avg Mbps: 2124.911 5003 266166300 2131.462 100.00% Conn: 1 Mbps: 2131.462 Peak Mbps: 2131.462 Avg Mbps: 2131.462 --- fc00:0:0:1::11 tcpbench statistics --- 1575287120 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2002.684/2097.991/2131.462/48.157 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.054 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.054/0.054/0.054/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.047 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.047/0.047/0.047/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 495507048 3964.056 100.00% Conn: 1 Mbps: 3964.056 Peak Mbps: 3964.056 Avg Mbps: 3964.056 2000 497896248 3987.157 100.00% Conn: 1 Mbps: 3987.157 Peak Mbps: 3987.157 Avg Mbps: 3987.157 3000 497188176 3977.505 100.00% Conn: 1 Mbps: 3977.505 Peak Mbps: 3987.157 Avg Mbps: 3977.505 4000 497388000 3979.104 100.00% Conn: 1 Mbps: 3979.104 Peak Mbps: 3987.157 Avg Mbps: 3979.104 5000 497907832 3983.263 100.00% Conn: 1 Mbps: 3983.263 Peak Mbps: 3987.157 Avg Mbps: 3983.263 --- 169.254.1.12 tcpbench statistics --- 2983207248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3964.056/3978.217/3987.157/7.838 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 496327104 3970.617 100.00% Conn: 1 Mbps: 3970.617 Peak Mbps: 3970.617 Avg Mbps: 3970.617 2000 495287520 3966.266 100.00% Conn: 1 Mbps: 3966.266 Peak Mbps: 3970.617 Avg Mbps: 3966.266 3000 495059040 3960.472 100.00% Conn: 1 Mbps: 3960.472 Peak Mbps: 3970.617 Avg Mbps: 3960.472 4000 494993352 3959.947 100.00% Conn: 1 Mbps: 3959.947 Peak Mbps: 3970.617 Avg Mbps: 3959.947 5000 494729172 3957.833 100.00% Conn: 1 Mbps: 3957.833 Peak Mbps: 3970.617 Avg Mbps: 3957.833 --- fc00:0:0:1::12 tcpbench statistics --- 2971143924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3957.833/3963.027/3970.617/4.714 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.046 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.046/0.046/0.046/0.000 ms ==== run-ping6-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.083 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.083/0.083/0.083/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 748314710 5986.518 100.00% Conn: 1 Mbps: 5986.518 Peak Mbps: 5986.518 Avg Mbps: 5986.518 2000 748869240 5996.951 100.00% Conn: 1 Mbps: 5996.951 Peak Mbps: 5996.951 Avg Mbps: 5996.951 3000 748771092 5990.169 100.00% Conn: 1 Mbps: 5990.169 Peak Mbps: 5996.951 Avg Mbps: 5990.169 4000 749621708 6002.977 100.00% Conn: 1 Mbps: 6002.977 Peak Mbps: 6002.977 Avg Mbps: 6002.977 5000 749392696 5995.142 100.00% Conn: 1 Mbps: 5995.142 Peak Mbps: 6002.977 Avg Mbps: 5995.142 --- 169.254.0.13 tcpbench statistics --- 4493675106 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5986.518/5994.351/6002.977/5.668 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 733144892 5865.159 100.00% Conn: 1 Mbps: 5865.159 Peak Mbps: 5865.159 Avg Mbps: 5865.159 2000 732586576 5866.559 100.00% Conn: 1 Mbps: 5866.559 Peak Mbps: 5866.559 Avg Mbps: 5866.559 3000 732553880 5860.431 100.00% Conn: 1 Mbps: 5860.431 Peak Mbps: 5866.559 Avg Mbps: 5860.431 4000 732913536 5863.308 100.00% Conn: 1 Mbps: 5863.308 Peak Mbps: 5866.559 Avg Mbps: 5863.308 5000 731932656 5855.461 100.00% Conn: 1 Mbps: 5855.461 Peak Mbps: 5866.559 Avg Mbps: 5855.461 --- fc00::13 tcpbench statistics --- 4394966108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5855.461/5862.184/5866.559/3.938 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.050 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.050/0.050/0.050/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 1001 268728472 2147.680 100.00% Conn: 1 Mbps: 2147.680 Peak Mbps: 2147.680 Avg Mbps: 2147.680 2001 275523304 2206.393 100.00% Conn: 1 Mbps: 2206.393 Peak Mbps: 2206.393 Avg Mbps: 2206.393 3001 277943088 2223.545 100.00% Conn: 1 Mbps: 2223.545 Peak Mbps: 2223.545 Avg Mbps: 2223.545 4001 278018984 2224.152 100.00% Conn: 1 Mbps: 2224.152 Peak Mbps: 2224.152 Avg Mbps: 2224.152 5002 280488048 2241.663 100.00% Conn: 1 Mbps: 2241.663 Peak Mbps: 2241.663 Avg Mbps: 2241.663 --- 169.254.1.11 tcpbench statistics --- 1660564576 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2147.680/2208.686/2241.663/32.479 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 537356808 4298.854 100.00% Conn: 1 Mbps: 4298.854 Peak Mbps: 4298.854 Avg Mbps: 4298.854 2000 602964128 4823.713 100.00% Conn: 1 Mbps: 4823.713 Peak Mbps: 4823.713 Avg Mbps: 4823.713 3000 602374824 4823.822 100.00% Conn: 1 Mbps: 4823.822 Peak Mbps: 4823.822 Avg Mbps: 4823.822 4000 594693096 4762.307 100.00% Conn: 1 Mbps: 4762.307 Peak Mbps: 4823.822 Avg Mbps: 4762.307 5001 597286872 4778.295 100.00% Conn: 1 Mbps: 4778.295 Peak Mbps: 4823.822 Avg Mbps: 4778.295 --- fc00:0:0:1::11 tcpbench statistics --- 3531433448 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4298.854/4697.398/4823.822/200.765 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.061 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.061/0.061/0.061/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.050 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.050/0.050/0.050/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 760434570 6083.477 100.00% Conn: 1 Mbps: 6083.477 Peak Mbps: 6083.477 Avg Mbps: 6083.477 2000 760025060 6086.287 100.00% Conn: 1 Mbps: 6086.287 Peak Mbps: 6086.287 Avg Mbps: 6086.287 3000 759665520 6077.324 100.00% Conn: 1 Mbps: 6077.324 Peak Mbps: 6086.287 Avg Mbps: 6077.324 4000 758651324 6069.211 100.00% Conn: 1 Mbps: 6069.211 Peak Mbps: 6086.287 Avg Mbps: 6069.211 5000 758945768 6071.566 100.00% Conn: 1 Mbps: 6071.566 Peak Mbps: 6086.287 Avg Mbps: 6071.566 --- 169.254.1.12 tcpbench statistics --- 4556111838 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6069.211/6077.573/6086.287/6.586 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 718251028 5746.008 100.00% Conn: 1 Mbps: 5746.008 Peak Mbps: 5746.008 Avg Mbps: 5746.008 2000 727833916 5828.500 100.00% Conn: 1 Mbps: 5828.500 Peak Mbps: 5828.500 Avg Mbps: 5828.500 3000 727093648 5816.749 100.00% Conn: 1 Mbps: 5816.749 Peak Mbps: 5828.500 Avg Mbps: 5816.749 4000 726276248 5810.210 100.00% Conn: 1 Mbps: 5810.210 Peak Mbps: 5828.500 Avg Mbps: 5810.210 5000 726047376 5808.379 100.00% Conn: 1 Mbps: 5808.379 Peak Mbps: 5828.500 Avg Mbps: 5808.379 --- fc00:0:0:1::12 tcpbench statistics --- 4351941944 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5746.008/5801.969/5828.500/28.855 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.044 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.044/0.044/0.044/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.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-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 773653190 6189.226 100.00% Conn: 1 Mbps: 6189.226 Peak Mbps: 6189.226 Avg Mbps: 6189.226 2000 773046364 6190.561 100.00% Conn: 1 Mbps: 6190.561 Peak Mbps: 6190.561 Avg Mbps: 6190.561 3000 772359328 6178.875 100.00% Conn: 1 Mbps: 6178.875 Peak Mbps: 6190.561 Avg Mbps: 6178.875 4000 771999452 6175.996 100.00% Conn: 1 Mbps: 6175.996 Peak Mbps: 6190.561 Avg Mbps: 6175.996 5000 772326612 6178.613 100.00% Conn: 1 Mbps: 6178.613 Peak Mbps: 6190.561 Avg Mbps: 6178.613 --- 169.254.0.13 tcpbench statistics --- 4635891496 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6175.996/6182.654/6190.561/6.011 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 747628140 5981.025 100.00% Conn: 1 Mbps: 5981.025 Peak Mbps: 5981.025 Avg Mbps: 5981.025 2000 747757520 5988.048 100.00% Conn: 1 Mbps: 5988.048 Peak Mbps: 5988.048 Avg Mbps: 5988.048 3000 745959240 5967.674 100.00% Conn: 1 Mbps: 5967.674 Peak Mbps: 5988.048 Avg Mbps: 5967.674 4000 743670520 5949.364 100.00% Conn: 1 Mbps: 5949.364 Peak Mbps: 5988.048 Avg Mbps: 5949.364 5000 749948152 5999.585 100.00% Conn: 1 Mbps: 5999.585 Peak Mbps: 5999.585 Avg Mbps: 5999.585 --- fc00::13 tcpbench statistics --- 4485042508 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5949.364/5977.139/5999.585/17.315 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.86s