START sys/net/pair 2025-03-07T02:47:18Z ==== 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.041 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.041/0.041/0.041/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.046 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.046/0.046/0.046/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 933675404 7469.403 100.00% Conn: 1 Mbps: 7469.403 Peak Mbps: 7469.403 Avg Mbps: 7469.403 2000 936353880 7498.329 100.00% Conn: 1 Mbps: 7498.329 Peak Mbps: 7498.329 Avg Mbps: 7498.329 3000 935741884 7485.935 100.00% Conn: 1 Mbps: 7485.935 Peak Mbps: 7498.329 Avg Mbps: 7485.935 4000 935495496 7483.964 100.00% Conn: 1 Mbps: 7483.964 Peak Mbps: 7498.329 Avg Mbps: 7483.964 5000 936870500 7494.964 100.00% Conn: 1 Mbps: 7494.964 Peak Mbps: 7498.329 Avg Mbps: 7494.964 --- 169.254.1.11 tcpbench statistics --- 5613529336 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7469.403/7486.519/7498.329/10.106 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 942647128 7541.177 100.00% Conn: 1 Mbps: 7541.177 Peak Mbps: 7541.177 Avg Mbps: 7541.177 2000 941806760 7541.996 100.00% Conn: 1 Mbps: 7541.996 Peak Mbps: 7541.996 Avg Mbps: 7541.996 3000 942615416 7540.923 100.00% Conn: 1 Mbps: 7540.923 Peak Mbps: 7541.996 Avg Mbps: 7540.923 4000 940934680 7527.477 100.00% Conn: 1 Mbps: 7527.477 Peak Mbps: 7541.996 Avg Mbps: 7527.477 5000 935852832 7486.823 100.00% Conn: 1 Mbps: 7486.823 Peak Mbps: 7541.996 Avg Mbps: 7486.823 --- fc00:0:0:1::11 tcpbench statistics --- 5646527728 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7486.823/7527.679/7541.996/21.128 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.067 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.067/0.067/0.067/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.127 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.127/0.127/0.127/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 373308472 2983.484 100.00% Conn: 1 Mbps: 2983.484 Peak Mbps: 2983.484 Avg Mbps: 2983.484 2001 386138112 3089.105 100.00% Conn: 1 Mbps: 3089.105 Peak Mbps: 3089.105 Avg Mbps: 3089.105 3002 387186688 3097.494 100.00% Conn: 1 Mbps: 3097.494 Peak Mbps: 3097.494 Avg Mbps: 3097.494 4002 386353136 3093.919 100.00% Conn: 1 Mbps: 3093.919 Peak Mbps: 3097.494 Avg Mbps: 3093.919 5002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3097.494 Avg Mbps: 3047.162 --- 169.254.1.12 tcpbench statistics --- 2296874024 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2983.484/3062.233/3097.494/43.354 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 352618512 2820.948 100.00% Conn: 1 Mbps: 2820.948 Peak Mbps: 2820.948 Avg Mbps: 2820.948 2001 361496576 2891.973 100.00% Conn: 1 Mbps: 2891.973 Peak Mbps: 2891.973 Avg Mbps: 2891.973 3001 360448000 2883.584 100.00% Conn: 1 Mbps: 2883.584 Peak Mbps: 2891.973 Avg Mbps: 2883.584 4001 360185856 2881.487 100.00% Conn: 1 Mbps: 2881.487 Peak Mbps: 2891.973 Avg Mbps: 2881.487 5002 363069440 2904.556 100.00% Conn: 1 Mbps: 2904.556 Peak Mbps: 2904.556 Avg Mbps: 2904.556 --- fc00:0:0:1::12 tcpbench statistics --- 2158790672 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2820.948/2876.509/2904.556/28.940 Mbps ==== run-ping-1-3 ==== /sbin/ping -c 1 -w 1 -n -V 11 -I 169.254.1.11 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=254 time=0.056 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.056/0.056/0.056/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.069 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.069/0.069/0.069/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 765829400 6126.635 100.00% Conn: 1 Mbps: 6126.635 Peak Mbps: 6126.635 Avg Mbps: 6126.635 2000 809495852 6475.967 100.00% Conn: 1 Mbps: 6475.967 Peak Mbps: 6475.967 Avg Mbps: 6475.967 3000 808144552 6465.156 100.00% Conn: 1 Mbps: 6465.156 Peak Mbps: 6475.967 Avg Mbps: 6465.156 4000 798861148 6390.889 100.00% Conn: 1 Mbps: 6390.889 Peak Mbps: 6475.967 Avg Mbps: 6390.889 5000 801619384 6412.955 100.00% Conn: 1 Mbps: 6412.955 Peak Mbps: 6475.967 Avg Mbps: 6412.955 --- 169.254.0.13 tcpbench statistics --- 4786249740 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6126.635/6374.321/6475.967/127.827 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 704958280 5639.666 100.00% Conn: 1 Mbps: 5639.666 Peak Mbps: 5639.666 Avg Mbps: 5639.666 2000 748949712 5997.595 100.00% Conn: 1 Mbps: 5997.595 Peak Mbps: 5997.595 Avg Mbps: 5997.595 3001 754539944 6036.320 100.00% Conn: 1 Mbps: 6036.320 Peak Mbps: 6036.320 Avg Mbps: 6036.320 4001 753318560 6026.548 100.00% Conn: 1 Mbps: 6026.548 Peak Mbps: 6036.320 Avg Mbps: 6026.548 5002 750868808 6006.950 100.00% Conn: 1 Mbps: 6006.950 Peak Mbps: 6036.320 Avg Mbps: 6006.950 --- fc00::13 tcpbench statistics --- 4458406408 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5639.666/5941.416/6036.320/151.498 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 373212448 2982.717 100.00% Conn: 1 Mbps: 2982.717 Peak Mbps: 2982.717 Avg Mbps: 2982.717 2001 382730240 3061.842 100.00% Conn: 1 Mbps: 3061.842 Peak Mbps: 3061.842 Avg Mbps: 3061.842 3001 382724760 3061.798 100.00% Conn: 1 Mbps: 3061.798 Peak Mbps: 3061.842 Avg Mbps: 3061.798 4001 384303104 3074.425 100.00% Conn: 1 Mbps: 3074.425 Peak Mbps: 3074.425 Avg Mbps: 3074.425 5002 386924544 3095.396 100.00% Conn: 1 Mbps: 3095.396 Peak Mbps: 3095.396 Avg Mbps: 3095.396 --- 169.254.1.11 tcpbench statistics --- 2290528184 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2982.717/3055.236/3095.396/38.280 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 351619812 2812.958 100.00% Conn: 1 Mbps: 2812.958 Peak Mbps: 2812.958 Avg Mbps: 2812.958 2001 358612992 2868.904 100.00% Conn: 1 Mbps: 2868.904 Peak Mbps: 2868.904 Avg Mbps: 2868.904 3001 360376768 2883.014 100.00% Conn: 1 Mbps: 2883.014 Peak Mbps: 2883.014 Avg Mbps: 2883.014 4002 360710144 2885.681 100.00% Conn: 1 Mbps: 2885.681 Peak Mbps: 2885.681 Avg Mbps: 2885.681 5002 360185856 2881.487 100.00% Conn: 1 Mbps: 2881.487 Peak Mbps: 2885.681 Avg Mbps: 2881.487 --- fc00:0:0:1::11 tcpbench statistics --- 2151429284 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2812.958/2866.409/2885.681/27.341 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.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 930064880 7440.519 100.00% Conn: 1 Mbps: 7440.519 Peak Mbps: 7440.519 Avg Mbps: 7440.519 2000 930629600 7452.489 100.00% Conn: 1 Mbps: 7452.489 Peak Mbps: 7452.489 Avg Mbps: 7452.489 3000 929908496 7439.268 100.00% Conn: 1 Mbps: 7439.268 Peak Mbps: 7452.489 Avg Mbps: 7439.268 4000 931281200 7450.250 100.00% Conn: 1 Mbps: 7450.250 Peak Mbps: 7452.489 Avg Mbps: 7450.250 5000 931119024 7448.952 100.00% Conn: 1 Mbps: 7448.952 Peak Mbps: 7452.489 Avg Mbps: 7448.952 --- 169.254.1.12 tcpbench statistics --- 5583237496 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7439.268/7446.296/7452.489/5.363 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 918702372 7349.619 100.00% Conn: 1 Mbps: 7349.619 Peak Mbps: 7349.619 Avg Mbps: 7349.619 2000 916691748 7340.875 100.00% Conn: 1 Mbps: 7340.875 Peak Mbps: 7349.619 Avg Mbps: 7340.875 3000 913981404 7311.851 100.00% Conn: 1 Mbps: 7311.851 Peak Mbps: 7349.619 Avg Mbps: 7311.851 4000 914819640 7318.557 100.00% Conn: 1 Mbps: 7318.557 Peak Mbps: 7349.619 Avg Mbps: 7318.557 5000 914356968 7314.856 100.00% Conn: 1 Mbps: 7314.856 Peak Mbps: 7349.619 Avg Mbps: 7314.856 --- fc00:0:0:1::12 tcpbench statistics --- 5494662684 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7311.851/7327.152/7349.619/15.181 Mbps ==== run-ping-2-3 ==== /sbin/ping -c 1 -w 1 -n -V 12 -I 169.254.1.12 169.254.0.13 PING 169.254.0.13 (169.254.0.13): 56 data bytes 64 bytes from 169.254.0.13: icmp_seq=0 ttl=255 time=0.040 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.040/0.040/0.040/0.000 ms ==== run-ping6-2-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 12 -I fc00:0:0:1::12 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=64 time=0.047 ms --- fc00::13 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-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 1287925562 10303.404 100.00% Conn: 1 Mbps: 10303.404 Peak Mbps: 10303.404 Avg Mbps: 10303.404 2000 1293296196 10356.726 100.00% Conn: 1 Mbps: 10356.726 Peak Mbps: 10356.726 Avg Mbps: 10356.726 3000 1292020272 10336.162 100.00% Conn: 1 Mbps: 10336.162 Peak Mbps: 10356.726 Avg Mbps: 10336.162 4000 1290253608 10322.029 100.00% Conn: 1 Mbps: 10322.029 Peak Mbps: 10356.726 Avg Mbps: 10322.029 5000 1290319040 10322.552 100.00% Conn: 1 Mbps: 10322.552 Peak Mbps: 10356.726 Avg Mbps: 10322.552 --- 169.254.0.13 tcpbench statistics --- 7746423838 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10303.404/10328.175/10356.726/17.674 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 1248821556 9990.572 100.00% Conn: 1 Mbps: 9990.572 Peak Mbps: 9990.572 Avg Mbps: 9990.572 2000 1256147624 10059.240 100.00% Conn: 1 Mbps: 10059.240 Peak Mbps: 10059.240 Avg Mbps: 10059.240 3000 1251472096 10011.777 100.00% Conn: 1 Mbps: 10011.777 Peak Mbps: 10059.240 Avg Mbps: 10011.777 4000 1252681848 10021.455 100.00% Conn: 1 Mbps: 10021.455 Peak Mbps: 10059.240 Avg Mbps: 10021.455 5000 1250327736 10002.622 100.00% Conn: 1 Mbps: 10002.622 Peak Mbps: 10059.240 Avg Mbps: 10002.622 --- fc00::13 tcpbench statistics --- 7516710148 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9990.572/10017.133/10059.240/23.394 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.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-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.054 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.054/0.054/0.054/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 375173120 2998.387 100.00% Conn: 1 Mbps: 2998.387 Peak Mbps: 2998.387 Avg Mbps: 2998.387 2001 381157376 3052.311 100.00% Conn: 1 Mbps: 3052.311 Peak Mbps: 3052.311 Avg Mbps: 3052.311 3001 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3052.311 Avg Mbps: 3045.065 4001 379584512 3036.676 100.00% Conn: 1 Mbps: 3036.676 Peak Mbps: 3052.311 Avg Mbps: 3036.676 5001 387297424 3098.379 100.00% Conn: 1 Mbps: 3098.379 Peak Mbps: 3098.379 Avg Mbps: 3098.379 --- 169.254.1.11 tcpbench statistics --- 2283430032 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2998.387/3046.164/3098.379/32.057 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 844840256 6758.722 100.00% Conn: 1 Mbps: 6758.722 Peak Mbps: 6758.722 Avg Mbps: 6758.722 2000 897844088 7189.943 100.00% Conn: 1 Mbps: 7189.943 Peak Mbps: 7189.943 Avg Mbps: 7189.943 3000 904921088 7239.369 100.00% Conn: 1 Mbps: 7239.369 Peak Mbps: 7239.369 Avg Mbps: 7239.369 4000 888971432 7111.771 100.00% Conn: 1 Mbps: 7111.771 Peak Mbps: 7239.369 Avg Mbps: 7111.771 5000 919245904 7353.967 100.00% Conn: 1 Mbps: 7353.967 Peak Mbps: 7353.967 Avg Mbps: 7353.967 --- fc00:0:0:1::11 tcpbench statistics --- 5353157472 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6758.722/7130.754/7353.967/201.937 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.043 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.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 1274485594 10195.885 100.00% Conn: 1 Mbps: 10195.885 Peak Mbps: 10195.885 Avg Mbps: 10195.885 2000 1276938196 10225.731 100.00% Conn: 1 Mbps: 10225.731 Peak Mbps: 10225.731 Avg Mbps: 10225.731 3000 1276382024 10211.056 100.00% Conn: 1 Mbps: 10211.056 Peak Mbps: 10225.731 Avg Mbps: 10211.056 4000 1277788812 10222.310 100.00% Conn: 1 Mbps: 10222.310 Peak Mbps: 10225.731 Avg Mbps: 10222.310 5000 1276938196 10215.506 100.00% Conn: 1 Mbps: 10215.506 Peak Mbps: 10225.731 Avg Mbps: 10215.506 --- 169.254.1.12 tcpbench statistics --- 7659716388 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10195.885/10214.098/10225.731/10.447 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 1263602452 10108.820 100.00% Conn: 1 Mbps: 10108.820 Peak Mbps: 10108.820 Avg Mbps: 10108.820 2000 1266119904 10139.098 100.00% Conn: 1 Mbps: 10139.098 Peak Mbps: 10139.098 Avg Mbps: 10139.098 3000 1275176696 10201.414 100.00% Conn: 1 Mbps: 10201.414 Peak Mbps: 10201.414 Avg Mbps: 10201.414 4000 1274588168 10196.705 100.00% Conn: 1 Mbps: 10196.705 Peak Mbps: 10201.414 Avg Mbps: 10196.705 5000 1273901552 10191.212 100.00% Conn: 1 Mbps: 10191.212 Peak Mbps: 10201.414 Avg Mbps: 10191.212 --- fc00:0:0:1::12 tcpbench statistics --- 7629284780 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10108.820/10167.450/10201.414/36.920 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.040 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.040/0.040/0.040/0.000 ms ==== run-ping6-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.043 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-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 1272067416 10176.539 100.00% Conn: 1 Mbps: 10176.539 Peak Mbps: 10176.539 Avg Mbps: 10176.539 2000 1276578320 10222.849 100.00% Conn: 1 Mbps: 10222.849 Peak Mbps: 10222.849 Avg Mbps: 10222.849 3000 1275907642 10207.261 100.00% Conn: 1 Mbps: 10207.261 Peak Mbps: 10222.849 Avg Mbps: 10207.261 4000 1278623070 10228.985 100.00% Conn: 1 Mbps: 10228.985 Peak Mbps: 10228.985 Avg Mbps: 10228.985 5000 1276382024 10211.056 100.00% Conn: 1 Mbps: 10211.056 Peak Mbps: 10228.985 Avg Mbps: 10211.056 --- 169.254.0.13 tcpbench statistics --- 7655875064 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10176.539/10209.338/10228.985/18.175 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 1282452012 10259.616 100.00% Conn: 1 Mbps: 10259.616 Peak Mbps: 10259.616 Avg Mbps: 10259.616 2000 1286522208 10302.480 100.00% Conn: 1 Mbps: 10302.480 Peak Mbps: 10302.480 Avg Mbps: 10302.480 3000 1282991040 10263.928 100.00% Conn: 1 Mbps: 10263.928 Peak Mbps: 10302.480 Avg Mbps: 10263.928 4000 1286129856 10289.039 100.00% Conn: 1 Mbps: 10289.039 Peak Mbps: 10302.480 Avg Mbps: 10289.039 5000 1277236544 10217.892 100.00% Conn: 1 Mbps: 10217.892 Peak Mbps: 10302.480 Avg Mbps: 10217.892 --- fc00::13 tcpbench statistics --- 7701951956 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10217.892/10266.591/10302.480/29.049 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m51.88s