START sys/net/pair 2025-03-22T06:36:58Z ==== 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.184 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.184/0.184/0.184/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.167 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.167/0.167/0.167/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 299369368 2394.955 100.00% Conn: 1 Mbps: 2394.955 Peak Mbps: 2394.955 Avg Mbps: 2394.955 2000 313111460 2507.399 100.00% Conn: 1 Mbps: 2507.399 Peak Mbps: 2507.399 Avg Mbps: 2507.399 3000 314112908 2512.903 100.00% Conn: 1 Mbps: 2512.903 Peak Mbps: 2512.903 Avg Mbps: 2512.903 4000 312706112 2501.649 100.00% Conn: 1 Mbps: 2501.649 Peak Mbps: 2512.903 Avg Mbps: 2501.649 5000 315519704 2524.158 100.00% Conn: 1 Mbps: 2524.158 Peak Mbps: 2524.158 Avg Mbps: 2524.158 --- 169.254.1.11 tcpbench statistics --- 1871674380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2394.955/2488.213/2524.158/47.217 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 317770096 2542.161 100.00% Conn: 1 Mbps: 2542.161 Peak Mbps: 2542.161 Avg Mbps: 2542.161 2000 311752744 2494.022 100.00% Conn: 1 Mbps: 2494.022 Peak Mbps: 2542.161 Avg Mbps: 2494.022 3000 312426624 2499.413 100.00% Conn: 1 Mbps: 2499.413 Peak Mbps: 2542.161 Avg Mbps: 2499.413 4000 311372200 2490.978 100.00% Conn: 1 Mbps: 2490.978 Peak Mbps: 2542.161 Avg Mbps: 2490.978 5000 312902304 2503.218 100.00% Conn: 1 Mbps: 2503.218 Peak Mbps: 2542.161 Avg Mbps: 2503.218 --- fc00:0:0:1::11 tcpbench statistics --- 1880074904 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2490.978/2505.958/2542.161/18.590 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.219 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.219/0.219/0.219/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.269 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.269/0.269/0.269/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 228898808 1829.361 100.00% Conn: 1 Mbps: 1829.361 Peak Mbps: 1829.361 Avg Mbps: 1829.361 2002 227299752 1818.398 100.00% Conn: 1 Mbps: 1818.398 Peak Mbps: 1829.361 Avg Mbps: 1818.398 3007 211574816 1685.855 100.00% Conn: 1 Mbps: 1685.855 Peak Mbps: 1829.361 Avg Mbps: 1685.855 4006 211224952 1691.491 100.00% Conn: 1 Mbps: 1691.491 Peak Mbps: 1829.361 Avg Mbps: 1691.491 5007 232946384 1863.571 100.00% Conn: 1 Mbps: 1863.571 Peak Mbps: 1863.571 Avg Mbps: 1863.571 --- 169.254.1.12 tcpbench statistics --- 1343210376 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1685.855/1777.735/1863.571/74.252 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 1003 219812308 1753.239 100.00% Conn: 1 Mbps: 1753.239 Peak Mbps: 1753.239 Avg Mbps: 1753.239 2002 209850532 1680.485 100.00% Conn: 1 Mbps: 1680.485 Peak Mbps: 1753.239 Avg Mbps: 1680.485 3002 203916808 1631.334 100.00% Conn: 1 Mbps: 1631.334 Peak Mbps: 1753.239 Avg Mbps: 1631.334 4004 207134976 1655.424 100.00% Conn: 1 Mbps: 1655.424 Peak Mbps: 1753.239 Avg Mbps: 1655.424 5005 194464264 1555.714 100.00% Conn: 1 Mbps: 1555.714 Peak Mbps: 1753.239 Avg Mbps: 1555.714 --- fc00:0:0:1::12 tcpbench statistics --- 1234147188 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1555.714/1655.239/1753.239/64.371 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.108 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.108/0.108/0.108/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.123 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.123/0.123/0.123/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 1001 535599404 4280.515 100.00% Conn: 1 Mbps: 4280.515 Peak Mbps: 4280.515 Avg Mbps: 4280.515 2000 566349656 4535.333 100.00% Conn: 1 Mbps: 4535.333 Peak Mbps: 4535.333 Avg Mbps: 4535.333 3001 538683088 4309.465 100.00% Conn: 1 Mbps: 4309.465 Peak Mbps: 4535.333 Avg Mbps: 4309.465 4001 602054032 4816.432 100.00% Conn: 1 Mbps: 4816.432 Peak Mbps: 4816.432 Avg Mbps: 4816.432 5001 620085384 4960.683 100.00% Conn: 1 Mbps: 4960.683 Peak Mbps: 4960.683 Avg Mbps: 4960.683 --- 169.254.0.13 tcpbench statistics --- 3484266544 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4280.515/4580.485/4960.683/270.442 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 1001 540673096 4321.064 100.00% Conn: 1 Mbps: 4321.064 Peak Mbps: 4321.064 Avg Mbps: 4321.064 2000 527462056 4223.920 100.00% Conn: 1 Mbps: 4223.920 Peak Mbps: 4321.064 Avg Mbps: 4223.920 3000 578375544 4627.004 100.00% Conn: 1 Mbps: 4627.004 Peak Mbps: 4627.004 Avg Mbps: 4627.004 4001 562231408 4497.851 100.00% Conn: 1 Mbps: 4497.851 Peak Mbps: 4627.004 Avg Mbps: 4497.851 5001 578594408 4628.755 100.00% Conn: 1 Mbps: 4628.755 Peak Mbps: 4628.755 Avg Mbps: 4628.755 --- fc00::13 tcpbench statistics --- 3329597416 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4223.920/4459.719/4628.755/162.996 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.103 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.103/0.103/0.103/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.097 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.097/0.097/0.097/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 1002 220674808 1761.875 100.00% Conn: 1 Mbps: 1761.875 Peak Mbps: 1761.875 Avg Mbps: 1761.875 2002 245482704 1963.862 100.00% Conn: 1 Mbps: 1963.862 Peak Mbps: 1963.862 Avg Mbps: 1963.862 3003 220029600 1760.237 100.00% Conn: 1 Mbps: 1760.237 Peak Mbps: 1963.862 Avg Mbps: 1760.237 4005 208124648 1661.674 100.00% Conn: 1 Mbps: 1661.674 Peak Mbps: 1963.862 Avg Mbps: 1661.674 5005 217664040 1741.312 100.00% Conn: 1 Mbps: 1741.312 Peak Mbps: 1963.862 Avg Mbps: 1741.312 --- 169.254.1.11 tcpbench statistics --- 1362414240 bytes sent over 6.004 seconds bandwidth min/avg/max/std-dev = 1661.674/1777.792/1963.862/99.998 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 234691156 1875.654 100.00% Conn: 1 Mbps: 1875.654 Peak Mbps: 1875.654 Avg Mbps: 1875.654 2002 227749264 1821.994 100.00% Conn: 1 Mbps: 1821.994 Peak Mbps: 1875.654 Avg Mbps: 1821.994 3002 222792836 1782.343 100.00% Conn: 1 Mbps: 1782.343 Peak Mbps: 1875.654 Avg Mbps: 1782.343 4002 231667840 1853.343 100.00% Conn: 1 Mbps: 1853.343 Peak Mbps: 1875.654 Avg Mbps: 1853.343 5002 204815396 1640.163 100.00% Conn: 1 Mbps: 1640.163 Peak Mbps: 1875.654 Avg Mbps: 1640.163 --- fc00:0:0:1::11 tcpbench statistics --- 1331043860 bytes sent over 6.002 seconds bandwidth min/avg/max/std-dev = 1640.163/1794.699/1875.654/83.393 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.134 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.134/0.134/0.134/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.129 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.129/0.129/0.129/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 331015696 2648.126 100.00% Conn: 1 Mbps: 2648.126 Peak Mbps: 2648.126 Avg Mbps: 2648.126 2000 325077448 2603.223 100.00% Conn: 1 Mbps: 2603.223 Peak Mbps: 2648.126 Avg Mbps: 2603.223 3000 327630552 2621.044 100.00% Conn: 1 Mbps: 2621.044 Peak Mbps: 2648.126 Avg Mbps: 2621.044 4000 328564904 2631.150 100.00% Conn: 1 Mbps: 2631.150 Peak Mbps: 2648.126 Avg Mbps: 2631.150 5000 321044768 2568.358 100.00% Conn: 1 Mbps: 2568.358 Peak Mbps: 2648.126 Avg Mbps: 2568.358 --- 169.254.1.12 tcpbench statistics --- 1967130680 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2568.358/2614.380/2648.126/27.228 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 324150288 2593.202 100.00% Conn: 1 Mbps: 2593.202 Peak Mbps: 2593.202 Avg Mbps: 2593.202 2000 323780436 2592.836 100.00% Conn: 1 Mbps: 2592.836 Peak Mbps: 2593.202 Avg Mbps: 2592.836 3000 328351464 2626.812 100.00% Conn: 1 Mbps: 2626.812 Peak Mbps: 2626.812 Avg Mbps: 2626.812 4000 324694356 2597.555 100.00% Conn: 1 Mbps: 2597.555 Peak Mbps: 2626.812 Avg Mbps: 2597.555 5000 323487696 2587.902 100.00% Conn: 1 Mbps: 2587.902 Peak Mbps: 2626.812 Avg Mbps: 2587.902 --- fc00:0:0:1::12 tcpbench statistics --- 1949508456 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 2587.902/2599.661/2626.812/13.915 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.145 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.145/0.145/0.145/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.131 ms --- fc00::13 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-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 497760186 3982.081 100.00% Conn: 1 Mbps: 3982.081 Peak Mbps: 3982.081 Avg Mbps: 3982.081 2000 496694312 3977.532 100.00% Conn: 1 Mbps: 3977.532 Peak Mbps: 3982.081 Avg Mbps: 3977.532 3000 501945230 4015.562 100.00% Conn: 1 Mbps: 4015.562 Peak Mbps: 4015.562 Avg Mbps: 4015.562 4000 502746772 4021.974 100.00% Conn: 1 Mbps: 4021.974 Peak Mbps: 4021.974 Avg Mbps: 4021.974 5000 496857880 3974.863 100.00% Conn: 1 Mbps: 3974.863 Peak Mbps: 4021.974 Avg Mbps: 3974.863 --- 169.254.0.13 tcpbench statistics --- 2991275546 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3974.863/3994.403/4021.974/20.130 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 488461436 3907.691 100.00% Conn: 1 Mbps: 3907.691 Peak Mbps: 3907.691 Avg Mbps: 3907.691 2000 482462176 3863.561 100.00% Conn: 1 Mbps: 3863.561 Peak Mbps: 3907.691 Avg Mbps: 3863.561 3000 492699480 3941.596 100.00% Conn: 1 Mbps: 3941.596 Peak Mbps: 3941.596 Avg Mbps: 3941.596 4000 490930440 3927.444 100.00% Conn: 1 Mbps: 3927.444 Peak Mbps: 3941.596 Avg Mbps: 3927.444 5000 489949560 3919.596 100.00% Conn: 1 Mbps: 3919.596 Peak Mbps: 3941.596 Avg Mbps: 3919.596 --- fc00::13 tcpbench statistics --- 2938997396 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3863.561/3911.978/3941.596/26.597 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.157 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.157/0.157/0.157/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.140 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.140/0.140/0.140/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 210990072 1686.234 100.00% Conn: 1 Mbps: 1686.234 Peak Mbps: 1686.234 Avg Mbps: 1686.234 2002 212466976 1699.736 100.00% Conn: 1 Mbps: 1699.736 Peak Mbps: 1699.736 Avg Mbps: 1699.736 3002 241438520 1931.508 100.00% Conn: 1 Mbps: 1931.508 Peak Mbps: 1931.508 Avg Mbps: 1931.508 4003 197722376 1581.779 100.00% Conn: 1 Mbps: 1581.779 Peak Mbps: 1931.508 Avg Mbps: 1581.779 5004 226451976 1809.806 100.00% Conn: 1 Mbps: 1809.806 Peak Mbps: 1931.508 Avg Mbps: 1809.806 --- 169.254.1.11 tcpbench statistics --- 1314720928 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 1581.779/1741.813/1931.508/119.229 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 390665312 3125.322 100.00% Conn: 1 Mbps: 3125.322 Peak Mbps: 3125.322 Avg Mbps: 3125.322 2001 425389504 3403.116 100.00% Conn: 1 Mbps: 3403.116 Peak Mbps: 3403.116 Avg Mbps: 3403.116 3001 422239200 3381.295 100.00% Conn: 1 Mbps: 3381.295 Peak Mbps: 3403.116 Avg Mbps: 3381.295 4001 406922848 3255.383 100.00% Conn: 1 Mbps: 3255.383 Peak Mbps: 3403.116 Avg Mbps: 3255.383 5001 416713288 3333.706 100.00% Conn: 1 Mbps: 3333.706 Peak Mbps: 3403.116 Avg Mbps: 3333.706 --- fc00:0:0:1::11 tcpbench statistics --- 2471233320 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 3125.322/3299.765/3403.116/100.877 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.104 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.104/0.104/0.104/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.118 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.118/0.118/0.118/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 528367696 4226.942 100.00% Conn: 1 Mbps: 4226.942 Peak Mbps: 4226.942 Avg Mbps: 4226.942 2000 524879146 4203.236 100.00% Conn: 1 Mbps: 4203.236 Peak Mbps: 4226.942 Avg Mbps: 4203.236 3000 524944542 4199.556 100.00% Conn: 1 Mbps: 4199.556 Peak Mbps: 4226.942 Avg Mbps: 4199.556 4000 525189948 4201.520 100.00% Conn: 1 Mbps: 4201.520 Peak Mbps: 4226.942 Avg Mbps: 4201.520 5000 528250106 4226.001 100.00% Conn: 1 Mbps: 4226.001 Peak Mbps: 4226.942 Avg Mbps: 4226.001 --- 169.254.1.12 tcpbench statistics --- 3164051622 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4199.556/4211.451/4226.942/12.323 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 508703036 4069.624 100.00% Conn: 1 Mbps: 4069.624 Peak Mbps: 4069.624 Avg Mbps: 4069.624 2000 508161232 4069.359 100.00% Conn: 1 Mbps: 4069.359 Peak Mbps: 4069.624 Avg Mbps: 4069.359 3000 519492124 4155.937 100.00% Conn: 1 Mbps: 4155.937 Peak Mbps: 4155.937 Avg Mbps: 4155.937 4000 519964488 4159.716 100.00% Conn: 1 Mbps: 4159.716 Peak Mbps: 4159.716 Avg Mbps: 4159.716 5000 498548608 3988.389 100.00% Conn: 1 Mbps: 3988.389 Peak Mbps: 4159.716 Avg Mbps: 3988.389 --- fc00:0:0:1::12 tcpbench statistics --- 3053810448 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3988.389/4088.605/4159.716/63.819 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.129 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.129/0.129/0.129/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.078 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.078/0.078/0.078/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 503533168 4028.265 100.00% Conn: 1 Mbps: 4028.265 Peak Mbps: 4028.265 Avg Mbps: 4028.265 2000 502468674 4023.773 100.00% Conn: 1 Mbps: 4023.773 Peak Mbps: 4028.265 Avg Mbps: 4023.773 3000 499049864 3992.399 100.00% Conn: 1 Mbps: 3992.399 Peak Mbps: 4028.265 Avg Mbps: 3992.399 4000 507588740 4060.710 100.00% Conn: 1 Mbps: 4060.710 Peak Mbps: 4060.710 Avg Mbps: 4060.710 5000 507277938 4058.224 100.00% Conn: 1 Mbps: 4058.224 Peak Mbps: 4060.710 Avg Mbps: 4058.224 --- 169.254.0.13 tcpbench statistics --- 3018657446 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 3992.399/4032.674/4060.710/25.138 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 500924684 4007.397 100.00% Conn: 1 Mbps: 4007.397 Peak Mbps: 4007.397 Avg Mbps: 4007.397 2000 500902720 4011.233 100.00% Conn: 1 Mbps: 4011.233 Peak Mbps: 4011.233 Avg Mbps: 4011.233 3000 516748540 4133.988 100.00% Conn: 1 Mbps: 4133.988 Peak Mbps: 4133.988 Avg Mbps: 4133.988 4000 529707896 4237.663 100.00% Conn: 1 Mbps: 4237.663 Peak Mbps: 4237.663 Avg Mbps: 4237.663 5000 526377512 4211.020 100.00% Conn: 1 Mbps: 4211.020 Peak Mbps: 4237.663 Avg Mbps: 4211.020 --- fc00::13 tcpbench statistics --- 3103453760 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4007.397/4120.260/4237.663/96.782 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 1m54.05s