START sys/net/pair 2025-03-06T05:01:30Z ==== 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.050 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-ping6-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.043 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.043/0.043/0.043/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 526459624 4211.677 100.00% Conn: 1 Mbps: 4211.677 Peak Mbps: 4211.677 Avg Mbps: 4211.677 2000 525482020 4208.064 100.00% Conn: 1 Mbps: 4208.064 Peak Mbps: 4211.677 Avg Mbps: 4208.064 3000 525791992 4206.336 100.00% Conn: 1 Mbps: 4206.336 Peak Mbps: 4211.677 Avg Mbps: 4206.336 4000 525895316 4207.163 100.00% Conn: 1 Mbps: 4207.163 Peak Mbps: 4211.677 Avg Mbps: 4207.163 5000 525235632 4201.885 100.00% Conn: 1 Mbps: 4201.885 Peak Mbps: 4211.677 Avg Mbps: 4201.885 --- 169.254.1.11 tcpbench statistics --- 3154155852 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4201.885/4207.025/4211.677/3.151 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 523929808 4191.438 100.00% Conn: 1 Mbps: 4191.438 Peak Mbps: 4191.438 Avg Mbps: 4191.438 2000 522391776 4183.318 100.00% Conn: 1 Mbps: 4183.318 Peak Mbps: 4191.438 Avg Mbps: 4183.318 3000 522288712 4178.310 100.00% Conn: 1 Mbps: 4178.310 Peak Mbps: 4191.438 Avg Mbps: 4178.310 4000 522415560 4179.324 100.00% Conn: 1 Mbps: 4179.324 Peak Mbps: 4191.438 Avg Mbps: 4179.324 5000 522225288 4177.802 100.00% Conn: 1 Mbps: 4177.802 Peak Mbps: 4191.438 Avg Mbps: 4177.802 --- fc00:0:0:1::11 tcpbench statistics --- 3136110672 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4177.802/4182.038/4191.438/5.084 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.072 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.072/0.072/0.072/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 1000 273989376 2191.915 100.00% Conn: 1 Mbps: 2191.915 Peak Mbps: 2191.915 Avg Mbps: 2191.915 2001 285568304 2282.264 100.00% Conn: 1 Mbps: 2282.264 Peak Mbps: 2282.264 Avg Mbps: 2282.264 3002 289232144 2313.857 100.00% Conn: 1 Mbps: 2313.857 Peak Mbps: 2313.857 Avg Mbps: 2313.857 4001 289360504 2317.201 100.00% Conn: 1 Mbps: 2317.201 Peak Mbps: 2317.201 Avg Mbps: 2317.201 5001 290130120 2323.364 100.00% Conn: 1 Mbps: 2323.364 Peak Mbps: 2323.364 Avg Mbps: 2323.364 --- 169.254.1.12 tcpbench statistics --- 1717037296 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2191.915/2285.720/2323.364/49.013 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 1002 257744308 2057.839 100.00% Conn: 1 Mbps: 2057.839 Peak Mbps: 2057.839 Avg Mbps: 2057.839 2000 273063088 2188.882 100.00% Conn: 1 Mbps: 2188.882 Peak Mbps: 2188.882 Avg Mbps: 2188.882 3002 275759688 2203.874 100.00% Conn: 1 Mbps: 2203.874 Peak Mbps: 2203.874 Avg Mbps: 2203.874 4003 275457008 2203.656 100.00% Conn: 1 Mbps: 2203.656 Peak Mbps: 2203.874 Avg Mbps: 2203.656 5003 278898772 2231.190 100.00% Conn: 1 Mbps: 2231.190 Peak Mbps: 2231.190 Avg Mbps: 2231.190 --- fc00:0:0:1::12 tcpbench statistics --- 1639913708 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2057.839/2177.088/2231.190/61.172 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.077 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.077/0.077/0.077/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.081 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.081/0.081/0.081/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 591641980 4733.136 100.00% Conn: 1 Mbps: 4733.136 Peak Mbps: 4733.136 Avg Mbps: 4733.136 2000 590445612 4728.293 100.00% Conn: 1 Mbps: 4728.293 Peak Mbps: 4733.136 Avg Mbps: 4728.293 3000 576832088 4614.657 100.00% Conn: 1 Mbps: 4614.657 Peak Mbps: 4733.136 Avg Mbps: 4614.657 4000 594262892 4754.103 100.00% Conn: 1 Mbps: 4754.103 Peak Mbps: 4754.103 Avg Mbps: 4754.103 5000 567105136 4536.841 100.00% Conn: 1 Mbps: 4536.841 Peak Mbps: 4754.103 Avg Mbps: 4536.841 --- 169.254.0.13 tcpbench statistics --- 3480716524 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4536.841/4673.406/4754.103/83.897 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 598045440 4784.364 100.00% Conn: 1 Mbps: 4784.364 Peak Mbps: 4784.364 Avg Mbps: 4784.364 2000 633546120 5068.369 100.00% Conn: 1 Mbps: 5068.369 Peak Mbps: 5068.369 Avg Mbps: 5068.369 3001 635989632 5087.917 100.00% Conn: 1 Mbps: 5087.917 Peak Mbps: 5087.917 Avg Mbps: 5087.917 4001 637140488 5097.124 100.00% Conn: 1 Mbps: 5097.124 Peak Mbps: 5097.124 Avg Mbps: 5097.124 5002 633960584 5071.685 100.00% Conn: 1 Mbps: 5071.685 Peak Mbps: 5097.124 Avg Mbps: 5071.685 --- fc00::13 tcpbench statistics --- 3776039408 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4784.364/5021.892/5097.124/119.229 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.058 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.058/0.058/0.058/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 273030072 2182.059 100.00% Conn: 1 Mbps: 2182.059 Peak Mbps: 2182.059 Avg Mbps: 2182.059 2001 285338528 2282.708 100.00% Conn: 1 Mbps: 2282.708 Peak Mbps: 2282.708 Avg Mbps: 2282.708 3003 285916824 2285.050 100.00% Conn: 1 Mbps: 2285.050 Peak Mbps: 2285.050 Avg Mbps: 2285.050 4003 286294640 2292.650 100.00% Conn: 1 Mbps: 2292.650 Peak Mbps: 2292.650 Avg Mbps: 2292.650 5002 285084560 2282.959 100.00% Conn: 1 Mbps: 2282.959 Peak Mbps: 2292.650 Avg Mbps: 2282.959 --- 169.254.1.11 tcpbench statistics --- 1703961072 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2182.059/2265.085/2292.650/41.670 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 256707920 2051.612 100.00% Conn: 1 Mbps: 2051.612 Peak Mbps: 2051.612 Avg Mbps: 2051.612 2001 271035172 2168.281 100.00% Conn: 1 Mbps: 2168.281 Peak Mbps: 2168.281 Avg Mbps: 2168.281 3001 269860692 2158.886 100.00% Conn: 1 Mbps: 2158.886 Peak Mbps: 2168.281 Avg Mbps: 2158.886 4004 271822848 2170.242 100.00% Conn: 1 Mbps: 2170.242 Peak Mbps: 2170.242 Avg Mbps: 2170.242 5003 274429472 2199.835 100.00% Conn: 1 Mbps: 2199.835 Peak Mbps: 2199.835 Avg Mbps: 2199.835 --- fc00:0:0:1::11 tcpbench statistics --- 1616775756 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 2051.612/2149.771/2199.835/50.964 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.054 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.054/0.054/0.054/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.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-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 522079296 4176.634 100.00% Conn: 1 Mbps: 4176.634 Peak Mbps: 4176.634 Avg Mbps: 4176.634 2000 521371224 4175.145 100.00% Conn: 1 Mbps: 4175.145 Peak Mbps: 4176.634 Avg Mbps: 4175.145 3000 518127704 4145.022 100.00% Conn: 1 Mbps: 4145.022 Peak Mbps: 4176.634 Avg Mbps: 4145.022 4000 521488512 4171.908 100.00% Conn: 1 Mbps: 4171.908 Peak Mbps: 4176.634 Avg Mbps: 4171.908 5000 521156920 4169.255 100.00% Conn: 1 Mbps: 4169.255 Peak Mbps: 4176.634 Avg Mbps: 4169.255 --- 169.254.1.12 tcpbench statistics --- 3125169168 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4145.022/4167.593/4176.634/11.573 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 535110156 4280.881 100.00% Conn: 1 Mbps: 4280.881 Peak Mbps: 4280.881 Avg Mbps: 4280.881 2000 535344348 4287.042 100.00% Conn: 1 Mbps: 4287.042 Peak Mbps: 4287.042 Avg Mbps: 4287.042 3000 535234392 4281.875 100.00% Conn: 1 Mbps: 4281.875 Peak Mbps: 4287.042 Avg Mbps: 4281.875 4000 534804564 4278.437 100.00% Conn: 1 Mbps: 4278.437 Peak Mbps: 4287.042 Avg Mbps: 4278.437 5000 534907380 4279.259 100.00% Conn: 1 Mbps: 4279.259 Peak Mbps: 4287.042 Avg Mbps: 4279.259 --- fc00:0:0:1::12 tcpbench statistics --- 3209961216 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4278.437/4281.499/4287.042/3.021 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.071 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.071/0.071/0.071/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.051 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.051/0.051/0.051/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 794986706 6359.894 100.00% Conn: 1 Mbps: 6359.894 Peak Mbps: 6359.894 Avg Mbps: 6359.894 2000 795292872 6368.712 100.00% Conn: 1 Mbps: 6368.712 Peak Mbps: 6368.712 Avg Mbps: 6368.712 3000 789535228 6316.282 100.00% Conn: 1 Mbps: 6316.282 Peak Mbps: 6368.712 Avg Mbps: 6316.282 4000 789764240 6318.114 100.00% Conn: 1 Mbps: 6318.114 Peak Mbps: 6368.712 Avg Mbps: 6318.114 5000 788488316 6307.907 100.00% Conn: 1 Mbps: 6307.907 Peak Mbps: 6368.712 Avg Mbps: 6307.907 --- 169.254.0.13 tcpbench statistics --- 4746850122 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6307.907/6334.182/6368.712/24.990 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 781423164 6251.385 100.00% Conn: 1 Mbps: 6251.385 Peak Mbps: 6251.385 Avg Mbps: 6251.385 2000 781303616 6256.686 100.00% Conn: 1 Mbps: 6256.686 Peak Mbps: 6256.686 Avg Mbps: 6256.686 3000 781401704 6251.214 100.00% Conn: 1 Mbps: 6251.214 Peak Mbps: 6256.686 Avg Mbps: 6251.214 4000 781794056 6254.352 100.00% Conn: 1 Mbps: 6254.352 Peak Mbps: 6256.686 Avg Mbps: 6254.352 5000 779766904 6238.135 100.00% Conn: 1 Mbps: 6238.135 Peak Mbps: 6256.686 Avg Mbps: 6238.135 --- fc00::13 tcpbench statistics --- 4686142964 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6238.135/6250.354/6256.686/6.437 Mbps ==== run-ping-3-1 ==== /sbin/ping -c 1 -w 1 -n -V 13 -I 169.254.0.13 169.254.1.11 PING 169.254.1.11 (169.254.1.11): 56 data bytes 64 bytes from 169.254.1.11: icmp_seq=0 ttl=255 time=0.050 ms --- 169.254.1.11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.050/0.050/0.050/0.000 ms ==== run-ping6-3-1 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::11 PING fc00:0:0:1::11 (fc00:0:0:1::11): 56 data bytes 64 bytes from fc00:0:0:1::11: icmp_seq=0 hlim=64 time=0.058 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.058/0.058/0.058/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 278984248 2229.644 100.00% Conn: 1 Mbps: 2229.644 Peak Mbps: 2229.644 Avg Mbps: 2229.644 2001 281860760 2254.886 100.00% Conn: 1 Mbps: 2254.886 Peak Mbps: 2254.886 Avg Mbps: 2254.886 3001 282146680 2259.433 100.00% Conn: 1 Mbps: 2259.433 Peak Mbps: 2259.433 Avg Mbps: 2259.433 4002 282675600 2259.146 100.00% Conn: 1 Mbps: 2259.146 Peak Mbps: 2259.433 Avg Mbps: 2259.146 5003 284932624 2279.461 100.00% Conn: 1 Mbps: 2279.461 Peak Mbps: 2279.461 Avg Mbps: 2279.461 --- 169.254.1.11 tcpbench statistics --- 1695396592 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2229.644/2256.514/2279.461/15.916 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 539205544 4313.644 100.00% Conn: 1 Mbps: 4313.644 Peak Mbps: 4313.644 Avg Mbps: 4313.644 2000 602858072 4822.865 100.00% Conn: 1 Mbps: 4822.865 Peak Mbps: 4822.865 Avg Mbps: 4822.865 3000 606692576 4858.399 100.00% Conn: 1 Mbps: 4858.399 Peak Mbps: 4858.399 Avg Mbps: 4858.399 4000 600799944 4806.400 100.00% Conn: 1 Mbps: 4806.400 Peak Mbps: 4858.399 Avg Mbps: 4806.400 5001 611807384 4894.459 100.00% Conn: 1 Mbps: 4894.459 Peak Mbps: 4894.459 Avg Mbps: 4894.459 --- fc00:0:0:1::11 tcpbench statistics --- 3565699448 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4313.644/4739.153/4894.459/214.908 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.060 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.060/0.060/0.060/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.072 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.072/0.072/0.072/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 798877286 6391.018 100.00% Conn: 1 Mbps: 6391.018 Peak Mbps: 6391.018 Avg Mbps: 6391.018 2000 797894166 6389.543 100.00% Conn: 1 Mbps: 6389.543 Peak Mbps: 6391.018 Avg Mbps: 6389.543 3000 797943240 6383.546 100.00% Conn: 1 Mbps: 6383.546 Peak Mbps: 6391.018 Avg Mbps: 6383.546 4000 797190772 6377.526 100.00% Conn: 1 Mbps: 6377.526 Peak Mbps: 6391.018 Avg Mbps: 6377.526 5000 797681512 6381.452 100.00% Conn: 1 Mbps: 6381.452 Peak Mbps: 6391.018 Avg Mbps: 6381.452 --- 169.254.1.12 tcpbench statistics --- 4786941328 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6377.526/6384.617/6391.018/5.034 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 770974236 6167.794 100.00% Conn: 1 Mbps: 6167.794 Peak Mbps: 6167.794 Avg Mbps: 6167.794 2000 776987744 6222.124 100.00% Conn: 1 Mbps: 6222.124 Peak Mbps: 6222.124 Avg Mbps: 6222.124 3000 777183920 6217.471 100.00% Conn: 1 Mbps: 6217.471 Peak Mbps: 6222.124 Avg Mbps: 6217.471 4000 777903232 6223.226 100.00% Conn: 1 Mbps: 6223.226 Peak Mbps: 6223.226 Avg Mbps: 6223.226 5000 780257344 6242.059 100.00% Conn: 1 Mbps: 6242.059 Peak Mbps: 6242.059 Avg Mbps: 6242.059 --- fc00:0:0:1::12 tcpbench statistics --- 4663040684 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6167.794/6214.535/6242.059/24.836 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.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-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.053 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.053/0.053/0.053/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 784488050 6275.904 100.00% Conn: 1 Mbps: 6275.904 Peak Mbps: 6275.904 Avg Mbps: 6275.904 2000 786983380 6302.169 100.00% Conn: 1 Mbps: 6302.169 Peak Mbps: 6302.169 Avg Mbps: 6302.169 3000 788880908 6311.047 100.00% Conn: 1 Mbps: 6311.047 Peak Mbps: 6311.047 Avg Mbps: 6311.047 4000 786852516 6301.121 100.00% Conn: 1 Mbps: 6301.121 Peak Mbps: 6311.047 Avg Mbps: 6301.121 5000 787441404 6299.531 100.00% Conn: 1 Mbps: 6299.531 Peak Mbps: 6311.047 Avg Mbps: 6299.531 --- 169.254.0.13 tcpbench statistics --- 4721106182 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6275.904/6297.955/6311.047/11.729 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 782736980 6261.896 100.00% Conn: 1 Mbps: 6261.896 Peak Mbps: 6261.896 Avg Mbps: 6261.896 2000 785129048 6287.320 100.00% Conn: 1 Mbps: 6287.320 Peak Mbps: 6287.320 Avg Mbps: 6287.320 3000 785946448 6287.572 100.00% Conn: 1 Mbps: 6287.572 Peak Mbps: 6287.572 Avg Mbps: 6287.572 4000 786371496 6290.972 100.00% Conn: 1 Mbps: 6290.972 Peak Mbps: 6290.972 Avg Mbps: 6290.972 5000 784802088 6278.417 100.00% Conn: 1 Mbps: 6278.417 Peak Mbps: 6290.972 Avg Mbps: 6278.417 --- fc00::13 tcpbench statistics --- 4709003444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6261.896/6281.235/6290.972/10.525 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m52.87s