START sys/net/pair 2025-03-27T02:37: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.039 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.039/0.039/0.039/0.000 ms ==== run-ping6-1-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.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 932149388 7457.195 100.00% Conn: 1 Mbps: 7457.195 Peak Mbps: 7457.195 Avg Mbps: 7457.195 2000 934366880 7482.417 100.00% Conn: 1 Mbps: 7482.417 Peak Mbps: 7482.417 Avg Mbps: 7482.417 3000 936099544 7488.796 100.00% Conn: 1 Mbps: 7488.796 Peak Mbps: 7488.796 Avg Mbps: 7488.796 4000 933818468 7470.548 100.00% Conn: 1 Mbps: 7470.548 Peak Mbps: 7488.796 Avg Mbps: 7470.548 5000 934271504 7474.172 100.00% Conn: 1 Mbps: 7474.172 Peak Mbps: 7488.796 Avg Mbps: 7474.172 --- 169.254.1.11 tcpbench statistics --- 5604881912 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7457.195/7474.626/7488.796/10.791 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 951344144 7610.753 100.00% Conn: 1 Mbps: 7610.753 Peak Mbps: 7610.753 Avg Mbps: 7610.753 2000 950971528 7615.388 100.00% Conn: 1 Mbps: 7615.388 Peak Mbps: 7615.388 Avg Mbps: 7615.388 3000 949615840 7596.927 100.00% Conn: 1 Mbps: 7596.927 Peak Mbps: 7615.388 Avg Mbps: 7596.927 4000 950107376 7600.859 100.00% Conn: 1 Mbps: 7600.859 Peak Mbps: 7615.388 Avg Mbps: 7600.859 5000 950059808 7600.478 100.00% Conn: 1 Mbps: 7600.478 Peak Mbps: 7615.388 Avg Mbps: 7600.478 --- fc00:0:0:1::11 tcpbench statistics --- 5702214000 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7596.927/7604.881/7615.388/6.981 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.063 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.063/0.063/0.063/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.131 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.131/0.131/0.131/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 370169696 2958.399 100.00% Conn: 1 Mbps: 2958.399 Peak Mbps: 2958.399 Avg Mbps: 2958.399 2001 378011648 3027.120 100.00% Conn: 1 Mbps: 3027.120 Peak Mbps: 3027.120 Avg Mbps: 3027.120 3001 380895232 3050.212 100.00% Conn: 1 Mbps: 3050.212 Peak Mbps: 3050.212 Avg Mbps: 3050.212 4001 386662400 3093.299 100.00% Conn: 1 Mbps: 3093.299 Peak Mbps: 3093.299 Avg Mbps: 3093.299 5001 382730240 3061.842 100.00% Conn: 1 Mbps: 3061.842 Peak Mbps: 3093.299 Avg Mbps: 3061.842 --- 169.254.1.12 tcpbench statistics --- 2279888736 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2958.399/3038.175/3093.299/45.233 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 354769828 2835.323 100.00% Conn: 1 Mbps: 2835.323 Peak Mbps: 2835.323 Avg Mbps: 2835.323 2001 367001600 2938.952 100.00% Conn: 1 Mbps: 2938.952 Peak Mbps: 2938.952 Avg Mbps: 2938.952 3002 364118016 2912.944 100.00% Conn: 1 Mbps: 2912.944 Peak Mbps: 2938.952 Avg Mbps: 2912.944 4002 363924840 2914.313 100.00% Conn: 1 Mbps: 2914.313 Peak Mbps: 2938.952 Avg Mbps: 2914.313 5002 356515840 2852.127 100.00% Conn: 1 Mbps: 2852.127 Peak Mbps: 2938.952 Avg Mbps: 2852.127 --- fc00:0:0:1::12 tcpbench statistics --- 2162321676 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2835.323/2890.732/2938.952/39.837 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.066 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.066/0.066/0.066/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 767680584 6141.445 100.00% Conn: 1 Mbps: 6141.445 Peak Mbps: 6141.445 Avg Mbps: 6141.445 2000 801127448 6415.435 100.00% Conn: 1 Mbps: 6415.435 Peak Mbps: 6415.435 Avg Mbps: 6415.435 3000 800800320 6406.403 100.00% Conn: 1 Mbps: 6406.403 Peak Mbps: 6415.435 Avg Mbps: 6406.403 4000 797136292 6377.090 100.00% Conn: 1 Mbps: 6377.090 Peak Mbps: 6415.435 Avg Mbps: 6377.090 5000 797573852 6386.978 100.00% Conn: 1 Mbps: 6386.978 Peak Mbps: 6415.435 Avg Mbps: 6386.978 --- 169.254.0.13 tcpbench statistics --- 4764461596 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6141.445/6345.470/6415.435/102.914 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 715716056 5725.728 100.00% Conn: 1 Mbps: 5725.728 Peak Mbps: 5725.728 Avg Mbps: 5725.728 2000 756878232 6055.026 100.00% Conn: 1 Mbps: 6055.026 Peak Mbps: 6055.026 Avg Mbps: 6055.026 3000 750609632 6004.877 100.00% Conn: 1 Mbps: 6004.877 Peak Mbps: 6055.026 Avg Mbps: 6004.877 4000 759669928 6077.359 100.00% Conn: 1 Mbps: 6077.359 Peak Mbps: 6077.359 Avg Mbps: 6077.359 5000 760881872 6087.055 100.00% Conn: 1 Mbps: 6087.055 Peak Mbps: 6087.055 Avg Mbps: 6087.055 --- fc00::13 tcpbench statistics --- 4509401800 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 5725.728/5990.009/6087.055/135.160 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.050 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.050/0.050/0.050/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 375327976 2999.624 100.00% Conn: 1 Mbps: 2999.624 Peak Mbps: 2999.624 Avg Mbps: 2999.624 2001 382730240 3064.907 100.00% Conn: 1 Mbps: 3064.907 Peak Mbps: 3064.907 Avg Mbps: 3064.907 3001 381681664 3053.453 100.00% Conn: 1 Mbps: 3053.453 Peak Mbps: 3064.907 Avg Mbps: 3053.453 4001 384040960 3072.328 100.00% Conn: 1 Mbps: 3072.328 Peak Mbps: 3072.328 Avg Mbps: 3072.328 5002 385089536 3080.716 100.00% Conn: 1 Mbps: 3080.716 Peak Mbps: 3080.716 Avg Mbps: 3080.716 --- 169.254.1.11 tcpbench statistics --- 2292911336 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2999.624/3054.206/3080.716/28.724 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 352532208 2817.440 100.00% Conn: 1 Mbps: 2817.440 Peak Mbps: 2817.440 Avg Mbps: 2817.440 2001 360448000 2883.584 100.00% Conn: 1 Mbps: 2883.584 Peak Mbps: 2883.584 Avg Mbps: 2883.584 3001 360710144 2885.681 100.00% Conn: 1 Mbps: 2885.681 Peak Mbps: 2885.681 Avg Mbps: 2885.681 4001 359640632 2877.125 100.00% Conn: 1 Mbps: 2877.125 Peak Mbps: 2885.681 Avg Mbps: 2877.125 5002 361758720 2894.070 100.00% Conn: 1 Mbps: 2894.070 Peak Mbps: 2894.070 Avg Mbps: 2894.070 --- fc00:0:0:1::11 tcpbench statistics --- 2159732008 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2817.440/2871.580/2894.070/27.606 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.037 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.037/0.037/0.037/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 917509272 7340.074 100.00% Conn: 1 Mbps: 7340.074 Peak Mbps: 7340.074 Avg Mbps: 7340.074 2000 917736608 7349.242 100.00% Conn: 1 Mbps: 7349.242 Peak Mbps: 7349.242 Avg Mbps: 7349.242 3000 916736040 7333.888 100.00% Conn: 1 Mbps: 7333.888 Peak Mbps: 7349.242 Avg Mbps: 7333.888 4000 918435992 7347.488 100.00% Conn: 1 Mbps: 7347.488 Peak Mbps: 7349.242 Avg Mbps: 7347.488 5000 917717784 7341.742 100.00% Conn: 1 Mbps: 7341.742 Peak Mbps: 7349.242 Avg Mbps: 7341.742 --- 169.254.1.12 tcpbench statistics --- 5505492928 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7333.888/7342.487/7349.242/5.495 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 928706940 7429.656 100.00% Conn: 1 Mbps: 7429.656 Peak Mbps: 7429.656 Avg Mbps: 7429.656 2000 927056172 7423.873 100.00% Conn: 1 Mbps: 7423.873 Peak Mbps: 7429.656 Avg Mbps: 7423.873 3000 927610236 7420.882 100.00% Conn: 1 Mbps: 7420.882 Peak Mbps: 7429.656 Avg Mbps: 7420.882 4000 928137168 7425.097 100.00% Conn: 1 Mbps: 7425.097 Peak Mbps: 7429.656 Avg Mbps: 7425.097 5000 927942960 7423.544 100.00% Conn: 1 Mbps: 7423.544 Peak Mbps: 7429.656 Avg Mbps: 7423.544 --- fc00:0:0:1::12 tcpbench statistics --- 5567312184 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7420.882/7424.610/7429.656/2.873 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.045 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-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 1257234262 10057.874 100.00% Conn: 1 Mbps: 10057.874 Peak Mbps: 10057.874 Avg Mbps: 10057.874 2000 1260416616 10093.426 100.00% Conn: 1 Mbps: 10093.426 Peak Mbps: 10093.426 Avg Mbps: 10093.426 3000 1259925876 10079.407 100.00% Conn: 1 Mbps: 10079.407 Peak Mbps: 10093.426 Avg Mbps: 10079.407 4000 1258944396 10071.555 100.00% Conn: 1 Mbps: 10071.555 Peak Mbps: 10093.426 Avg Mbps: 10071.555 5000 1259042544 10072.340 100.00% Conn: 1 Mbps: 10072.340 Peak Mbps: 10093.426 Avg Mbps: 10072.340 --- 169.254.0.13 tcpbench statistics --- 7555146052 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10057.874/10074.921/10093.426/11.586 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 1263513260 10108.106 100.00% Conn: 1 Mbps: 10108.106 Peak Mbps: 10108.106 Avg Mbps: 10108.106 2000 1266250688 10140.146 100.00% Conn: 1 Mbps: 10140.146 Peak Mbps: 10140.146 Avg Mbps: 10140.146 3000 1265825640 10126.605 100.00% Conn: 1 Mbps: 10126.605 Peak Mbps: 10140.146 Avg Mbps: 10126.605 4000 1269552984 10156.424 100.00% Conn: 1 Mbps: 10156.424 Peak Mbps: 10156.424 Avg Mbps: 10156.424 5000 1269356808 10154.854 100.00% Conn: 1 Mbps: 10154.854 Peak Mbps: 10156.424 Avg Mbps: 10154.854 --- fc00::13 tcpbench statistics --- 7601894428 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10108.106/10137.227/10156.424/18.158 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 373503456 2985.043 100.00% Conn: 1 Mbps: 2985.043 Peak Mbps: 2985.043 Avg Mbps: 2985.043 2001 382205952 3057.648 100.00% Conn: 1 Mbps: 3057.648 Peak Mbps: 3057.648 Avg Mbps: 3057.648 3001 380325800 3042.606 100.00% Conn: 1 Mbps: 3042.606 Peak Mbps: 3057.648 Avg Mbps: 3042.606 4002 382574312 3060.594 100.00% Conn: 1 Mbps: 3060.594 Peak Mbps: 3060.594 Avg Mbps: 3060.594 5002 382468096 3059.745 100.00% Conn: 1 Mbps: 3059.745 Peak Mbps: 3060.594 Avg Mbps: 3059.745 --- 169.254.1.11 tcpbench statistics --- 2282759280 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2985.043/3041.127/3060.594/28.796 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 831998424 6655.987 100.00% Conn: 1 Mbps: 6655.987 Peak Mbps: 6655.987 Avg Mbps: 6655.987 2000 896270336 7170.163 100.00% Conn: 1 Mbps: 7170.163 Peak Mbps: 7170.163 Avg Mbps: 7170.163 3000 917516512 7340.132 100.00% Conn: 1 Mbps: 7340.132 Peak Mbps: 7340.132 Avg Mbps: 7340.132 4001 913755288 7310.042 100.00% Conn: 1 Mbps: 7310.042 Peak Mbps: 7340.132 Avg Mbps: 7310.042 5001 913833984 7310.672 100.00% Conn: 1 Mbps: 7310.672 Peak Mbps: 7340.132 Avg Mbps: 7310.672 --- fc00:0:0:1::11 tcpbench statistics --- 5383666280 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6655.987/7157.399/7340.132/257.589 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.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-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.049 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.049/0.049/0.049/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 1263396626 10107.173 100.00% Conn: 1 Mbps: 10107.173 Peak Mbps: 10107.173 Avg Mbps: 10107.173 2000 1263720932 10119.887 100.00% Conn: 1 Mbps: 10119.887 Peak Mbps: 10119.887 Avg Mbps: 10119.887 3000 1263622784 10108.982 100.00% Conn: 1 Mbps: 10108.982 Peak Mbps: 10119.887 Avg Mbps: 10108.982 4000 1262706736 10101.654 100.00% Conn: 1 Mbps: 10101.654 Peak Mbps: 10119.887 Avg Mbps: 10101.654 5000 1263001180 10104.009 100.00% Conn: 1 Mbps: 10104.009 Peak Mbps: 10119.887 Avg Mbps: 10104.009 --- 169.254.1.12 tcpbench statistics --- 7580496350 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10101.654/10108.341/10119.887/6.302 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 1265027216 10120.218 100.00% Conn: 1 Mbps: 10120.218 Peak Mbps: 10120.218 Avg Mbps: 10120.218 2000 1265302504 10132.553 100.00% Conn: 1 Mbps: 10132.553 Peak Mbps: 10132.553 Avg Mbps: 10132.553 3000 1264190840 10113.527 100.00% Conn: 1 Mbps: 10113.527 Peak Mbps: 10132.553 Avg Mbps: 10113.527 4000 1265139024 10121.112 100.00% Conn: 1 Mbps: 10121.112 Peak Mbps: 10132.553 Avg Mbps: 10121.112 5000 1265727552 10125.820 100.00% Conn: 1 Mbps: 10125.820 Peak Mbps: 10132.553 Avg Mbps: 10125.820 --- fc00:0:0:1::12 tcpbench statistics --- 7590722336 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10113.527/10122.646/10132.553/6.319 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.045 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.045/0.045/0.045/0.000 ms ==== run-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 1263040492 10104.324 100.00% Conn: 1 Mbps: 10104.324 Peak Mbps: 10104.324 Avg Mbps: 10104.324 2000 1263001180 10114.124 100.00% Conn: 1 Mbps: 10114.124 Peak Mbps: 10114.124 Avg Mbps: 10114.124 3000 1264407968 10115.264 100.00% Conn: 1 Mbps: 10115.264 Peak Mbps: 10115.264 Avg Mbps: 10115.264 4000 1266469076 10131.753 100.00% Conn: 1 Mbps: 10131.753 Peak Mbps: 10131.753 Avg Mbps: 10131.753 5000 1266174632 10129.397 100.00% Conn: 1 Mbps: 10129.397 Peak Mbps: 10131.753 Avg Mbps: 10129.397 --- 169.254.0.13 tcpbench statistics --- 7588139278 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10104.324/10118.972/10131.753/10.236 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 1280923628 10247.389 100.00% Conn: 1 Mbps: 10247.389 Peak Mbps: 10247.389 Avg Mbps: 10247.389 2000 1284854712 10289.127 100.00% Conn: 1 Mbps: 10289.127 Peak Mbps: 10289.127 Avg Mbps: 10289.127 3000 1286195248 10289.562 100.00% Conn: 1 Mbps: 10289.562 Peak Mbps: 10289.562 Avg Mbps: 10289.562 4000 1286620296 10292.962 100.00% Conn: 1 Mbps: 10292.962 Peak Mbps: 10292.962 Avg Mbps: 10292.962 5000 1288778232 10310.226 100.00% Conn: 1 Mbps: 10310.226 Peak Mbps: 10310.226 Avg Mbps: 10310.226 --- fc00::13 tcpbench statistics --- 7713403884 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10247.389/10285.853/10310.226/20.729 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.91s