START sys/net/pair 2025-04-03T01:37:59Z ==== 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.043 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.043/0.043/0.043/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.044 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-1-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 915768560 7326.148 100.00% Conn: 1 Mbps: 7326.148 Peak Mbps: 7326.148 Avg Mbps: 7326.148 2000 912724476 7309.105 100.00% Conn: 1 Mbps: 7309.105 Peak Mbps: 7326.148 Avg Mbps: 7309.105 3000 914163064 7313.305 100.00% Conn: 1 Mbps: 7313.305 Peak Mbps: 7326.148 Avg Mbps: 7313.305 4000 913686184 7309.489 100.00% Conn: 1 Mbps: 7309.489 Peak Mbps: 7326.148 Avg Mbps: 7309.489 5000 916213648 7329.709 100.00% Conn: 1 Mbps: 7329.709 Peak Mbps: 7329.709 Avg Mbps: 7329.709 --- 169.254.1.11 tcpbench statistics --- 5487140240 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7309.105/7317.551/7329.709/8.673 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 928527360 7428.219 100.00% Conn: 1 Mbps: 7428.219 Peak Mbps: 7428.219 Avg Mbps: 7428.219 2000 928796912 7437.813 100.00% Conn: 1 Mbps: 7437.813 Peak Mbps: 7437.813 Avg Mbps: 7437.813 3000 931999824 7455.999 100.00% Conn: 1 Mbps: 7455.999 Peak Mbps: 7455.999 Avg Mbps: 7455.999 4000 925173816 7401.391 100.00% Conn: 1 Mbps: 7401.391 Peak Mbps: 7455.999 Avg Mbps: 7401.391 5000 927710776 7421.686 100.00% Conn: 1 Mbps: 7421.686 Peak Mbps: 7455.999 Avg Mbps: 7421.686 --- fc00:0:0:1::11 tcpbench statistics --- 5570458568 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7401.391/7429.021/7455.999/18.017 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.065 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.065/0.065/0.065/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.130 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.130/0.130/0.130/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 373801240 2987.422 100.00% Conn: 1 Mbps: 2987.422 Peak Mbps: 2987.422 Avg Mbps: 2987.422 2001 384040960 3072.328 100.00% Conn: 1 Mbps: 3072.328 Peak Mbps: 3072.328 Avg Mbps: 3072.328 3001 384006904 3072.055 100.00% Conn: 1 Mbps: 3072.055 Peak Mbps: 3072.328 Avg Mbps: 3072.055 4001 377632632 3024.085 100.00% Conn: 1 Mbps: 3024.085 Peak Mbps: 3072.328 Avg Mbps: 3024.085 5001 377749504 3021.996 100.00% Conn: 1 Mbps: 3021.996 Peak Mbps: 3072.328 Avg Mbps: 3021.996 --- 169.254.1.12 tcpbench statistics --- 2274718600 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2987.422/3035.577/3072.328/32.609 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 347549940 2777.622 100.00% Conn: 1 Mbps: 2777.622 Peak Mbps: 2777.622 Avg Mbps: 2777.622 2001 359923712 2879.390 100.00% Conn: 1 Mbps: 2879.390 Peak Mbps: 2879.390 Avg Mbps: 2879.390 3002 367001600 2936.013 100.00% Conn: 1 Mbps: 2936.013 Peak Mbps: 2936.013 Avg Mbps: 2936.013 4002 360710144 2885.681 100.00% Conn: 1 Mbps: 2885.681 Peak Mbps: 2936.013 Avg Mbps: 2885.681 5003 367263744 2938.110 100.00% Conn: 1 Mbps: 2938.110 Peak Mbps: 2938.110 Avg Mbps: 2938.110 --- fc00:0:0:1::12 tcpbench statistics --- 2167091444 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2777.622/2883.363/2938.110/58.261 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.057 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.057/0.057/0.057/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.065 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.065/0.065/0.065/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 752259304 6018.074 100.00% Conn: 1 Mbps: 6018.074 Peak Mbps: 6018.074 Avg Mbps: 6018.074 2000 791978460 6342.170 100.00% Conn: 1 Mbps: 6342.170 Peak Mbps: 6342.170 Avg Mbps: 6342.170 3001 793758532 6350.068 100.00% Conn: 1 Mbps: 6350.068 Peak Mbps: 6350.068 Avg Mbps: 6350.068 4001 796477028 6371.816 100.00% Conn: 1 Mbps: 6371.816 Peak Mbps: 6371.816 Avg Mbps: 6371.816 5001 805307396 6448.908 100.00% Conn: 1 Mbps: 6448.908 Peak Mbps: 6448.908 Avg Mbps: 6448.908 --- 169.254.0.13 tcpbench statistics --- 4737626664 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6018.074/6306.207/6448.908/148.933 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 716786336 5734.291 100.00% Conn: 1 Mbps: 5734.291 Peak Mbps: 5734.291 Avg Mbps: 5734.291 2000 744011608 5952.093 100.00% Conn: 1 Mbps: 5952.093 Peak Mbps: 5952.093 Avg Mbps: 5952.093 3000 744408008 5955.264 100.00% Conn: 1 Mbps: 5955.264 Peak Mbps: 5955.264 Avg Mbps: 5955.264 4001 746333992 5970.672 100.00% Conn: 1 Mbps: 5970.672 Peak Mbps: 5970.672 Avg Mbps: 5970.672 5001 753891328 6031.131 100.00% Conn: 1 Mbps: 6031.131 Peak Mbps: 6031.131 Avg Mbps: 6031.131 --- fc00::13 tcpbench statistics --- 4455332864 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5734.291/5928.690/6031.131/101.293 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.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-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 1001 373474032 2984.807 100.00% Conn: 1 Mbps: 2984.807 Peak Mbps: 2984.807 Avg Mbps: 2984.807 2001 385351680 3082.813 100.00% Conn: 1 Mbps: 3082.813 Peak Mbps: 3082.813 Avg Mbps: 3082.813 3001 382992384 3063.939 100.00% Conn: 1 Mbps: 3063.939 Peak Mbps: 3082.813 Avg Mbps: 3063.939 4002 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3082.813 Avg Mbps: 3068.133 5002 382810696 3062.486 100.00% Conn: 1 Mbps: 3062.486 Peak Mbps: 3082.813 Avg Mbps: 3062.486 --- 169.254.1.11 tcpbench statistics --- 2285108536 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2984.807/3052.436/3082.813/34.572 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 351929768 2812.626 100.00% Conn: 1 Mbps: 2812.626 Peak Mbps: 2812.626 Avg Mbps: 2812.626 2001 360448000 2883.584 100.00% Conn: 1 Mbps: 2883.584 Peak Mbps: 2883.584 Avg Mbps: 2883.584 3002 359399424 2875.195 100.00% Conn: 1 Mbps: 2875.195 Peak Mbps: 2883.584 Avg Mbps: 2875.195 4002 364904448 2919.236 100.00% Conn: 1 Mbps: 2919.236 Peak Mbps: 2919.236 Avg Mbps: 2919.236 5003 363069440 2904.556 100.00% Conn: 1 Mbps: 2904.556 Peak Mbps: 2919.236 Avg Mbps: 2904.556 --- fc00:0:0:1::11 tcpbench statistics --- 2161247656 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2812.626/2879.039/2919.236/36.642 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.039 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.039/0.039/0.039/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 884056128 7072.449 100.00% Conn: 1 Mbps: 7072.449 Peak Mbps: 7072.449 Avg Mbps: 7072.449 2000 886067400 7095.635 100.00% Conn: 1 Mbps: 7095.635 Peak Mbps: 7095.635 Avg Mbps: 7095.635 3000 886013824 7088.111 100.00% Conn: 1 Mbps: 7088.111 Peak Mbps: 7095.635 Avg Mbps: 7088.111 4000 882964336 7063.715 100.00% Conn: 1 Mbps: 7063.715 Peak Mbps: 7095.635 Avg Mbps: 7063.715 5000 884163280 7073.306 100.00% Conn: 1 Mbps: 7073.306 Peak Mbps: 7095.635 Avg Mbps: 7073.306 --- 169.254.1.12 tcpbench statistics --- 5307609248 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7063.715/7078.643/7095.635/11.559 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 918846600 7350.773 100.00% Conn: 1 Mbps: 7350.773 Peak Mbps: 7350.773 Avg Mbps: 7350.773 2000 913405920 7314.562 100.00% Conn: 1 Mbps: 7314.562 Peak Mbps: 7350.773 Avg Mbps: 7314.562 3000 916210512 7329.684 100.00% Conn: 1 Mbps: 7329.684 Peak Mbps: 7350.773 Avg Mbps: 7329.684 4000 915323724 7322.590 100.00% Conn: 1 Mbps: 7322.590 Peak Mbps: 7350.773 Avg Mbps: 7322.590 5000 913490172 7307.921 100.00% Conn: 1 Mbps: 7307.921 Peak Mbps: 7350.773 Avg Mbps: 7307.921 --- fc00:0:0:1::12 tcpbench statistics --- 5491489668 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7307.921/7325.106/7350.773/14.782 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.042 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.042/0.042/0.042/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 1265602250 10124.818 100.00% Conn: 1 Mbps: 10124.818 Peak Mbps: 10124.818 Avg Mbps: 10124.818 2000 1269707960 10167.832 100.00% Conn: 1 Mbps: 10167.832 Peak Mbps: 10167.832 Avg Mbps: 10167.832 3000 1269773392 10158.187 100.00% Conn: 1 Mbps: 10158.187 Peak Mbps: 10167.832 Avg Mbps: 10158.187 4000 1267679568 10141.437 100.00% Conn: 1 Mbps: 10141.437 Peak Mbps: 10167.832 Avg Mbps: 10141.437 5000 1268072160 10144.577 100.00% Conn: 1 Mbps: 10144.577 Peak Mbps: 10167.832 Avg Mbps: 10144.577 --- 169.254.0.13 tcpbench statistics --- 7607304406 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10124.818/10147.370/10167.832/14.746 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 1236418828 9891.351 100.00% Conn: 1 Mbps: 9891.351 Peak Mbps: 9891.351 Avg Mbps: 9891.351 2000 1233260424 9875.959 100.00% Conn: 1 Mbps: 9875.959 Peak Mbps: 9891.351 Avg Mbps: 9875.959 3000 1233227728 9865.822 100.00% Conn: 1 Mbps: 9865.822 Peak Mbps: 9891.351 Avg Mbps: 9865.822 4000 1232017976 9856.144 100.00% Conn: 1 Mbps: 9856.144 Peak Mbps: 9891.351 Avg Mbps: 9856.144 5000 1242219128 9937.753 100.00% Conn: 1 Mbps: 9937.753 Peak Mbps: 9937.753 Avg Mbps: 9937.753 --- fc00::13 tcpbench statistics --- 7413249060 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9856.144/9885.406/9937.753/28.652 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.056 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.056/0.056/0.056/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 374846576 2998.773 100.00% Conn: 1 Mbps: 2998.773 Peak Mbps: 2998.773 Avg Mbps: 2998.773 2001 379060224 3032.482 100.00% Conn: 1 Mbps: 3032.482 Peak Mbps: 3032.482 Avg Mbps: 3032.482 3001 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 4002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3068.133 Avg Mbps: 3059.745 5002 383516672 3068.133 100.00% Conn: 1 Mbps: 3068.133 Peak Mbps: 3068.133 Avg Mbps: 3068.133 --- 169.254.1.11 tcpbench statistics --- 2283254896 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2998.773/3045.453/3068.133/26.760 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 813355248 6506.842 100.00% Conn: 1 Mbps: 6506.842 Peak Mbps: 6506.842 Avg Mbps: 6506.842 2000 920736080 7373.262 100.00% Conn: 1 Mbps: 7373.262 Peak Mbps: 7373.262 Avg Mbps: 7373.262 3000 908903448 7271.228 100.00% Conn: 1 Mbps: 7271.228 Peak Mbps: 7373.262 Avg Mbps: 7271.228 4000 913632936 7309.063 100.00% Conn: 1 Mbps: 7309.063 Peak Mbps: 7373.262 Avg Mbps: 7309.063 5001 873335344 6986.683 100.00% Conn: 1 Mbps: 6986.683 Peak Mbps: 7373.262 Avg Mbps: 6986.683 --- fc00:0:0:1::11 tcpbench statistics --- 5303456816 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6506.842/7089.416/7373.262/319.942 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 1279610434 10236.883 100.00% Conn: 1 Mbps: 10236.883 Peak Mbps: 10236.883 Avg Mbps: 10236.883 2000 1281878312 10265.292 100.00% Conn: 1 Mbps: 10265.292 Peak Mbps: 10265.292 Avg Mbps: 10265.292 3000 1284299296 10274.394 100.00% Conn: 1 Mbps: 10274.394 Peak Mbps: 10274.394 Avg Mbps: 10274.394 4000 1284233864 10273.871 100.00% Conn: 1 Mbps: 10273.871 Peak Mbps: 10274.394 Avg Mbps: 10273.871 5000 1283579544 10268.636 100.00% Conn: 1 Mbps: 10268.636 Peak Mbps: 10274.394 Avg Mbps: 10268.636 --- 169.254.1.12 tcpbench statistics --- 7694563714 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10236.883/10263.815/10274.394/13.884 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 1245772764 9966.182 100.00% Conn: 1 Mbps: 9966.182 Peak Mbps: 9966.182 Avg Mbps: 9966.182 2000 1249248768 10003.994 100.00% Conn: 1 Mbps: 10003.994 Peak Mbps: 10003.994 Avg Mbps: 10003.994 3000 1247221616 9977.773 100.00% Conn: 1 Mbps: 9977.773 Peak Mbps: 10003.994 Avg Mbps: 9977.773 4000 1241467120 9931.737 100.00% Conn: 1 Mbps: 9931.737 Peak Mbps: 10003.994 Avg Mbps: 9931.737 5000 1252093320 10016.747 100.00% Conn: 1 Mbps: 10016.747 Peak Mbps: 10016.747 Avg Mbps: 10016.747 --- fc00:0:0:1::12 tcpbench statistics --- 7486556372 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9931.737/9979.287/10016.747/29.829 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.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 1260700910 10085.607 100.00% Conn: 1 Mbps: 10085.607 Peak Mbps: 10085.607 Avg Mbps: 10085.607 2000 1264064450 10122.638 100.00% Conn: 1 Mbps: 10122.638 Peak Mbps: 10122.638 Avg Mbps: 10122.638 3000 1263262908 10106.103 100.00% Conn: 1 Mbps: 10106.103 Peak Mbps: 10122.638 Avg Mbps: 10106.103 4000 1261218158 10089.745 100.00% Conn: 1 Mbps: 10089.745 Peak Mbps: 10122.638 Avg Mbps: 10089.745 5000 1261430812 10091.446 100.00% Conn: 1 Mbps: 10091.446 Peak Mbps: 10122.638 Avg Mbps: 10091.446 --- 169.254.0.13 tcpbench statistics --- 7572009902 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10085.607/10099.108/10122.638/13.647 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 1286724756 10293.798 100.00% Conn: 1 Mbps: 10293.798 Peak Mbps: 10293.798 Avg Mbps: 10293.798 2000 1287535784 10310.597 100.00% Conn: 1 Mbps: 10310.597 Peak Mbps: 10310.597 Avg Mbps: 10310.597 3000 1288614752 10308.918 100.00% Conn: 1 Mbps: 10308.918 Peak Mbps: 10310.597 Avg Mbps: 10308.918 4000 1289203280 10313.626 100.00% Conn: 1 Mbps: 10313.626 Peak Mbps: 10313.626 Avg Mbps: 10313.626 5000 1292701752 10341.614 100.00% Conn: 1 Mbps: 10341.614 Peak Mbps: 10341.614 Avg Mbps: 10341.614 --- fc00::13 tcpbench statistics --- 7735324140 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10293.798/10313.711/10341.614/15.542 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.94s