START sys/net/pair 2025-03-25T04:53:43Z ==== ifconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 fc00::13 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair11 destroy ifconfig: pair11: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig pair12 destroy ifconfig: pair12: SIOCIFDESTROY: Device not configured *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 inet6 ::1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48: not in table *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet 127.0.0.1 delete ifconfig: SIOCDIFADDR: Can't assign requested address *** Error 1 in target 'unconfig' (ignored) /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig # Create and configure pflog and loopback interfaces. /sbin/ifconfig lo11 rdomain 11 /sbin/ifconfig lo11 inet 127.0.0.1/8 /sbin/ifconfig lo11 inet6 ::1/128 /sbin/route -n -T 11 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 11 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo12 rdomain 12 /sbin/ifconfig lo12 inet 127.0.0.1/8 /sbin/ifconfig lo12 inet6 ::1/128 /sbin/route -n -T 12 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 12 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 127.0.0.1/8 /sbin/ifconfig lo13 inet6 ::1/128 /sbin/route -n -T 13 add -inet 169.254.0.0/16 127.0.0.1 add net 169.254.0.0/16: gateway 127.0.0.1 /sbin/route -n -T 13 add -inet6 fc00::/48 ::1 add net fc00::/48: gateway ::1 /sbin/ifconfig pair11 rdomain 11 /sbin/ifconfig pair11 inet 169.254.1.11/24 /sbin/ifconfig pair11 inet6 fc00:0:0:1::11/64 /sbin/ifconfig pair12 rdomain 12 /sbin/ifconfig pair12 inet 169.254.1.12/24 /sbin/ifconfig pair12 inet6 fc00:0:0:1::12/64 /sbin/ifconfig pair11 patch pair12 /sbin/ifconfig lo13 inet 169.254.0.13/24 alias /sbin/ifconfig lo13 inet6 fc00::13/64 /sbin/ifconfig pair11 mtu 8000 /sbin/route -n -T 11 add -inet 169.254.0.13 169.254.1.12 add host 169.254.0.13: gateway 169.254.1.12 /sbin/route -n -T 11 add -inet6 fc00::13 fc00:0:0:1::12 add host fc00::13: gateway fc00:0:0:1::12 # Wait until IPv6 addresses are no longer tentative. for i in `jot 50`; do if ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep -q tentative; then break; fi; sleep .1; done ! { /sbin/ifconfig pair11; /sbin/ifconfig pair12; /sbin/ifconfig lo13; } | fgrep tentative ==== pfctl ==== # Create python include file containing the addresses. rm -f addr.py addr.py.tmp echo 'N1="11"' >>addr.py.tmp echo 'LO_N1="lo11"' >>addr.py.tmp echo 'PAIR_N1="pair11"' >>addr.py.tmp echo 'IP_N1="169.254.1.11"' >>addr.py.tmp echo 'IP6_N1="fc00:0:0:1::11"' >>addr.py.tmp echo 'N2="12"' >>addr.py.tmp echo 'LO_N2="lo12"' >>addr.py.tmp echo 'PAIR_N2="pair12"' >>addr.py.tmp echo 'IP_N2="169.254.1.12"' >>addr.py.tmp echo 'IP6_N2="fc00:0:0:1::12"' >>addr.py.tmp echo 'N3="13"' >>addr.py.tmp echo 'LO_N3="lo13"' >>addr.py.tmp echo 'PAIR_N3="pair13"' >>addr.py.tmp echo 'IP_N3="169.254.0.13"' >>addr.py.tmp echo 'IP6_N3="fc00::13"' >>addr.py.tmp mv addr.py.tmp addr.py # Load the pf rules into the kernel. cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -n -f - cat addr.py /usr/src/regress/sys/net/pair/pf.conf | /sbin/pfctl -a regress -f - ==== run-ping-1-1 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.049 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.045 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.045/0.045/0.045/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 520848336 4166.787 100.00% Conn: 1 Mbps: 4166.787 Peak Mbps: 4166.787 Avg Mbps: 4166.787 2000 519497176 4160.138 100.00% Conn: 1 Mbps: 4160.138 Peak Mbps: 4166.787 Avg Mbps: 4160.138 3000 519672032 4157.376 100.00% Conn: 1 Mbps: 4157.376 Peak Mbps: 4166.787 Avg Mbps: 4157.376 4000 519457436 4155.659 100.00% Conn: 1 Mbps: 4155.659 Peak Mbps: 4166.787 Avg Mbps: 4155.659 5000 518384456 4147.076 100.00% Conn: 1 Mbps: 4147.076 Peak Mbps: 4166.787 Avg Mbps: 4147.076 --- 169.254.1.11 tcpbench statistics --- 3117531468 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4147.076/4157.407/4166.787/6.407 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 517793536 4142.348 100.00% Conn: 1 Mbps: 4142.348 Peak Mbps: 4142.348 Avg Mbps: 4142.348 2000 516089016 4132.845 100.00% Conn: 1 Mbps: 4132.845 Peak Mbps: 4142.348 Avg Mbps: 4132.845 3000 515526128 4124.209 100.00% Conn: 1 Mbps: 4124.209 Peak Mbps: 4142.348 Avg Mbps: 4124.209 4000 516081088 4128.649 100.00% Conn: 1 Mbps: 4128.649 Peak Mbps: 4142.348 Avg Mbps: 4128.649 5000 515914600 4127.317 100.00% Conn: 1 Mbps: 4127.317 Peak Mbps: 4142.348 Avg Mbps: 4127.317 --- fc00:0:0:1::11 tcpbench statistics --- 3097318968 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4124.209/4131.074/4142.348/6.283 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.055 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.055/0.055/0.055/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.123 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.123/0.123/0.123/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 275589584 2204.717 100.00% Conn: 1 Mbps: 2204.717 Peak Mbps: 2204.717 Avg Mbps: 2204.717 2001 286690280 2291.231 100.00% Conn: 1 Mbps: 2291.231 Peak Mbps: 2291.231 Avg Mbps: 2291.231 3001 289516664 2318.452 100.00% Conn: 1 Mbps: 2318.452 Peak Mbps: 2318.452 Avg Mbps: 2318.452 4003 289204128 2311.322 100.00% Conn: 1 Mbps: 2311.322 Peak Mbps: 2318.452 Avg Mbps: 2311.322 5004 290529264 2321.912 100.00% Conn: 1 Mbps: 2321.912 Peak Mbps: 2321.912 Avg Mbps: 2321.912 --- 169.254.1.12 tcpbench statistics --- 1720047472 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2204.717/2289.527/2321.912/43.718 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 257499640 2059.997 100.00% Conn: 1 Mbps: 2059.997 Peak Mbps: 2059.997 Avg Mbps: 2059.997 2001 275364840 2200.718 100.00% Conn: 1 Mbps: 2200.718 Peak Mbps: 2200.718 Avg Mbps: 2200.718 3000 274542892 2198.542 100.00% Conn: 1 Mbps: 2198.542 Peak Mbps: 2200.718 Avg Mbps: 2198.542 4003 277274188 2213.766 100.00% Conn: 1 Mbps: 2213.766 Peak Mbps: 2213.766 Avg Mbps: 2213.766 5002 277506600 2224.502 100.00% Conn: 1 Mbps: 2224.502 Peak Mbps: 2224.502 Avg Mbps: 2224.502 --- fc00:0:0:1::12 tcpbench statistics --- 1641227372 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2059.997/2179.505/2224.502/60.486 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.072 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.072/0.072/0.072/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.075 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.075/0.075/0.075/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 565553036 4524.424 100.00% Conn: 1 Mbps: 4524.424 Peak Mbps: 4524.424 Avg Mbps: 4524.424 2000 578063748 4624.510 100.00% Conn: 1 Mbps: 4624.510 Peak Mbps: 4624.510 Avg Mbps: 4624.510 3000 572390276 4583.706 100.00% Conn: 1 Mbps: 4583.706 Peak Mbps: 4624.510 Avg Mbps: 4583.706 4000 576205596 4609.645 100.00% Conn: 1 Mbps: 4609.645 Peak Mbps: 4624.510 Avg Mbps: 4609.645 5000 563544432 4508.355 100.00% Conn: 1 Mbps: 4508.355 Peak Mbps: 4624.510 Avg Mbps: 4508.355 --- 169.254.0.13 tcpbench statistics --- 3389894480 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4508.355/4570.128/4624.510/46.061 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 1001 605425624 4838.566 100.00% Conn: 1 Mbps: 4838.566 Peak Mbps: 4838.566 Avg Mbps: 4838.566 2001 634968608 5079.749 100.00% Conn: 1 Mbps: 5079.749 Peak Mbps: 5079.749 Avg Mbps: 5079.749 3001 640325856 5122.607 100.00% Conn: 1 Mbps: 5122.607 Peak Mbps: 5122.607 Avg Mbps: 5122.607 4001 639998080 5119.985 100.00% Conn: 1 Mbps: 5119.985 Peak Mbps: 5122.607 Avg Mbps: 5119.985 5001 638874904 5110.999 100.00% Conn: 1 Mbps: 5110.999 Peak Mbps: 5122.607 Avg Mbps: 5110.999 --- fc00::13 tcpbench statistics --- 3802365296 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4838.566/5054.381/5122.607/108.980 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.047 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.047/0.047/0.047/0.000 ms ==== run-ping6-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.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-2-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 274782600 2198.261 100.00% Conn: 1 Mbps: 2198.261 Peak Mbps: 2198.261 Avg Mbps: 2198.261 2000 286739288 2293.914 100.00% Conn: 1 Mbps: 2293.914 Peak Mbps: 2293.914 Avg Mbps: 2293.914 3002 285947960 2285.298 100.00% Conn: 1 Mbps: 2285.298 Peak Mbps: 2293.914 Avg Mbps: 2285.298 4004 288838840 2308.402 100.00% Conn: 1 Mbps: 2308.402 Peak Mbps: 2308.402 Avg Mbps: 2308.402 5003 288003952 2306.338 100.00% Conn: 1 Mbps: 2306.338 Peak Mbps: 2308.402 Avg Mbps: 2306.338 --- 169.254.1.11 tcpbench statistics --- 1712280616 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2198.261/2278.443/2308.402/40.966 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 256423776 2049.341 100.00% Conn: 1 Mbps: 2049.341 Peak Mbps: 2049.341 Avg Mbps: 2049.341 2001 269546064 2156.369 100.00% Conn: 1 Mbps: 2156.369 Peak Mbps: 2156.369 Avg Mbps: 2156.369 3002 273379056 2187.032 100.00% Conn: 1 Mbps: 2187.032 Peak Mbps: 2187.032 Avg Mbps: 2187.032 4003 275188700 2201.510 100.00% Conn: 1 Mbps: 2201.510 Peak Mbps: 2201.510 Avg Mbps: 2201.510 5003 273372892 2186.983 100.00% Conn: 1 Mbps: 2186.983 Peak Mbps: 2201.510 Avg Mbps: 2186.983 --- fc00:0:0:1::11 tcpbench statistics --- 1624120408 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2049.341/2156.247/2201.510/55.444 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.040 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.040/0.040/0.040/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 525345984 4202.768 100.00% Conn: 1 Mbps: 4202.768 Peak Mbps: 4202.768 Avg Mbps: 4202.768 2000 526180704 4213.659 100.00% Conn: 1 Mbps: 4213.659 Peak Mbps: 4213.659 Avg Mbps: 4213.659 3000 525715224 4205.722 100.00% Conn: 1 Mbps: 4205.722 Peak Mbps: 4213.659 Avg Mbps: 4205.722 4000 526120664 4208.965 100.00% Conn: 1 Mbps: 4208.965 Peak Mbps: 4213.659 Avg Mbps: 4208.965 5000 525713776 4205.710 100.00% Conn: 1 Mbps: 4205.710 Peak Mbps: 4213.659 Avg Mbps: 4205.710 --- 169.254.1.12 tcpbench statistics --- 3154134184 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4202.768/4207.365/4213.659/3.708 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 528705576 4229.645 100.00% Conn: 1 Mbps: 4229.645 Peak Mbps: 4229.645 Avg Mbps: 4229.645 2000 527730252 4226.068 100.00% Conn: 1 Mbps: 4226.068 Peak Mbps: 4229.645 Avg Mbps: 4226.068 3000 527548896 4220.391 100.00% Conn: 1 Mbps: 4220.391 Peak Mbps: 4229.645 Avg Mbps: 4220.391 4000 527578884 4220.631 100.00% Conn: 1 Mbps: 4220.631 Peak Mbps: 4229.645 Avg Mbps: 4220.631 5000 527810220 4222.482 100.00% Conn: 1 Mbps: 4222.482 Peak Mbps: 4229.645 Avg Mbps: 4222.482 --- fc00:0:0:1::12 tcpbench statistics --- 3166744224 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4220.391/4223.843/4229.645/3.541 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.058 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.058/0.058/0.058/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.052 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.052/0.052/0.052/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 788134998 6305.080 100.00% Conn: 1 Mbps: 6305.080 Peak Mbps: 6305.080 Avg Mbps: 6305.080 2000 788782760 6316.579 100.00% Conn: 1 Mbps: 6316.579 Peak Mbps: 6316.579 Avg Mbps: 6316.579 3000 788095724 6304.766 100.00% Conn: 1 Mbps: 6304.766 Peak Mbps: 6316.579 Avg Mbps: 6304.766 4000 787768564 6302.149 100.00% Conn: 1 Mbps: 6302.149 Peak Mbps: 6316.579 Avg Mbps: 6302.149 5000 788422884 6307.383 100.00% Conn: 1 Mbps: 6307.383 Peak Mbps: 6316.579 Avg Mbps: 6307.383 --- 169.254.0.13 tcpbench statistics --- 4729038926 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6302.149/6307.191/6316.579/4.979 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 778157668 6225.261 100.00% Conn: 1 Mbps: 6225.261 Peak Mbps: 6225.261 Avg Mbps: 6225.261 2000 780028472 6246.474 100.00% Conn: 1 Mbps: 6246.474 Peak Mbps: 6246.474 Avg Mbps: 6246.474 3000 779897688 6239.182 100.00% Conn: 1 Mbps: 6239.182 Peak Mbps: 6246.474 Avg Mbps: 6239.182 4000 780551608 6244.413 100.00% Conn: 1 Mbps: 6244.413 Peak Mbps: 6246.474 Avg Mbps: 6244.413 5000 779995776 6239.966 100.00% Conn: 1 Mbps: 6239.966 Peak Mbps: 6246.474 Avg Mbps: 6239.966 --- fc00::13 tcpbench statistics --- 4678201940 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6225.261/6239.059/6246.474/7.414 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.049 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-ping6-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 272701992 2179.436 100.00% Conn: 1 Mbps: 2179.436 Peak Mbps: 2179.436 Avg Mbps: 2179.436 2001 282680040 2261.440 100.00% Conn: 1 Mbps: 2261.440 Peak Mbps: 2261.440 Avg Mbps: 2261.440 3002 283865232 2270.922 100.00% Conn: 1 Mbps: 2270.922 Peak Mbps: 2270.922 Avg Mbps: 2270.922 4003 282717024 2261.736 100.00% Conn: 1 Mbps: 2261.736 Peak Mbps: 2270.922 Avg Mbps: 2261.736 5003 284914696 2279.318 100.00% Conn: 1 Mbps: 2279.318 Peak Mbps: 2279.318 Avg Mbps: 2279.318 --- 169.254.1.11 tcpbench statistics --- 1690739208 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2179.436/2250.570/2279.318/36.176 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 540943136 4327.545 100.00% Conn: 1 Mbps: 4327.545 Peak Mbps: 4327.545 Avg Mbps: 4327.545 2000 608839528 4870.716 100.00% Conn: 1 Mbps: 4870.716 Peak Mbps: 4870.716 Avg Mbps: 4870.716 3000 592797664 4742.381 100.00% Conn: 1 Mbps: 4742.381 Peak Mbps: 4870.716 Avg Mbps: 4742.381 4001 602272400 4818.179 100.00% Conn: 1 Mbps: 4818.179 Peak Mbps: 4870.716 Avg Mbps: 4818.179 5001 601565912 4812.527 100.00% Conn: 1 Mbps: 4812.527 Peak Mbps: 4870.716 Avg Mbps: 4812.527 --- fc00:0:0:1::11 tcpbench statistics --- 3545444128 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4327.545/4714.270/4870.716/197.623 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.064 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.064/0.064/0.064/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 791597510 6332.780 100.00% Conn: 1 Mbps: 6332.780 Peak Mbps: 6332.780 Avg Mbps: 6332.780 2000 789830908 6324.972 100.00% Conn: 1 Mbps: 6324.972 Peak Mbps: 6332.780 Avg Mbps: 6324.972 3000 788357452 6306.860 100.00% Conn: 1 Mbps: 6306.860 Peak Mbps: 6332.780 Avg Mbps: 6306.860 4000 788357452 6306.860 100.00% Conn: 1 Mbps: 6306.860 Peak Mbps: 6332.780 Avg Mbps: 6306.860 5000 788422884 6307.383 100.00% Conn: 1 Mbps: 6307.383 Peak Mbps: 6332.780 Avg Mbps: 6307.383 --- 169.254.1.12 tcpbench statistics --- 4735872422 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6306.860/6315.771/6332.780/10.983 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 773653004 6189.224 100.00% Conn: 1 Mbps: 6189.224 Peak Mbps: 6189.224 Avg Mbps: 6189.224 2000 773816232 6196.727 100.00% Conn: 1 Mbps: 6196.727 Peak Mbps: 6196.727 Avg Mbps: 6196.727 3000 773521968 6188.176 100.00% Conn: 1 Mbps: 6188.176 Peak Mbps: 6196.727 Avg Mbps: 6188.176 4000 775810688 6206.486 100.00% Conn: 1 Mbps: 6206.486 Peak Mbps: 6206.486 Avg Mbps: 6206.486 5000 777314704 6218.518 100.00% Conn: 1 Mbps: 6218.518 Peak Mbps: 6218.518 Avg Mbps: 6218.518 --- fc00:0:0:1::12 tcpbench statistics --- 4651071644 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6188.176/6199.826/6218.518/11.415 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.052 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.052/0.052/0.052/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 789289814 6314.319 100.00% Conn: 1 Mbps: 6314.319 Peak Mbps: 6314.319 Avg Mbps: 6314.319 2000 788095724 6311.077 100.00% Conn: 1 Mbps: 6311.077 Peak Mbps: 6314.319 Avg Mbps: 6311.077 3000 788390168 6307.121 100.00% Conn: 1 Mbps: 6307.121 Peak Mbps: 6314.319 Avg Mbps: 6307.121 4000 788848192 6310.786 100.00% Conn: 1 Mbps: 6310.786 Peak Mbps: 6314.319 Avg Mbps: 6310.786 5000 788848192 6310.786 100.00% Conn: 1 Mbps: 6310.786 Peak Mbps: 6314.319 Avg Mbps: 6310.786 --- 169.254.0.13 tcpbench statistics --- 4731731394 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6307.121/6310.818/6314.319/2.280 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 799008788 6392.070 100.00% Conn: 1 Mbps: 6392.070 Peak Mbps: 6392.070 Avg Mbps: 6392.070 2000 797651616 6387.601 100.00% Conn: 1 Mbps: 6387.601 Peak Mbps: 6392.070 Avg Mbps: 6387.601 3000 797324656 6384.982 100.00% Conn: 1 Mbps: 6384.982 Peak Mbps: 6392.070 Avg Mbps: 6384.982 4000 796965000 6375.720 100.00% Conn: 1 Mbps: 6375.720 Peak Mbps: 6392.070 Avg Mbps: 6375.720 5000 797226568 6377.813 100.00% Conn: 1 Mbps: 6377.813 Peak Mbps: 6392.070 Avg Mbps: 6377.813 --- fc00::13 tcpbench statistics --- 4785435892 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6375.720/6383.637/6392.070/6.087 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.83s