START sys/net/pair 2025-03-19T04:56:55Z ==== 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.039 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.039/0.039/0.039/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.042 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.042/0.042/0.042/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 529169892 4233.359 100.00% Conn: 1 Mbps: 4233.359 Peak Mbps: 4233.359 Avg Mbps: 4233.359 2000 527445176 4223.785 100.00% Conn: 1 Mbps: 4223.785 Peak Mbps: 4233.359 Avg Mbps: 4223.785 3000 526864972 4214.920 100.00% Conn: 1 Mbps: 4214.920 Peak Mbps: 4233.359 Avg Mbps: 4214.920 4000 527508760 4220.070 100.00% Conn: 1 Mbps: 4220.070 Peak Mbps: 4233.359 Avg Mbps: 4220.070 5000 526960348 4215.683 100.00% Conn: 1 Mbps: 4215.683 Peak Mbps: 4233.359 Avg Mbps: 4215.683 --- 169.254.1.11 tcpbench statistics --- 3164925392 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4214.920/4221.563/4233.359/6.709 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 519228504 4153.828 100.00% Conn: 1 Mbps: 4153.828 Peak Mbps: 4153.828 Avg Mbps: 4153.828 2000 517833176 4146.812 100.00% Conn: 1 Mbps: 4146.812 Peak Mbps: 4153.828 Avg Mbps: 4146.812 3000 518372280 4146.978 100.00% Conn: 1 Mbps: 4146.978 Peak Mbps: 4153.828 Avg Mbps: 4146.978 4000 518277144 4146.217 100.00% Conn: 1 Mbps: 4146.217 Peak Mbps: 4153.828 Avg Mbps: 4146.217 5000 518174080 4145.393 100.00% Conn: 1 Mbps: 4145.393 Peak Mbps: 4153.828 Avg Mbps: 4145.393 --- fc00:0:0:1::11 tcpbench statistics --- 3109440880 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4145.393/4147.846/4153.828/3.042 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.073 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.073/0.073/0.073/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.141 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.141/0.141/0.141/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 276041200 2208.330 100.00% Conn: 1 Mbps: 2208.330 Peak Mbps: 2208.330 Avg Mbps: 2208.330 2001 287401256 2299.210 100.00% Conn: 1 Mbps: 2299.210 Peak Mbps: 2299.210 Avg Mbps: 2299.210 3001 290020184 2320.161 100.00% Conn: 1 Mbps: 2320.161 Peak Mbps: 2320.161 Avg Mbps: 2320.161 4001 286783904 2294.271 100.00% Conn: 1 Mbps: 2294.271 Peak Mbps: 2320.161 Avg Mbps: 2294.271 5002 289718176 2317.745 100.00% Conn: 1 Mbps: 2317.745 Peak Mbps: 2320.161 Avg Mbps: 2317.745 --- 169.254.1.12 tcpbench statistics --- 1718485400 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2208.330/2287.944/2320.161/41.065 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 256789416 2054.315 100.00% Conn: 1 Mbps: 2054.315 Peak Mbps: 2054.315 Avg Mbps: 2054.315 2001 267927404 2143.419 100.00% Conn: 1 Mbps: 2143.419 Peak Mbps: 2143.419 Avg Mbps: 2143.419 3001 272732384 2184.043 100.00% Conn: 1 Mbps: 2184.043 Peak Mbps: 2184.043 Avg Mbps: 2184.043 4002 275780968 2204.044 100.00% Conn: 1 Mbps: 2204.044 Peak Mbps: 2204.044 Avg Mbps: 2204.044 5004 276707188 2209.239 100.00% Conn: 1 Mbps: 2209.239 Peak Mbps: 2209.239 Avg Mbps: 2209.239 --- fc00:0:0:1::12 tcpbench statistics --- 1625754352 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2054.315/2159.012/2209.239/57.239 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.075 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.075/0.075/0.075/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 571625308 4573.002 100.00% Conn: 1 Mbps: 4573.002 Peak Mbps: 4573.002 Avg Mbps: 4573.002 2000 580449828 4648.247 100.00% Conn: 1 Mbps: 4648.247 Peak Mbps: 4648.247 Avg Mbps: 4648.247 3000 574837000 4598.696 100.00% Conn: 1 Mbps: 4598.696 Peak Mbps: 4648.247 Avg Mbps: 4598.696 4000 545979772 4367.838 100.00% Conn: 1 Mbps: 4367.838 Peak Mbps: 4648.247 Avg Mbps: 4367.838 5000 517430696 4143.589 100.00% Conn: 1 Mbps: 4143.589 Peak Mbps: 4648.247 Avg Mbps: 4143.589 --- 169.254.0.13 tcpbench statistics --- 3314636268 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4143.589/4466.275/4648.247/187.540 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 600501560 4799.213 100.00% Conn: 1 Mbps: 4799.213 Peak Mbps: 4799.213 Avg Mbps: 4799.213 2001 643275720 5146.206 100.00% Conn: 1 Mbps: 5146.206 Peak Mbps: 5146.206 Avg Mbps: 5146.206 3001 642471744 5139.774 100.00% Conn: 1 Mbps: 5139.774 Peak Mbps: 5146.206 Avg Mbps: 5139.774 4001 640944368 5127.555 100.00% Conn: 1 Mbps: 5127.555 Peak Mbps: 5146.206 Avg Mbps: 5127.555 5002 640280368 5122.243 100.00% Conn: 1 Mbps: 5122.243 Peak Mbps: 5146.206 Avg Mbps: 5122.243 --- fc00::13 tcpbench statistics --- 3810852024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4799.213/5066.998/5146.206/134.163 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.052 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.052/0.052/0.052/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 273665848 2189.327 100.00% Conn: 1 Mbps: 2189.327 Peak Mbps: 2189.327 Avg Mbps: 2189.327 2001 284792728 2278.342 100.00% Conn: 1 Mbps: 2278.342 Peak Mbps: 2278.342 Avg Mbps: 2278.342 3001 287201704 2299.914 100.00% Conn: 1 Mbps: 2299.914 Peak Mbps: 2299.914 Avg Mbps: 2299.914 4001 286807408 2294.459 100.00% Conn: 1 Mbps: 2294.459 Peak Mbps: 2299.914 Avg Mbps: 2294.459 5001 288029912 2304.239 100.00% Conn: 1 Mbps: 2304.239 Peak Mbps: 2304.239 Avg Mbps: 2304.239 --- 169.254.1.11 tcpbench statistics --- 1707033224 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2189.327/2273.256/2304.239/42.872 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 255517208 2044.138 100.00% Conn: 1 Mbps: 2044.138 Peak Mbps: 2044.138 Avg Mbps: 2044.138 2001 269968088 2159.745 100.00% Conn: 1 Mbps: 2159.745 Peak Mbps: 2159.745 Avg Mbps: 2159.745 3000 268756408 2152.203 100.00% Conn: 1 Mbps: 2152.203 Peak Mbps: 2159.745 Avg Mbps: 2152.203 4002 271273860 2168.023 100.00% Conn: 1 Mbps: 2168.023 Peak Mbps: 2168.023 Avg Mbps: 2168.023 5003 274382092 2192.864 100.00% Conn: 1 Mbps: 2192.864 Peak Mbps: 2192.864 Avg Mbps: 2192.864 --- fc00:0:0:1::11 tcpbench statistics --- 1610659868 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2044.138/2143.395/2192.864/51.479 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.041 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.041/0.041/0.041/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.044 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.044/0.044/0.044/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 527609208 4220.874 100.00% Conn: 1 Mbps: 4220.874 Peak Mbps: 4220.874 Avg Mbps: 4220.874 2000 527696088 4225.794 100.00% Conn: 1 Mbps: 4225.794 Peak Mbps: 4225.794 Avg Mbps: 4225.794 3000 528990600 4231.925 100.00% Conn: 1 Mbps: 4231.925 Peak Mbps: 4231.925 Avg Mbps: 4231.925 4000 527727944 4221.824 100.00% Conn: 1 Mbps: 4221.824 Peak Mbps: 4231.925 Avg Mbps: 4221.824 5000 527187840 4217.503 100.00% Conn: 1 Mbps: 4217.503 Peak Mbps: 4231.925 Avg Mbps: 4217.503 --- 169.254.1.12 tcpbench statistics --- 3166580520 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4217.503/4223.584/4231.925/4.937 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 519163680 4153.309 100.00% Conn: 1 Mbps: 4153.309 Peak Mbps: 4153.309 Avg Mbps: 4153.309 2000 518782404 4154.414 100.00% Conn: 1 Mbps: 4154.414 Peak Mbps: 4154.414 Avg Mbps: 4154.414 3000 518129808 4145.038 100.00% Conn: 1 Mbps: 4145.038 Peak Mbps: 4154.414 Avg Mbps: 4145.038 4000 518092680 4144.741 100.00% Conn: 1 Mbps: 4144.741 Peak Mbps: 4154.414 Avg Mbps: 4144.741 5000 519162252 4153.298 100.00% Conn: 1 Mbps: 4153.298 Peak Mbps: 4154.414 Avg Mbps: 4153.298 --- fc00:0:0:1::12 tcpbench statistics --- 3111654840 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4144.741/4150.160/4154.414/4.323 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.045 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.045/0.045/0.045/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 786858670 6294.869 100.00% Conn: 1 Mbps: 6294.869 Peak Mbps: 6294.869 Avg Mbps: 6294.869 2000 787277824 6304.527 100.00% Conn: 1 Mbps: 6304.527 Peak Mbps: 6304.527 Avg Mbps: 6304.527 3000 788161156 6305.289 100.00% Conn: 1 Mbps: 6305.289 Peak Mbps: 6305.289 Avg Mbps: 6305.289 4000 788030292 6304.242 100.00% Conn: 1 Mbps: 6304.242 Peak Mbps: 6305.289 Avg Mbps: 6304.242 5000 789142636 6313.141 100.00% Conn: 1 Mbps: 6313.141 Peak Mbps: 6313.141 Avg Mbps: 6313.141 --- 169.254.0.13 tcpbench statistics --- 4727206426 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6294.869/6304.414/6313.141/5.798 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 765062668 6120.501 100.00% Conn: 1 Mbps: 6120.501 Peak Mbps: 6120.501 Avg Mbps: 6120.501 2000 766623112 6139.124 100.00% Conn: 1 Mbps: 6139.124 Peak Mbps: 6139.124 Avg Mbps: 6139.124 3000 766001888 6128.015 100.00% Conn: 1 Mbps: 6128.015 Peak Mbps: 6139.124 Avg Mbps: 6128.015 4000 765773016 6126.184 100.00% Conn: 1 Mbps: 6126.184 Peak Mbps: 6139.124 Avg Mbps: 6126.184 5000 765805712 6126.446 100.00% Conn: 1 Mbps: 6126.446 Peak Mbps: 6139.124 Avg Mbps: 6126.446 --- fc00::13 tcpbench statistics --- 4594156620 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6120.501/6128.054/6139.124/6.094 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.057 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.057/0.057/0.057/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 274781704 2198.254 100.00% Conn: 1 Mbps: 2198.254 Peak Mbps: 2198.254 Avg Mbps: 2198.254 2001 283678832 2269.431 100.00% Conn: 1 Mbps: 2269.431 Peak Mbps: 2269.431 Avg Mbps: 2269.431 3001 281888216 2255.106 100.00% Conn: 1 Mbps: 2255.106 Peak Mbps: 2269.431 Avg Mbps: 2255.106 4002 281453872 2251.631 100.00% Conn: 1 Mbps: 2251.631 Peak Mbps: 2269.431 Avg Mbps: 2251.631 5003 283895968 2271.168 100.00% Conn: 1 Mbps: 2271.168 Peak Mbps: 2271.168 Avg Mbps: 2271.168 --- 169.254.1.11 tcpbench statistics --- 1688280168 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2198.254/2249.118/2271.168/26.564 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 541480648 4331.845 100.00% Conn: 1 Mbps: 4331.845 Peak Mbps: 4331.845 Avg Mbps: 4331.845 2000 608829128 4870.633 100.00% Conn: 1 Mbps: 4870.633 Peak Mbps: 4870.633 Avg Mbps: 4870.633 3000 609529000 4881.113 100.00% Conn: 1 Mbps: 4881.113 Peak Mbps: 4881.113 Avg Mbps: 4881.113 4000 607231424 4857.851 100.00% Conn: 1 Mbps: 4857.851 Peak Mbps: 4881.113 Avg Mbps: 4857.851 5000 615757680 4926.061 100.00% Conn: 1 Mbps: 4926.061 Peak Mbps: 4926.061 Avg Mbps: 4926.061 --- fc00:0:0:1::11 tcpbench statistics --- 3584530216 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4331.845/4773.501/4926.061/222.020 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.048 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.048/0.048/0.048/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.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-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 773966574 6191.733 100.00% Conn: 1 Mbps: 6191.733 Peak Mbps: 6191.733 Avg Mbps: 6191.733 2000 779949440 6245.841 100.00% Conn: 1 Mbps: 6245.841 Peak Mbps: 6245.841 Avg Mbps: 6245.841 3000 780701908 6245.615 100.00% Conn: 1 Mbps: 6245.615 Peak Mbps: 6245.841 Avg Mbps: 6245.615 4000 781388944 6251.112 100.00% Conn: 1 Mbps: 6251.112 Peak Mbps: 6251.112 Avg Mbps: 6251.112 5000 780538328 6244.307 100.00% Conn: 1 Mbps: 6244.307 Peak Mbps: 6251.112 Avg Mbps: 6244.307 --- 169.254.1.12 tcpbench statistics --- 4675938462 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6191.733/6235.721/6251.112/22.117 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 766268676 6130.149 100.00% Conn: 1 Mbps: 6130.149 Peak Mbps: 6130.149 Avg Mbps: 6130.149 2000 766034584 6134.411 100.00% Conn: 1 Mbps: 6134.411 Peak Mbps: 6134.411 Avg Mbps: 6134.411 3000 765151792 6121.214 100.00% Conn: 1 Mbps: 6121.214 Peak Mbps: 6134.411 Avg Mbps: 6121.214 4000 767015464 6136.124 100.00% Conn: 1 Mbps: 6136.124 Peak Mbps: 6136.124 Avg Mbps: 6136.124 5000 766361544 6130.892 100.00% Conn: 1 Mbps: 6130.892 Peak Mbps: 6136.124 Avg Mbps: 6130.892 --- fc00:0:0:1::12 tcpbench statistics --- 4597160908 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6121.214/6130.558/6136.124/5.165 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.044 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-3-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 791193770 6329.550 100.00% Conn: 1 Mbps: 6329.550 Peak Mbps: 6329.550 Avg Mbps: 6329.550 2000 791498188 6338.324 100.00% Conn: 1 Mbps: 6338.324 Peak Mbps: 6338.324 Avg Mbps: 6338.324 3000 791596336 6332.771 100.00% Conn: 1 Mbps: 6332.771 Peak Mbps: 6338.324 Avg Mbps: 6332.771 4000 791138312 6329.106 100.00% Conn: 1 Mbps: 6329.106 Peak Mbps: 6338.324 Avg Mbps: 6329.106 5000 791923496 6335.388 100.00% Conn: 1 Mbps: 6335.388 Peak Mbps: 6338.324 Avg Mbps: 6335.388 --- 169.254.0.13 tcpbench statistics --- 4748946438 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6329.106/6333.028/6338.324/3.497 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 796156492 6369.252 100.00% Conn: 1 Mbps: 6369.252 Peak Mbps: 6369.252 Avg Mbps: 6369.252 2000 795886032 6373.462 100.00% Conn: 1 Mbps: 6373.462 Peak Mbps: 6373.462 Avg Mbps: 6373.462 3000 794774368 6358.195 100.00% Conn: 1 Mbps: 6358.195 Peak Mbps: 6373.462 Avg Mbps: 6358.195 4000 796899608 6375.197 100.00% Conn: 1 Mbps: 6375.197 Peak Mbps: 6375.197 Avg Mbps: 6375.197 5000 796670736 6379.746 100.00% Conn: 1 Mbps: 6379.746 Peak Mbps: 6379.746 Avg Mbps: 6379.746 --- fc00::13 tcpbench statistics --- 4775684740 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6358.195/6371.170/6379.746/7.308 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.87s