START sys/net/pair 2025-03-17T02:40: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.033 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.033/0.033/0.033/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.038 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.038/0.038/0.038/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 1032556472 8260.452 100.00% Conn: 1 Mbps: 8260.452 Peak Mbps: 8260.452 Avg Mbps: 8260.452 2000 1029409064 8243.516 100.00% Conn: 1 Mbps: 8243.516 Peak Mbps: 8260.452 Avg Mbps: 8243.516 3000 1035028300 8280.226 100.00% Conn: 1 Mbps: 8280.226 Peak Mbps: 8280.226 Avg Mbps: 8280.226 4000 1027048508 8216.388 100.00% Conn: 1 Mbps: 8216.388 Peak Mbps: 8280.226 Avg Mbps: 8216.388 5000 1028948080 8231.585 100.00% Conn: 1 Mbps: 8231.585 Peak Mbps: 8280.226 Avg Mbps: 8231.585 --- 169.254.1.11 tcpbench statistics --- 6182391540 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8216.388/8246.433/8280.226/22.227 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 1023821920 8190.575 100.00% Conn: 1 Mbps: 8190.575 Peak Mbps: 8190.575 Avg Mbps: 8190.575 2000 1016448880 8139.731 100.00% Conn: 1 Mbps: 8139.731 Peak Mbps: 8190.575 Avg Mbps: 8139.731 3000 1018478448 8147.828 100.00% Conn: 1 Mbps: 8147.828 Peak Mbps: 8190.575 Avg Mbps: 8147.828 4000 1019794496 8158.356 100.00% Conn: 1 Mbps: 8158.356 Peak Mbps: 8190.575 Avg Mbps: 8158.356 5000 1019976840 8159.815 100.00% Conn: 1 Mbps: 8159.815 Peak Mbps: 8190.575 Avg Mbps: 8159.815 --- fc00:0:0:1::11 tcpbench statistics --- 6113106384 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 8139.731/8159.261/8190.575/17.285 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.050 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.050/0.050/0.050/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.097 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.097/0.097/0.097/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 560226536 4481.812 100.00% Conn: 1 Mbps: 4481.812 Peak Mbps: 4481.812 Avg Mbps: 4481.812 2001 574881792 4599.054 100.00% Conn: 1 Mbps: 4599.054 Peak Mbps: 4599.054 Avg Mbps: 4599.054 3001 573308928 4586.471 100.00% Conn: 1 Mbps: 4586.471 Peak Mbps: 4599.054 Avg Mbps: 4586.471 4001 572927264 4583.418 100.00% Conn: 1 Mbps: 4583.418 Peak Mbps: 4599.054 Avg Mbps: 4583.418 5002 573833216 4590.666 100.00% Conn: 1 Mbps: 4590.666 Peak Mbps: 4599.054 Avg Mbps: 4590.666 --- 169.254.1.12 tcpbench statistics --- 3427438088 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4481.812/4568.284/4599.054/43.554 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 534617240 4276.938 100.00% Conn: 1 Mbps: 4276.938 Peak Mbps: 4276.938 Avg Mbps: 4276.938 2000 549978112 4399.825 100.00% Conn: 1 Mbps: 4399.825 Peak Mbps: 4399.825 Avg Mbps: 4399.825 3000 548667392 4389.339 100.00% Conn: 1 Mbps: 4389.339 Peak Mbps: 4399.825 Avg Mbps: 4389.339 4001 550716224 4405.730 100.00% Conn: 1 Mbps: 4405.730 Peak Mbps: 4405.730 Avg Mbps: 4405.730 5001 549453824 4395.631 100.00% Conn: 1 Mbps: 4395.631 Peak Mbps: 4405.730 Avg Mbps: 4395.631 --- fc00:0:0:1::12 tcpbench statistics --- 3281838040 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4276.938/4373.492/4405.730/48.573 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.047 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.047/0.047/0.047/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.055 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.055/0.055/0.055/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 1092574748 8740.598 100.00% Conn: 1 Mbps: 8740.598 Peak Mbps: 8740.598 Avg Mbps: 8740.598 2000 1153016220 9233.363 100.00% Conn: 1 Mbps: 9233.363 Peak Mbps: 9233.363 Avg Mbps: 9233.363 3000 1153366072 9226.929 100.00% Conn: 1 Mbps: 9226.929 Peak Mbps: 9233.363 Avg Mbps: 9226.929 4000 1160487060 9283.896 100.00% Conn: 1 Mbps: 9283.896 Peak Mbps: 9283.896 Avg Mbps: 9283.896 5000 1167013836 9336.111 100.00% Conn: 1 Mbps: 9336.111 Peak Mbps: 9336.111 Avg Mbps: 9336.111 --- 169.254.0.13 tcpbench statistics --- 6899185476 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 8740.598/9164.179/9336.111/215.424 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 1000855024 8006.840 100.00% Conn: 1 Mbps: 8006.840 Peak Mbps: 8006.840 Avg Mbps: 8006.840 2000 1052965248 8432.154 100.00% Conn: 1 Mbps: 8432.154 Peak Mbps: 8432.154 Avg Mbps: 8432.154 3000 1051094240 8408.754 100.00% Conn: 1 Mbps: 8408.754 Peak Mbps: 8432.154 Avg Mbps: 8408.754 4000 1051717096 8413.737 100.00% Conn: 1 Mbps: 8413.737 Peak Mbps: 8432.154 Avg Mbps: 8413.737 5000 1051475824 8411.807 100.00% Conn: 1 Mbps: 8411.807 Peak Mbps: 8432.154 Avg Mbps: 8411.807 --- fc00::13 tcpbench statistics --- 6260501344 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 8006.840/8334.658/8432.154/164.113 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.037 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.037/0.037/0.037/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.041 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.041/0.041/0.041/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 558739176 4469.913 100.00% Conn: 1 Mbps: 4469.913 Peak Mbps: 4469.913 Avg Mbps: 4469.913 2000 570687488 4565.500 100.00% Conn: 1 Mbps: 4565.500 Peak Mbps: 4565.500 Avg Mbps: 4565.500 3000 572260352 4578.083 100.00% Conn: 1 Mbps: 4578.083 Peak Mbps: 4578.083 Avg Mbps: 4578.083 4001 568852480 4550.820 100.00% Conn: 1 Mbps: 4550.820 Peak Mbps: 4578.083 Avg Mbps: 4550.820 5001 569901056 4559.208 100.00% Conn: 1 Mbps: 4559.208 Peak Mbps: 4578.083 Avg Mbps: 4559.208 --- 169.254.1.11 tcpbench statistics --- 3408768744 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4469.913/4544.705/4578.083/38.440 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 1000 533898976 4271.192 100.00% Conn: 1 Mbps: 4271.192 Peak Mbps: 4271.192 Avg Mbps: 4271.192 2001 545521664 4364.173 100.00% Conn: 1 Mbps: 4364.173 Peak Mbps: 4364.173 Avg Mbps: 4364.173 3001 546832384 4374.659 100.00% Conn: 1 Mbps: 4374.659 Peak Mbps: 4374.659 Avg Mbps: 4374.659 4001 548143104 4385.145 100.00% Conn: 1 Mbps: 4385.145 Peak Mbps: 4385.145 Avg Mbps: 4385.145 5001 546570240 4372.562 100.00% Conn: 1 Mbps: 4372.562 Peak Mbps: 4385.145 Avg Mbps: 4372.562 --- fc00:0:0:1::11 tcpbench statistics --- 3266750176 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4271.192/4353.546/4385.145/41.716 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.032 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.032/0.032/0.032/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.036 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.036/0.036/0.036/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 1004096776 8032.774 100.00% Conn: 1 Mbps: 8032.774 Peak Mbps: 8032.774 Avg Mbps: 8032.774 2000 998870944 7998.967 100.00% Conn: 1 Mbps: 7998.967 Peak Mbps: 8032.774 Avg Mbps: 7998.967 3000 1007697952 8061.584 100.00% Conn: 1 Mbps: 8061.584 Peak Mbps: 8061.584 Avg Mbps: 8061.584 4000 999751328 7998.011 100.00% Conn: 1 Mbps: 7998.011 Peak Mbps: 8061.584 Avg Mbps: 7998.011 5000 1001504856 8012.039 100.00% Conn: 1 Mbps: 8012.039 Peak Mbps: 8061.584 Avg Mbps: 8012.039 --- 169.254.1.12 tcpbench statistics --- 6011770200 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7998.011/8020.675/8061.584/23.998 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 987509124 7900.073 100.00% Conn: 1 Mbps: 7900.073 Peak Mbps: 7900.073 Avg Mbps: 7900.073 2000 988273104 7914.099 100.00% Conn: 1 Mbps: 7914.099 Peak Mbps: 7914.099 Avg Mbps: 7914.099 3000 986292468 7890.340 100.00% Conn: 1 Mbps: 7890.340 Peak Mbps: 7914.099 Avg Mbps: 7890.340 4000 984910164 7879.281 100.00% Conn: 1 Mbps: 7879.281 Peak Mbps: 7914.099 Avg Mbps: 7879.281 5000 978746916 7829.975 100.00% Conn: 1 Mbps: 7829.975 Peak Mbps: 7914.099 Avg Mbps: 7829.975 --- fc00:0:0:1::12 tcpbench statistics --- 5902759380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7829.975/7882.754/7914.099/28.767 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.036 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.036/0.036/0.036/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.041 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.041/0.041/0.041/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 1239838370 9918.707 100.00% Conn: 1 Mbps: 9918.707 Peak Mbps: 9918.707 Avg Mbps: 9918.707 2000 1240165412 9931.255 100.00% Conn: 1 Mbps: 9931.255 Peak Mbps: 9931.255 Avg Mbps: 9931.255 3000 1243502444 9948.020 100.00% Conn: 1 Mbps: 9948.020 Peak Mbps: 9948.020 Avg Mbps: 9948.020 4000 1235683320 9885.467 100.00% Conn: 1 Mbps: 9885.467 Peak Mbps: 9948.020 Avg Mbps: 9885.467 5000 1229140120 9833.121 100.00% Conn: 1 Mbps: 9833.121 Peak Mbps: 9948.020 Avg Mbps: 9833.121 --- 169.254.0.13 tcpbench statistics --- 7433271614 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 9833.121/9903.314/9948.020/40.649 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 1452817988 11622.544 100.00% Conn: 1 Mbps: 11622.544 Peak Mbps: 11622.544 Avg Mbps: 11622.544 2000 1448269320 11597.752 100.00% Conn: 1 Mbps: 11597.752 Peak Mbps: 11622.544 Avg Mbps: 11597.752 3000 1443201440 11545.612 100.00% Conn: 1 Mbps: 11545.612 Peak Mbps: 11622.544 Avg Mbps: 11545.612 4000 1440912720 11527.302 100.00% Conn: 1 Mbps: 11527.302 Peak Mbps: 11622.544 Avg Mbps: 11527.302 5000 1438885568 11511.085 100.00% Conn: 1 Mbps: 11511.085 Peak Mbps: 11622.544 Avg Mbps: 11511.085 --- fc00::13 tcpbench statistics --- 8666111420 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 11511.085/11560.859/11622.544/42.432 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.037 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.037/0.037/0.037/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.044 ms --- fc00:0:0:1::11 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.044/0.044/0.044/0.000 ms ==== run-tcpbench-3-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.11 elapsed_ms bytes mbps bwidth 1000 558574664 4468.597 100.00% Conn: 1 Mbps: 4468.597 Peak Mbps: 4468.597 Avg Mbps: 4468.597 2000 569411680 4555.293 100.00% Conn: 1 Mbps: 4555.293 Peak Mbps: 4555.293 Avg Mbps: 4555.293 3001 565444608 4523.557 100.00% Conn: 1 Mbps: 4523.557 Peak Mbps: 4555.293 Avg Mbps: 4523.557 4001 565706752 4525.654 100.00% Conn: 1 Mbps: 4525.654 Peak Mbps: 4555.293 Avg Mbps: 4525.654 5001 565968896 4527.751 100.00% Conn: 1 Mbps: 4527.751 Peak Mbps: 4555.293 Avg Mbps: 4527.751 --- 169.254.1.11 tcpbench statistics --- 3391075496 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4468.597/4520.171/4555.293/28.257 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 1158666936 9269.335 100.00% Conn: 1 Mbps: 9269.335 Peak Mbps: 9269.335 Avg Mbps: 9269.335 2000 1204813824 9648.159 100.00% Conn: 1 Mbps: 9648.159 Peak Mbps: 9648.159 Avg Mbps: 9648.159 3000 1206386688 9651.094 100.00% Conn: 1 Mbps: 9651.094 Peak Mbps: 9651.094 Avg Mbps: 9651.094 4000 1208208544 9665.668 100.00% Conn: 1 Mbps: 9665.668 Peak Mbps: 9665.668 Avg Mbps: 9665.668 5000 1208483840 9667.871 100.00% Conn: 1 Mbps: 9667.871 Peak Mbps: 9667.871 Avg Mbps: 9667.871 --- fc00:0:0:1::11 tcpbench statistics --- 7194519384 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 9269.335/9580.425/9667.871/155.738 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.035 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.035/0.035/0.035/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.042 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.042/0.042/0.042/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 1348516374 10788.131 100.00% Conn: 1 Mbps: 10788.131 Peak Mbps: 10788.131 Avg Mbps: 10788.131 2000 1349502284 10806.825 100.00% Conn: 1 Mbps: 10806.825 Peak Mbps: 10806.825 Avg Mbps: 10806.825 3000 1350156604 10812.065 100.00% Conn: 1 Mbps: 10812.065 Peak Mbps: 10812.065 Avg Mbps: 10812.065 4000 1335826996 10686.616 100.00% Conn: 1 Mbps: 10686.616 Peak Mbps: 10812.065 Avg Mbps: 10686.616 5000 1344005996 10752.048 100.00% Conn: 1 Mbps: 10752.048 Peak Mbps: 10812.065 Avg Mbps: 10752.048 --- 169.254.1.12 tcpbench statistics --- 8069658698 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10686.616/10769.137/10812.065/46.316 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 1424208012 11393.664 100.00% Conn: 1 Mbps: 11393.664 Peak Mbps: 11393.664 Avg Mbps: 11393.664 2000 1427801624 11433.847 100.00% Conn: 1 Mbps: 11433.847 Peak Mbps: 11433.847 Avg Mbps: 11433.847 3000 1429371032 11446.415 100.00% Conn: 1 Mbps: 11446.415 Peak Mbps: 11446.415 Avg Mbps: 11446.415 4000 1436662240 11493.298 100.00% Conn: 1 Mbps: 11493.298 Peak Mbps: 11493.298 Avg Mbps: 11493.298 5000 1430188432 11441.507 100.00% Conn: 1 Mbps: 11441.507 Peak Mbps: 11493.298 Avg Mbps: 11441.507 --- fc00:0:0:1::12 tcpbench statistics --- 8572763364 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 11393.664/11441.746/11493.298/31.792 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.032 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.032/0.032/0.032/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.036 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.036/0.036/0.036/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 1466767724 11734.142 100.00% Conn: 1 Mbps: 11734.142 Peak Mbps: 11734.142 Avg Mbps: 11734.142 2000 1466756428 11745.797 100.00% Conn: 1 Mbps: 11745.797 Peak Mbps: 11745.797 Avg Mbps: 11745.797 3000 1466560132 11732.481 100.00% Conn: 1 Mbps: 11732.481 Peak Mbps: 11745.797 Avg Mbps: 11732.481 4000 1454242558 11633.940 100.00% Conn: 1 Mbps: 11633.940 Peak Mbps: 11745.797 Avg Mbps: 11633.940 5000 1466560132 11732.481 100.00% Conn: 1 Mbps: 11732.481 Peak Mbps: 11745.797 Avg Mbps: 11732.481 --- 169.254.0.13 tcpbench statistics --- 8794006664 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 11633.940/11715.768/11745.797/41.216 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 1631550776 13052.406 100.00% Conn: 1 Mbps: 13052.406 Peak Mbps: 13052.406 Avg Mbps: 13052.406 2000 1666678600 13346.776 100.00% Conn: 1 Mbps: 13346.776 Peak Mbps: 13346.776 Avg Mbps: 13346.776 3000 1674002504 13392.020 100.00% Conn: 1 Mbps: 13392.020 Peak Mbps: 13392.020 Avg Mbps: 13392.020 4000 1671844568 13374.757 100.00% Conn: 1 Mbps: 13374.757 Peak Mbps: 13392.020 Avg Mbps: 13374.757 5000 1674198680 13393.589 100.00% Conn: 1 Mbps: 13393.589 Peak Mbps: 13393.589 Avg Mbps: 13393.589 --- fc00::13 tcpbench statistics --- 9966840144 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 13052.406/13311.910/13393.589/130.841 Mbps ==== unconfig ==== # Destroy interfaces. /sbin/route -n -T 11 delete -inet 169.254.0.13 delete host 169.254.0.13 /sbin/route -n -T 11 delete -inet6 fc00::13 delete host fc00::13 /sbin/ifconfig lo13 rdomain 13 /sbin/ifconfig lo13 inet 169.254.0.13 delete /sbin/ifconfig lo13 inet6 fc00::13 delete /sbin/ifconfig pair11 destroy /sbin/ifconfig pair12 destroy /sbin/route -n -T 11 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 11 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo11 inet 127.0.0.1 delete /sbin/ifconfig lo11 inet6 ::1 delete /sbin/ifconfig lo11 destroy /sbin/route -n -T 12 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 12 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo12 inet 127.0.0.1 delete /sbin/ifconfig lo12 inet6 ::1 delete /sbin/ifconfig lo12 destroy /sbin/route -n -T 13 delete -inet 169.254.0.0/16 delete net 169.254.0.0/16 /sbin/route -n -T 13 delete -inet6 fc00::/48 delete net fc00::/48 /sbin/ifconfig lo13 inet 127.0.0.1 delete /sbin/ifconfig lo13 inet6 ::1 delete /sbin/ifconfig lo13 destroy rm -f stamp-ifconfig PASS sys/net/pair Duration 1m51.39s