START sys/net/pair 2025-03-05T02:44:39Z ==== 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.042 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.042/0.042/0.042/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 923311212 7386.490 100.00% Conn: 1 Mbps: 7386.490 Peak Mbps: 7386.490 Avg Mbps: 7386.490 2000 924010636 7399.485 100.00% Conn: 1 Mbps: 7399.485 Peak Mbps: 7399.485 Avg Mbps: 7399.485 3000 923144304 7385.154 100.00% Conn: 1 Mbps: 7385.154 Peak Mbps: 7399.485 Avg Mbps: 7385.154 4000 918518568 7348.149 100.00% Conn: 1 Mbps: 7348.149 Peak Mbps: 7399.485 Avg Mbps: 7348.149 5000 923335056 7386.680 100.00% Conn: 1 Mbps: 7386.680 Peak Mbps: 7399.485 Avg Mbps: 7386.680 --- 169.254.1.11 tcpbench statistics --- 5534311620 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7348.149/7381.192/7399.485/17.323 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 920654856 7365.239 100.00% Conn: 1 Mbps: 7365.239 Peak Mbps: 7365.239 Avg Mbps: 7365.239 2000 918585648 7356.041 100.00% Conn: 1 Mbps: 7356.041 Peak Mbps: 7365.239 Avg Mbps: 7356.041 3000 918664928 7349.319 100.00% Conn: 1 Mbps: 7349.319 Peak Mbps: 7365.239 Avg Mbps: 7349.319 4000 924975616 7399.805 100.00% Conn: 1 Mbps: 7399.805 Peak Mbps: 7399.805 Avg Mbps: 7399.805 5000 918728352 7349.827 100.00% Conn: 1 Mbps: 7349.827 Peak Mbps: 7399.805 Avg Mbps: 7349.827 --- fc00:0:0:1::11 tcpbench statistics --- 5523080840 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7349.319/7364.046/7399.805/18.779 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.069 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.069/0.069/0.069/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.128 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.128/0.128/0.128/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 370985520 2967.884 100.00% Conn: 1 Mbps: 2967.884 Peak Mbps: 2967.884 Avg Mbps: 2967.884 2001 382730240 3061.842 100.00% Conn: 1 Mbps: 3061.842 Peak Mbps: 3061.842 Avg Mbps: 3061.842 3001 381943808 3055.550 100.00% Conn: 1 Mbps: 3055.550 Peak Mbps: 3061.842 Avg Mbps: 3055.550 4001 380370944 3042.968 100.00% Conn: 1 Mbps: 3042.968 Peak Mbps: 3061.842 Avg Mbps: 3042.968 5002 378535936 3028.287 100.00% Conn: 1 Mbps: 3028.287 Peak Mbps: 3061.842 Avg Mbps: 3028.287 --- 169.254.1.12 tcpbench statistics --- 2272840240 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2967.884/3031.306/3061.842/33.727 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1001 350520464 2801.362 100.00% Conn: 1 Mbps: 2801.362 Peak Mbps: 2801.362 Avg Mbps: 2801.362 2001 363593728 2908.750 100.00% Conn: 1 Mbps: 2908.750 Peak Mbps: 2908.750 Avg Mbps: 2908.750 3002 358350848 2866.807 100.00% Conn: 1 Mbps: 2866.807 Peak Mbps: 2908.750 Avg Mbps: 2866.807 4002 360972288 2887.778 100.00% Conn: 1 Mbps: 2887.778 Peak Mbps: 2908.750 Avg Mbps: 2887.778 5002 363331584 2906.653 100.00% Conn: 1 Mbps: 2906.653 Peak Mbps: 2908.750 Avg Mbps: 2906.653 --- fc00:0:0:1::12 tcpbench statistics --- 2154595472 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2801.362/2874.270/2908.750/39.475 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.060 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.060/0.060/0.060/0.000 ms ==== run-ping6-1-3 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00::13 PING fc00::13 (fc00::13): 56 data bytes 64 bytes from fc00::13: icmp_seq=0 hlim=63 time=0.068 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.068/0.068/0.068/0.000 ms ==== run-tcpbench-1-3 ==== rm -f nc.log nc -4 -v -l -V 13 169.254.0.13 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.0.13 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.0.13 elapsed_ms bytes mbps bwidth 1000 758827212 6070.618 100.00% Conn: 1 Mbps: 6070.618 Peak Mbps: 6070.618 Avg Mbps: 6070.618 2000 804099160 6439.233 100.00% Conn: 1 Mbps: 6439.233 Peak Mbps: 6439.233 Avg Mbps: 6439.233 3000 803682216 6429.458 100.00% Conn: 1 Mbps: 6429.458 Peak Mbps: 6439.233 Avg Mbps: 6429.458 4001 797414892 6379.319 100.00% Conn: 1 Mbps: 6379.319 Peak Mbps: 6439.233 Avg Mbps: 6379.319 5001 795412136 6363.297 100.00% Conn: 1 Mbps: 6363.297 Peak Mbps: 6439.233 Avg Mbps: 6363.297 --- 169.254.0.13 tcpbench statistics --- 4758344312 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6070.618/6336.385/6439.233/135.971 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 720449072 5763.593 100.00% Conn: 1 Mbps: 5763.593 Peak Mbps: 5763.593 Avg Mbps: 5763.593 2001 759068960 6072.552 100.00% Conn: 1 Mbps: 6072.552 Peak Mbps: 6072.552 Avg Mbps: 6072.552 3001 756458048 6051.664 100.00% Conn: 1 Mbps: 6051.664 Peak Mbps: 6072.552 Avg Mbps: 6051.664 4001 753211992 6031.728 100.00% Conn: 1 Mbps: 6031.728 Peak Mbps: 6072.552 Avg Mbps: 6031.728 5001 754246136 6033.969 100.00% Conn: 1 Mbps: 6033.969 Peak Mbps: 6072.552 Avg Mbps: 6033.969 --- fc00::13 tcpbench statistics --- 4486081160 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5763.593/5990.701/6072.552/114.499 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.045 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-ping6-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 369399952 2952.247 100.00% Conn: 1 Mbps: 2952.247 Peak Mbps: 2952.247 Avg Mbps: 2952.247 2001 379965280 3039.722 100.00% Conn: 1 Mbps: 3039.722 Peak Mbps: 3039.722 Avg Mbps: 3039.722 3001 384827392 3078.619 100.00% Conn: 1 Mbps: 3078.619 Peak Mbps: 3078.619 Avg Mbps: 3078.619 4001 383535680 3068.285 100.00% Conn: 1 Mbps: 3068.285 Peak Mbps: 3078.619 Avg Mbps: 3068.285 5002 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3078.619 Avg Mbps: 3045.065 --- 169.254.1.11 tcpbench statistics --- 2280567344 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2952.247/3036.788/3078.619/44.646 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 351113828 2806.105 100.00% Conn: 1 Mbps: 2806.105 Peak Mbps: 2806.105 Avg Mbps: 2806.105 2001 361075704 2888.606 100.00% Conn: 1 Mbps: 2888.606 Peak Mbps: 2888.606 Avg Mbps: 2888.606 3001 363445044 2907.560 100.00% Conn: 1 Mbps: 2907.560 Peak Mbps: 2907.560 Avg Mbps: 2907.560 4001 364642304 2917.138 100.00% Conn: 1 Mbps: 2917.138 Peak Mbps: 2917.138 Avg Mbps: 2917.138 5002 363331584 2906.653 100.00% Conn: 1 Mbps: 2906.653 Peak Mbps: 2917.138 Avg Mbps: 2906.653 --- fc00:0:0:1::11 tcpbench statistics --- 2161221228 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2806.105/2885.212/2917.138/40.615 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.045 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.045/0.045/0.045/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 918582240 7348.658 100.00% Conn: 1 Mbps: 7348.658 Peak Mbps: 7348.658 Avg Mbps: 7348.658 2000 919338096 7362.067 100.00% Conn: 1 Mbps: 7362.067 Peak Mbps: 7362.067 Avg Mbps: 7362.067 3000 919420632 7355.365 100.00% Conn: 1 Mbps: 7355.365 Peak Mbps: 7362.067 Avg Mbps: 7355.365 4000 918129016 7345.032 100.00% Conn: 1 Mbps: 7345.032 Peak Mbps: 7362.067 Avg Mbps: 7345.032 5000 919435112 7355.481 100.00% Conn: 1 Mbps: 7355.481 Peak Mbps: 7362.067 Avg Mbps: 7355.481 --- 169.254.1.12 tcpbench statistics --- 5511379048 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7345.032/7353.321/7362.067/5.929 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 910911204 7287.290 100.00% Conn: 1 Mbps: 7287.290 Peak Mbps: 7287.290 Avg Mbps: 7287.290 2000 907492572 7267.208 100.00% Conn: 1 Mbps: 7267.208 Peak Mbps: 7287.290 Avg Mbps: 7267.208 3000 907935252 7263.482 100.00% Conn: 1 Mbps: 7263.482 Peak Mbps: 7287.290 Avg Mbps: 7263.482 4000 907265520 7258.124 100.00% Conn: 1 Mbps: 7258.124 Peak Mbps: 7287.290 Avg Mbps: 7258.124 5000 908319384 7266.555 100.00% Conn: 1 Mbps: 7266.555 Peak Mbps: 7287.290 Avg Mbps: 7266.555 --- fc00:0:0:1::12 tcpbench statistics --- 5447607228 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7258.124/7268.532/7287.290/9.913 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.044 ms --- 169.254.0.13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-ping6-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 1244430782 9955.446 100.00% Conn: 1 Mbps: 9955.446 Peak Mbps: 9955.446 Avg Mbps: 9955.446 2000 1250928976 10017.449 100.00% Conn: 1 Mbps: 10017.449 Peak Mbps: 10017.449 Avg Mbps: 10017.449 3000 1249832990 9998.664 100.00% Conn: 1 Mbps: 9998.664 Peak Mbps: 10017.449 Avg Mbps: 9998.664 4000 1249195028 9993.560 100.00% Conn: 1 Mbps: 9993.560 Peak Mbps: 10017.449 Avg Mbps: 9993.560 5000 1250503668 10004.029 100.00% Conn: 1 Mbps: 10004.029 Peak Mbps: 10017.449 Avg Mbps: 10004.029 --- 169.254.0.13 tcpbench statistics --- 7495264248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9955.446/9993.830/10017.449/20.778 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 1203039452 9624.316 100.00% Conn: 1 Mbps: 9624.316 Peak Mbps: 9624.316 Avg Mbps: 9624.316 2000 1208313376 9676.183 100.00% Conn: 1 Mbps: 9676.183 Peak Mbps: 9676.183 Avg Mbps: 9676.183 3000 1200695208 9605.562 100.00% Conn: 1 Mbps: 9605.562 Peak Mbps: 9676.183 Avg Mbps: 9605.562 4000 1211713760 9693.710 100.00% Conn: 1 Mbps: 9693.710 Peak Mbps: 9693.710 Avg Mbps: 9693.710 5000 1203605152 9628.841 100.00% Conn: 1 Mbps: 9628.841 Peak Mbps: 9693.710 Avg Mbps: 9628.841 --- fc00::13 tcpbench statistics --- 7229664260 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9605.562/9645.722/9693.710/33.427 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.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-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 372846640 2979.793 100.00% Conn: 1 Mbps: 2979.793 Peak Mbps: 2979.793 Avg Mbps: 2979.793 2001 379060224 3032.482 100.00% Conn: 1 Mbps: 3032.482 Peak Mbps: 3032.482 Avg Mbps: 3032.482 3002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3059.745 Avg Mbps: 3059.745 4002 380370944 3042.968 100.00% Conn: 1 Mbps: 3042.968 Peak Mbps: 3059.745 Avg Mbps: 3042.968 5002 384827392 3078.619 100.00% Conn: 1 Mbps: 3078.619 Peak Mbps: 3078.619 Avg Mbps: 3078.619 --- 169.254.1.11 tcpbench statistics --- 2277537776 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2979.793/3038.721/3078.619/33.357 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 840084488 6720.676 100.00% Conn: 1 Mbps: 6720.676 Peak Mbps: 6720.676 Avg Mbps: 6720.676 2000 922746880 7381.975 100.00% Conn: 1 Mbps: 7381.975 Peak Mbps: 7381.975 Avg Mbps: 7381.975 3000 916445224 7331.562 100.00% Conn: 1 Mbps: 7331.562 Peak Mbps: 7381.975 Avg Mbps: 7331.562 4000 914865832 7318.927 100.00% Conn: 1 Mbps: 7318.927 Peak Mbps: 7381.975 Avg Mbps: 7318.927 5001 920649728 7365.198 100.00% Conn: 1 Mbps: 7365.198 Peak Mbps: 7381.975 Avg Mbps: 7365.198 --- fc00:0:0:1::11 tcpbench statistics --- 5450646232 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6720.676/7223.667/7381.975/252.511 Mbps # path MTU discovery in other rtable does not work in ip6_output() /sbin/route -T 13 -n get -host -inet6 fc00:0:0:1::11 route to: fc00:0:0:1::11 destination: fc00:: mask: ffff:ffff:ffff:: gateway: ::1 interface: lo13 if address: ::1 priority: 8 (static) flags: use mtu expire 7 32768 0 DISABLED ==== run-ping-3-2 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.12 PING 169.254.1.12 (169.254.1.12): 56 data bytes 64 bytes from 169.254.1.12: icmp_seq=0 ttl=255 time=0.043 ms --- 169.254.1.12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.043/0.043/0.043/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.048 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 1252928010 10023.424 100.00% Conn: 1 Mbps: 10023.424 Peak Mbps: 10023.424 Avg Mbps: 10023.424 2000 1250830828 10016.663 100.00% Conn: 1 Mbps: 10016.663 Peak Mbps: 10023.424 Avg Mbps: 10016.663 3000 1254036996 10032.296 100.00% Conn: 1 Mbps: 10032.296 Peak Mbps: 10032.296 Avg Mbps: 10032.296 4000 1251943172 10015.545 100.00% Conn: 1 Mbps: 10015.545 Peak Mbps: 10032.296 Avg Mbps: 10015.545 5000 1251894098 10015.153 100.00% Conn: 1 Mbps: 10015.153 Peak Mbps: 10032.296 Avg Mbps: 10015.153 --- 169.254.1.12 tcpbench statistics --- 7513510844 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10015.153/10020.616/10032.296/6.565 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 1155496264 9243.970 100.00% Conn: 1 Mbps: 9243.970 Peak Mbps: 9243.970 Avg Mbps: 9243.970 2000 1160446432 9292.864 100.00% Conn: 1 Mbps: 9292.864 Peak Mbps: 9292.864 Avg Mbps: 9292.864 3000 1155868992 9246.952 100.00% Conn: 1 Mbps: 9246.952 Peak Mbps: 9292.864 Avg Mbps: 9246.952 4000 1156522912 9252.183 100.00% Conn: 1 Mbps: 9252.183 Peak Mbps: 9292.864 Avg Mbps: 9252.183 5000 1151455032 9211.640 100.00% Conn: 1 Mbps: 9211.640 Peak Mbps: 9292.864 Avg Mbps: 9211.640 --- fc00:0:0:1::12 tcpbench statistics --- 6938601264 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9211.640/9249.522/9292.864/25.916 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.039 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.039/0.039/0.039/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 1264154366 10113.235 100.00% Conn: 1 Mbps: 10113.235 Peak Mbps: 10113.235 Avg Mbps: 10113.235 2000 1264424326 10125.520 100.00% Conn: 1 Mbps: 10125.520 Peak Mbps: 10125.520 Avg Mbps: 10125.520 3000 1269446232 10155.570 100.00% Conn: 1 Mbps: 10155.570 Peak Mbps: 10155.570 Avg Mbps: 10155.570 4000 1264489758 10115.918 100.00% Conn: 1 Mbps: 10115.918 Peak Mbps: 10155.570 Avg Mbps: 10115.918 5000 1268497468 10147.980 100.00% Conn: 1 Mbps: 10147.980 Peak Mbps: 10155.570 Avg Mbps: 10147.980 --- 169.254.0.13 tcpbench statistics --- 7598184620 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10113.235/10131.645/10155.570/17.106 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 1264642100 10117.137 100.00% Conn: 1 Mbps: 10117.137 Peak Mbps: 10117.137 Avg Mbps: 10117.137 2000 1269520288 10166.329 100.00% Conn: 1 Mbps: 10166.329 Peak Mbps: 10166.329 Avg Mbps: 10166.329 3000 1265727552 10125.820 100.00% Conn: 1 Mbps: 10125.820 Peak Mbps: 10166.329 Avg Mbps: 10125.820 4000 1270076120 10160.609 100.00% Conn: 1 Mbps: 10160.609 Peak Mbps: 10166.329 Avg Mbps: 10160.609 5000 1263504224 10108.034 100.00% Conn: 1 Mbps: 10108.034 Peak Mbps: 10166.329 Avg Mbps: 10108.034 --- fc00::13 tcpbench statistics --- 7600407588 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10108.034/10135.586/10166.329/23.521 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.90s