START sys/net/pair 2025-03-18T04:52:42Z ==== 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 525680720 4205.446 100.00% Conn: 1 Mbps: 4205.446 Peak Mbps: 4205.446 Avg Mbps: 4205.446 2000 528740700 4234.160 100.00% Conn: 1 Mbps: 4234.160 Peak Mbps: 4234.160 Avg Mbps: 4234.160 3000 529138100 4233.105 100.00% Conn: 1 Mbps: 4233.105 Peak Mbps: 4234.160 Avg Mbps: 4233.105 4000 529535500 4236.284 100.00% Conn: 1 Mbps: 4236.284 Peak Mbps: 4236.284 Avg Mbps: 4236.284 5000 529122204 4232.978 100.00% Conn: 1 Mbps: 4232.978 Peak Mbps: 4236.284 Avg Mbps: 4232.978 --- 169.254.1.11 tcpbench statistics --- 3166761380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4205.446/4228.394/4236.284/11.535 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 523255928 4186.047 100.00% Conn: 1 Mbps: 4186.047 Peak Mbps: 4186.047 Avg Mbps: 4186.047 2000 521638616 4177.286 100.00% Conn: 1 Mbps: 4177.286 Peak Mbps: 4186.047 Avg Mbps: 4177.286 3000 522011232 4176.090 100.00% Conn: 1 Mbps: 4176.090 Peak Mbps: 4186.047 Avg Mbps: 4176.090 4000 522272856 4178.183 100.00% Conn: 1 Mbps: 4178.183 Peak Mbps: 4186.047 Avg Mbps: 4178.183 5000 522201504 4177.612 100.00% Conn: 1 Mbps: 4177.612 Peak Mbps: 4186.047 Avg Mbps: 4177.612 --- fc00:0:0:1::11 tcpbench statistics --- 3132899832 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4176.090/4179.044/4186.047/3.568 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.061 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.061/0.061/0.061/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.117 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.117/0.117/0.117/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 273336104 2184.504 100.00% Conn: 1 Mbps: 2184.504 Peak Mbps: 2184.504 Avg Mbps: 2184.504 2001 287366496 2301.233 100.00% Conn: 1 Mbps: 2301.233 Peak Mbps: 2301.233 Avg Mbps: 2301.233 3002 289714816 2317.719 100.00% Conn: 1 Mbps: 2317.719 Peak Mbps: 2317.719 Avg Mbps: 2317.719 4003 288510320 2305.777 100.00% Conn: 1 Mbps: 2305.777 Peak Mbps: 2317.719 Avg Mbps: 2305.777 5003 290751416 2328.340 100.00% Conn: 1 Mbps: 2328.340 Peak Mbps: 2328.340 Avg Mbps: 2328.340 --- 169.254.1.12 tcpbench statistics --- 1718458184 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2184.504/2287.515/2328.340/52.368 Mbps ==== run-tcpbench6-1-2 ==== rm -f nc.log nc -6 -v -l -V 12 fc00:0:0:1::12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on fc00:0:0:1::12 12345 # Test that path MTU dicovery is working. tcpbench -6 -t 5 -V 11 -b fc00:0:0:1::11 fc00:0:0:1::12 elapsed_ms bytes mbps bwidth 1000 255620944 2044.968 100.00% Conn: 1 Mbps: 2044.968 Peak Mbps: 2044.968 Avg Mbps: 2044.968 2001 269888304 2159.106 100.00% Conn: 1 Mbps: 2159.106 Peak Mbps: 2159.106 Avg Mbps: 2159.106 3002 275232912 2199.664 100.00% Conn: 1 Mbps: 2199.664 Peak Mbps: 2199.664 Avg Mbps: 2199.664 4001 274612200 2199.097 100.00% Conn: 1 Mbps: 2199.097 Peak Mbps: 2199.664 Avg Mbps: 2199.097 5002 277462120 2219.697 100.00% Conn: 1 Mbps: 2219.697 Peak Mbps: 2219.697 Avg Mbps: 2219.697 --- fc00:0:0:1::12 tcpbench statistics --- 1625393496 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2044.968/2164.506/2219.697/62.924 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.066 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.066/0.066/0.066/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.072 ms --- fc00::13 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-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 568519180 4548.153 100.00% Conn: 1 Mbps: 4548.153 Peak Mbps: 4548.153 Avg Mbps: 4548.153 2000 568208648 4550.219 100.00% Conn: 1 Mbps: 4550.219 Peak Mbps: 4550.219 Avg Mbps: 4550.219 3000 569036080 4552.289 100.00% Conn: 1 Mbps: 4552.289 Peak Mbps: 4552.289 Avg Mbps: 4552.289 4000 574996100 4599.969 100.00% Conn: 1 Mbps: 4599.969 Peak Mbps: 4599.969 Avg Mbps: 4599.969 5000 566055300 4532.975 100.00% Conn: 1 Mbps: 4532.975 Peak Mbps: 4599.969 Avg Mbps: 4532.975 --- 169.254.0.13 tcpbench statistics --- 3401203924 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4532.975/4556.721/4599.969/22.670 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 602284840 4818.279 100.00% Conn: 1 Mbps: 4818.279 Peak Mbps: 4818.279 Avg Mbps: 4818.279 2000 641540664 5132.325 100.00% Conn: 1 Mbps: 5132.325 Peak Mbps: 5132.325 Avg Mbps: 5132.325 3001 639901904 5119.215 100.00% Conn: 1 Mbps: 5119.215 Peak Mbps: 5132.325 Avg Mbps: 5119.215 4001 636617504 5092.940 100.00% Conn: 1 Mbps: 5092.940 Peak Mbps: 5132.325 Avg Mbps: 5092.940 5001 646669032 5173.352 100.00% Conn: 1 Mbps: 5173.352 Peak Mbps: 5173.352 Avg Mbps: 5173.352 --- fc00::13 tcpbench statistics --- 3812584232 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4818.279/5067.222/5173.352/127.153 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.048 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.048/0.048/0.048/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.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-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 1000 273518104 2188.145 100.00% Conn: 1 Mbps: 2188.145 Peak Mbps: 2188.145 Avg Mbps: 2188.145 2000 285392920 2285.429 100.00% Conn: 1 Mbps: 2285.429 Peak Mbps: 2285.429 Avg Mbps: 2285.429 3000 286072544 2288.580 100.00% Conn: 1 Mbps: 2288.580 Peak Mbps: 2288.580 Avg Mbps: 2288.580 4000 284403104 2275.225 100.00% Conn: 1 Mbps: 2275.225 Peak Mbps: 2288.580 Avg Mbps: 2275.225 5001 284243336 2271.675 100.00% Conn: 1 Mbps: 2271.675 Peak Mbps: 2288.580 Avg Mbps: 2271.675 --- 169.254.1.11 tcpbench statistics --- 1698620616 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2188.145/2261.811/2288.580/37.359 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 259092100 2070.666 100.00% Conn: 1 Mbps: 2070.666 Peak Mbps: 2070.666 Avg Mbps: 2070.666 2002 270578904 2164.631 100.00% Conn: 1 Mbps: 2164.631 Peak Mbps: 2164.631 Avg Mbps: 2164.631 3001 271294404 2172.528 100.00% Conn: 1 Mbps: 2172.528 Peak Mbps: 2172.528 Avg Mbps: 2172.528 4003 273853776 2186.457 100.00% Conn: 1 Mbps: 2186.457 Peak Mbps: 2186.457 Avg Mbps: 2186.457 5002 272484592 2184.245 100.00% Conn: 1 Mbps: 2184.245 Peak Mbps: 2186.457 Avg Mbps: 2184.245 --- fc00:0:0:1::11 tcpbench statistics --- 1621365488 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2070.666/2155.706/2186.457/43.254 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.052 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.052/0.052/0.052/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 533302744 4266.422 100.00% Conn: 1 Mbps: 4266.422 Peak Mbps: 4266.422 Avg Mbps: 4266.422 2000 534170096 4277.638 100.00% Conn: 1 Mbps: 4277.638 Peak Mbps: 4277.638 Avg Mbps: 4277.638 3000 534052808 4272.422 100.00% Conn: 1 Mbps: 4272.422 Peak Mbps: 4277.638 Avg Mbps: 4272.422 4000 534546576 4276.373 100.00% Conn: 1 Mbps: 4276.373 Peak Mbps: 4277.638 Avg Mbps: 4276.373 5000 534413360 4275.307 100.00% Conn: 1 Mbps: 4275.307 Peak Mbps: 4277.638 Avg Mbps: 4275.307 --- 169.254.1.12 tcpbench statistics --- 3204538392 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4266.422/4273.632/4277.638/3.995 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 530007912 4240.063 100.00% Conn: 1 Mbps: 4240.063 Peak Mbps: 4240.063 Avg Mbps: 4240.063 2000 529188240 4237.744 100.00% Conn: 1 Mbps: 4237.744 Peak Mbps: 4240.063 Avg Mbps: 4237.744 3000 528776976 4230.216 100.00% Conn: 1 Mbps: 4230.216 Peak Mbps: 4240.063 Avg Mbps: 4230.216 4000 528365712 4226.926 100.00% Conn: 1 Mbps: 4226.926 Peak Mbps: 4240.063 Avg Mbps: 4226.926 5000 528974040 4231.792 100.00% Conn: 1 Mbps: 4231.792 Peak Mbps: 4240.063 Avg Mbps: 4231.792 --- fc00:0:0:1::12 tcpbench statistics --- 3173829960 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4226.926/4233.348/4240.063/4.856 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.046 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.046/0.046/0.046/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.050 ms --- fc00::13 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-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 793055378 6344.443 100.00% Conn: 1 Mbps: 6344.443 Peak Mbps: 6344.443 Avg Mbps: 6344.443 2000 793199420 6351.947 100.00% Conn: 1 Mbps: 6351.947 Peak Mbps: 6351.947 Avg Mbps: 6351.947 3000 794050036 6352.400 100.00% Conn: 1 Mbps: 6352.400 Peak Mbps: 6352.400 Avg Mbps: 6352.400 4000 794246332 6353.971 100.00% Conn: 1 Mbps: 6353.971 Peak Mbps: 6353.971 Avg Mbps: 6353.971 5000 793297568 6346.381 100.00% Conn: 1 Mbps: 6346.381 Peak Mbps: 6353.971 Avg Mbps: 6346.381 --- 169.254.0.13 tcpbench statistics --- 4761473462 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6344.443/6349.828/6353.971/3.719 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 775719836 6205.759 100.00% Conn: 1 Mbps: 6205.759 Peak Mbps: 6205.759 Avg Mbps: 6205.759 2000 776464608 6217.935 100.00% Conn: 1 Mbps: 6217.935 Peak Mbps: 6217.935 Avg Mbps: 6217.935 3000 778753328 6230.027 100.00% Conn: 1 Mbps: 6230.027 Peak Mbps: 6230.027 Avg Mbps: 6230.027 4000 778066712 6224.534 100.00% Conn: 1 Mbps: 6224.534 Peak Mbps: 6230.027 Avg Mbps: 6224.534 5000 777935928 6229.717 100.00% Conn: 1 Mbps: 6229.717 Peak Mbps: 6230.027 Avg Mbps: 6229.717 --- fc00::13 tcpbench statistics --- 4665595652 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6205.759/6221.594/6230.027/9.054 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.063 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.063/0.063/0.063/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.061 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.061/0.061/0.061/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 1002 275318208 2198.149 100.00% Conn: 1 Mbps: 2198.149 Peak Mbps: 2198.149 Avg Mbps: 2198.149 2002 283240192 2265.922 100.00% Conn: 1 Mbps: 2265.922 Peak Mbps: 2265.922 Avg Mbps: 2265.922 3002 283858720 2273.143 100.00% Conn: 1 Mbps: 2273.143 Peak Mbps: 2273.143 Avg Mbps: 2273.143 4002 283381376 2269.320 100.00% Conn: 1 Mbps: 2269.320 Peak Mbps: 2273.143 Avg Mbps: 2269.320 5004 285284168 2279.993 100.00% Conn: 1 Mbps: 2279.993 Peak Mbps: 2279.993 Avg Mbps: 2279.993 --- 169.254.1.11 tcpbench statistics --- 1696719584 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2198.149/2257.305/2279.993/29.945 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 538437096 4307.497 100.00% Conn: 1 Mbps: 4307.497 Peak Mbps: 4307.497 Avg Mbps: 4307.497 2000 602397800 4824.006 100.00% Conn: 1 Mbps: 4824.006 Peak Mbps: 4824.006 Avg Mbps: 4824.006 3000 604224912 4833.799 100.00% Conn: 1 Mbps: 4833.799 Peak Mbps: 4833.799 Avg Mbps: 4833.799 4000 602983384 4823.867 100.00% Conn: 1 Mbps: 4823.867 Peak Mbps: 4833.799 Avg Mbps: 4823.867 5000 604046536 4832.372 100.00% Conn: 1 Mbps: 4832.372 Peak Mbps: 4833.799 Avg Mbps: 4832.372 --- fc00:0:0:1::11 tcpbench statistics --- 3556926448 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4307.497/4724.308/4833.799/208.446 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.061 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.061/0.061/0.061/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.048 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 789932446 6319.460 100.00% Conn: 1 Mbps: 6319.460 Peak Mbps: 6319.460 Avg Mbps: 6319.460 2000 790778436 6332.560 100.00% Conn: 1 Mbps: 6332.560 Peak Mbps: 6332.560 Avg Mbps: 6332.560 3000 790287696 6322.302 100.00% Conn: 1 Mbps: 6322.302 Peak Mbps: 6332.560 Avg Mbps: 6322.302 4000 791432756 6331.462 100.00% Conn: 1 Mbps: 6331.462 Peak Mbps: 6332.560 Avg Mbps: 6331.462 5000 790287696 6322.302 100.00% Conn: 1 Mbps: 6322.302 Peak Mbps: 6332.560 Avg Mbps: 6322.302 --- 169.254.1.12 tcpbench statistics --- 4743955490 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6319.460/6325.617/6332.560/5.334 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 777895956 6223.168 100.00% Conn: 1 Mbps: 6223.168 Peak Mbps: 6223.168 Avg Mbps: 6223.168 2000 779734208 6244.118 100.00% Conn: 1 Mbps: 6244.118 Peak Mbps: 6244.118 Avg Mbps: 6244.118 3000 780420824 6243.367 100.00% Conn: 1 Mbps: 6243.367 Peak Mbps: 6244.118 Avg Mbps: 6243.367 4000 779864992 6238.920 100.00% Conn: 1 Mbps: 6238.920 Peak Mbps: 6244.118 Avg Mbps: 6238.920 5000 779145680 6233.165 100.00% Conn: 1 Mbps: 6233.165 Peak Mbps: 6244.118 Avg Mbps: 6233.165 --- fc00:0:0:1::12 tcpbench statistics --- 4677286308 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6223.168/6236.547/6244.118/7.745 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.054 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.054/0.054/0.054/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.048 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.048/0.048/0.048/0.000 ms ==== run-tcpbench-3-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 791570354 6332.563 100.00% Conn: 1 Mbps: 6332.563 Peak Mbps: 6332.563 Avg Mbps: 6332.563 2000 791955792 6341.988 100.00% Conn: 1 Mbps: 6341.988 Peak Mbps: 6341.988 Avg Mbps: 6341.988 3000 791628572 6333.029 100.00% Conn: 1 Mbps: 6333.029 Peak Mbps: 6341.988 Avg Mbps: 6333.029 4000 793068076 6344.545 100.00% Conn: 1 Mbps: 6344.545 Peak Mbps: 6344.545 Avg Mbps: 6344.545 5000 792610328 6340.883 100.00% Conn: 1 Mbps: 6340.883 Peak Mbps: 6344.545 Avg Mbps: 6340.883 --- 169.254.0.13 tcpbench statistics --- 4753312790 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6332.563/6338.601/6344.545/4.889 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 795831836 6366.655 100.00% Conn: 1 Mbps: 6366.655 Peak Mbps: 6366.655 Avg Mbps: 6366.655 2000 799024848 6398.597 100.00% Conn: 1 Mbps: 6398.597 Peak Mbps: 6398.597 Avg Mbps: 6398.597 3000 799515288 6396.122 100.00% Conn: 1 Mbps: 6396.122 Peak Mbps: 6398.597 Avg Mbps: 6396.122 4000 798501712 6388.014 100.00% Conn: 1 Mbps: 6388.014 Peak Mbps: 6398.597 Avg Mbps: 6388.014 5000 799711464 6397.692 100.00% Conn: 1 Mbps: 6397.692 Peak Mbps: 6398.597 Avg Mbps: 6397.692 --- fc00::13 tcpbench statistics --- 4791838868 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6366.655/6389.416/6398.597/11.982 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.81s