START sys/net/pair 2025-03-23T04:43:36Z ==== 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.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-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.047 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.047/0.047/0.047/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 526403988 4211.232 100.00% Conn: 1 Mbps: 4211.232 Peak Mbps: 4211.232 Avg Mbps: 4211.232 2000 525172048 4205.582 100.00% Conn: 1 Mbps: 4205.582 Peak Mbps: 4211.232 Avg Mbps: 4205.582 3000 525958900 4207.671 100.00% Conn: 1 Mbps: 4207.671 Peak Mbps: 4211.232 Avg Mbps: 4207.671 4000 525593292 4204.746 100.00% Conn: 1 Mbps: 4204.746 Peak Mbps: 4211.232 Avg Mbps: 4204.746 5000 525426384 4203.411 100.00% Conn: 1 Mbps: 4203.411 Peak Mbps: 4211.232 Avg Mbps: 4203.411 --- 169.254.1.11 tcpbench statistics --- 3153933308 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4203.411/4206.528/4211.232/2.728 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 520338424 4162.707 100.00% Conn: 1 Mbps: 4162.707 Peak Mbps: 4162.707 Avg Mbps: 4162.707 2000 518435704 4151.637 100.00% Conn: 1 Mbps: 4151.637 Peak Mbps: 4162.707 Avg Mbps: 4151.637 3000 518197864 4145.583 100.00% Conn: 1 Mbps: 4145.583 Peak Mbps: 4162.707 Avg Mbps: 4145.583 4000 518324712 4146.598 100.00% Conn: 1 Mbps: 4146.598 Peak Mbps: 4162.707 Avg Mbps: 4146.598 5000 518586336 4148.691 100.00% Conn: 1 Mbps: 4148.691 Peak Mbps: 4162.707 Avg Mbps: 4148.691 --- fc00:0:0:1::11 tcpbench statistics --- 3111843064 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4145.583/4151.043/4162.707/6.189 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.082 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.082/0.082/0.082/0.000 ms ==== run-ping6-1-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 11 -I fc00:0:0:1::11 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.131 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.131/0.131/0.131/0.000 ms ==== run-tcpbench-1-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 11 -b 169.254.1.11 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 274625264 2197.002 100.00% Conn: 1 Mbps: 2197.002 Peak Mbps: 2197.002 Avg Mbps: 2197.002 2001 282729048 2261.832 100.00% Conn: 1 Mbps: 2261.832 Peak Mbps: 2261.832 Avg Mbps: 2261.832 3002 287462128 2299.697 100.00% Conn: 1 Mbps: 2299.697 Peak Mbps: 2299.697 Avg Mbps: 2299.697 4002 287509688 2300.078 100.00% Conn: 1 Mbps: 2300.078 Peak Mbps: 2300.078 Avg Mbps: 2300.078 5001 288513648 2310.420 100.00% Conn: 1 Mbps: 2310.420 Peak Mbps: 2310.420 Avg Mbps: 2310.420 --- 169.254.1.12 tcpbench statistics --- 1709095296 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2197.002/2273.806/2310.420/41.817 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 256473092 2051.785 100.00% Conn: 1 Mbps: 2051.785 Peak Mbps: 2051.785 Avg Mbps: 2051.785 2000 270653628 2165.229 100.00% Conn: 1 Mbps: 2165.229 Peak Mbps: 2165.229 Avg Mbps: 2165.229 3001 274947836 2199.583 100.00% Conn: 1 Mbps: 2199.583 Peak Mbps: 2199.583 Avg Mbps: 2199.583 4001 277146532 2219.392 100.00% Conn: 1 Mbps: 2219.392 Peak Mbps: 2219.392 Avg Mbps: 2219.392 5004 277742828 2217.508 100.00% Conn: 1 Mbps: 2217.508 Peak Mbps: 2219.392 Avg Mbps: 2217.508 --- fc00:0:0:1::12 tcpbench statistics --- 1629861172 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2051.785/2170.699/2219.392/62.557 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.073 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.073/0.073/0.073/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.073 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.073/0.073/0.073/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 568700304 4549.602 100.00% Conn: 1 Mbps: 4549.602 Peak Mbps: 4549.602 Avg Mbps: 4549.602 2000 582697292 4666.245 100.00% Conn: 1 Mbps: 4666.245 Peak Mbps: 4666.245 Avg Mbps: 4666.245 3000 572031916 4576.255 100.00% Conn: 1 Mbps: 4576.255 Peak Mbps: 4666.245 Avg Mbps: 4576.255 4000 589525464 4716.204 100.00% Conn: 1 Mbps: 4716.204 Peak Mbps: 4716.204 Avg Mbps: 4716.204 5000 585139008 4685.798 100.00% Conn: 1 Mbps: 4685.798 Peak Mbps: 4716.204 Avg Mbps: 4685.798 --- 169.254.0.13 tcpbench statistics --- 3445981416 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4549.602/4638.821/4716.204/64.531 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 607743336 4861.947 100.00% Conn: 1 Mbps: 4861.947 Peak Mbps: 4861.947 Avg Mbps: 4861.947 2000 646117064 5168.937 100.00% Conn: 1 Mbps: 5168.937 Peak Mbps: 5168.937 Avg Mbps: 5168.937 3000 644590344 5161.885 100.00% Conn: 1 Mbps: 5161.885 Peak Mbps: 5168.937 Avg Mbps: 5161.885 4000 644362640 5154.901 100.00% Conn: 1 Mbps: 5154.901 Peak Mbps: 5168.937 Avg Mbps: 5154.901 5001 643856936 5150.855 100.00% Conn: 1 Mbps: 5150.855 Peak Mbps: 5168.937 Avg Mbps: 5150.855 --- fc00::13 tcpbench statistics --- 3832511464 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4861.947/5099.705/5168.937/119.039 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.052 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.052/0.052/0.052/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.077 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.077/0.077/0.077/0.000 ms ==== run-tcpbench-2-1 ==== rm -f nc.log nc -4 -v -l -V 11 169.254.1.11 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.11 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 12 -b 169.254.1.12 169.254.1.11 elapsed_ms bytes mbps bwidth 1001 273174592 2183.214 100.00% Conn: 1 Mbps: 2183.214 Peak Mbps: 2183.214 Avg Mbps: 2183.214 2000 283811096 2272.762 100.00% Conn: 1 Mbps: 2272.762 Peak Mbps: 2272.762 Avg Mbps: 2272.762 3001 287548824 2300.391 100.00% Conn: 1 Mbps: 2300.391 Peak Mbps: 2300.391 Avg Mbps: 2300.391 4002 286313184 2290.505 100.00% Conn: 1 Mbps: 2290.505 Peak Mbps: 2300.391 Avg Mbps: 2290.505 5004 288325240 2304.298 100.00% Conn: 1 Mbps: 2304.298 Peak Mbps: 2304.298 Avg Mbps: 2304.298 --- 169.254.1.11 tcpbench statistics --- 1705561424 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2183.214/2270.234/2304.298/44.855 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 257136872 2057.095 100.00% Conn: 1 Mbps: 2057.095 Peak Mbps: 2057.095 Avg Mbps: 2057.095 2002 272083748 2174.495 100.00% Conn: 1 Mbps: 2174.495 Peak Mbps: 2174.495 Avg Mbps: 2174.495 3001 274318936 2196.748 100.00% Conn: 1 Mbps: 2196.748 Peak Mbps: 2196.748 Avg Mbps: 2196.748 4002 276482512 2211.860 100.00% Conn: 1 Mbps: 2211.860 Peak Mbps: 2211.860 Avg Mbps: 2211.860 5003 275342812 2202.742 100.00% Conn: 1 Mbps: 2202.742 Peak Mbps: 2211.860 Avg Mbps: 2202.742 --- fc00:0:0:1::11 tcpbench statistics --- 1630092352 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2057.095/2168.588/2211.860/57.092 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.051 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.051/0.051/0.051/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.047 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.047/0.047/0.047/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 535952584 4287.621 100.00% Conn: 1 Mbps: 4287.621 Peak Mbps: 4287.621 Avg Mbps: 4287.621 2000 535415376 4287.611 100.00% Conn: 1 Mbps: 4287.611 Peak Mbps: 4287.621 Avg Mbps: 4287.611 3000 534921608 4279.373 100.00% Conn: 1 Mbps: 4279.373 Peak Mbps: 4287.621 Avg Mbps: 4279.373 4000 534298968 4274.392 100.00% Conn: 1 Mbps: 4274.392 Peak Mbps: 4287.621 Avg Mbps: 4274.392 5000 535739728 4285.918 100.00% Conn: 1 Mbps: 4285.918 Peak Mbps: 4287.621 Avg Mbps: 4285.918 --- 169.254.1.12 tcpbench statistics --- 3211071768 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4274.392/4282.983/4287.621/5.261 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 523371996 4186.976 100.00% Conn: 1 Mbps: 4186.976 Peak Mbps: 4186.976 Avg Mbps: 4186.976 2000 524448708 4199.789 100.00% Conn: 1 Mbps: 4199.789 Peak Mbps: 4199.789 Avg Mbps: 4199.789 3000 524435856 4195.487 100.00% Conn: 1 Mbps: 4195.487 Peak Mbps: 4199.789 Avg Mbps: 4195.487 4000 525158424 4201.267 100.00% Conn: 1 Mbps: 4201.267 Peak Mbps: 4201.267 Avg Mbps: 4201.267 5000 524959932 4199.679 100.00% Conn: 1 Mbps: 4199.679 Peak Mbps: 4201.267 Avg Mbps: 4199.679 --- fc00:0:0:1::12 tcpbench statistics --- 3147039252 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 4186.976/4196.640/4201.267/5.202 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.045 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.045/0.045/0.045/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.065 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.065/0.065/0.065/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 786934326 6295.475 100.00% Conn: 1 Mbps: 6295.475 Peak Mbps: 6295.475 Avg Mbps: 6295.475 2000 786917948 6301.645 100.00% Conn: 1 Mbps: 6301.645 Peak Mbps: 6301.645 Avg Mbps: 6301.645 3000 784038940 6272.312 100.00% Conn: 1 Mbps: 6272.312 Peak Mbps: 6301.645 Avg Mbps: 6272.312 4000 784431532 6275.452 100.00% Conn: 1 Mbps: 6275.452 Peak Mbps: 6301.645 Avg Mbps: 6275.452 5000 783450052 6267.600 100.00% Conn: 1 Mbps: 6267.600 Peak Mbps: 6301.645 Avg Mbps: 6267.600 --- 169.254.0.13 tcpbench statistics --- 4708601246 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6267.600/6282.497/6301.645/13.493 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 778149388 6225.195 100.00% Conn: 1 Mbps: 6225.195 Peak Mbps: 6225.195 Avg Mbps: 6225.195 2000 776431912 6217.673 100.00% Conn: 1 Mbps: 6217.673 Peak Mbps: 6225.195 Avg Mbps: 6217.673 3000 775679904 6205.439 100.00% Conn: 1 Mbps: 6205.439 Peak Mbps: 6225.195 Avg Mbps: 6205.439 4000 776922352 6215.379 100.00% Conn: 1 Mbps: 6215.379 Peak Mbps: 6225.195 Avg Mbps: 6215.379 5000 777739752 6221.918 100.00% Conn: 1 Mbps: 6221.918 Peak Mbps: 6225.195 Avg Mbps: 6221.918 --- fc00::13 tcpbench statistics --- 4657627876 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6205.439/6217.121/6225.195/6.753 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.062 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.062/0.062/0.062/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.070 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.070/0.070/0.070/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 272175256 2177.402 100.00% Conn: 1 Mbps: 2177.402 Peak Mbps: 2177.402 Avg Mbps: 2177.402 2001 279544000 2236.352 100.00% Conn: 1 Mbps: 2236.352 Peak Mbps: 2236.352 Avg Mbps: 2236.352 3002 281850672 2252.553 100.00% Conn: 1 Mbps: 2252.553 Peak Mbps: 2252.553 Avg Mbps: 2252.553 4003 281618328 2252.947 100.00% Conn: 1 Mbps: 2252.947 Peak Mbps: 2252.947 Avg Mbps: 2252.947 5003 280253024 2242.024 100.00% Conn: 1 Mbps: 2242.024 Peak Mbps: 2252.947 Avg Mbps: 2242.024 --- 169.254.1.11 tcpbench statistics --- 1676241704 bytes sent over 6.001 seconds bandwidth min/avg/max/std-dev = 2177.402/2232.256/2252.947/28.147 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 548724464 4389.796 100.00% Conn: 1 Mbps: 4389.796 Peak Mbps: 4389.796 Avg Mbps: 4389.796 2000 596134512 4769.076 100.00% Conn: 1 Mbps: 4769.076 Peak Mbps: 4769.076 Avg Mbps: 4769.076 3000 604501688 4836.014 100.00% Conn: 1 Mbps: 4836.014 Peak Mbps: 4836.014 Avg Mbps: 4836.014 4000 603955672 4836.482 100.00% Conn: 1 Mbps: 4836.482 Peak Mbps: 4836.482 Avg Mbps: 4836.482 5000 607041152 4861.190 100.00% Conn: 1 Mbps: 4861.190 Peak Mbps: 4861.190 Avg Mbps: 4861.190 --- fc00:0:0:1::11 tcpbench statistics --- 3561248536 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 4389.796/4738.512/4861.190/177.026 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.051 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.051/0.051/0.051/0.000 ms ==== run-ping6-3-2 ==== /sbin/ping6 -c 1 -w 1 -n -V 13 -I fc00::13 fc00:0:0:1::12 PING fc00:0:0:1::12 (fc00:0:0:1::12): 56 data bytes 64 bytes from fc00:0:0:1::12: icmp_seq=0 hlim=64 time=0.049 ms --- fc00:0:0:1::12 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-tcpbench-3-2 ==== rm -f nc.log nc -4 -v -l -V 12 169.254.1.12 12345 >/dev/null 2>nc.log & # Wait until nc is listening. for i in `jot 30`; do if fgrep -q Listening nc.log; then break; fi; sleep .1; done fgrep Listening nc.log Listening on 169.254.1.12 12345 # Test that path MTU dicovery is working. tcpbench -4 -t 5 -V 13 -b 169.254.0.13 169.254.1.12 elapsed_ms bytes mbps bwidth 1000 790847570 6326.781 100.00% Conn: 1 Mbps: 6326.781 Peak Mbps: 6326.781 Avg Mbps: 6326.781 2000 791825348 6340.944 100.00% Conn: 1 Mbps: 6340.944 Peak Mbps: 6340.944 Avg Mbps: 6340.944 3000 790680288 6325.442 100.00% Conn: 1 Mbps: 6325.442 Peak Mbps: 6340.944 Avg Mbps: 6325.442 4000 789666092 6317.329 100.00% Conn: 1 Mbps: 6317.329 Peak Mbps: 6340.944 Avg Mbps: 6317.329 5000 790811152 6326.489 100.00% Conn: 1 Mbps: 6326.489 Peak Mbps: 6340.944 Avg Mbps: 6326.489 --- 169.254.1.12 tcpbench statistics --- 4743660122 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6317.329/6327.397/6340.944/7.615 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 774019860 6192.159 100.00% Conn: 1 Mbps: 6192.159 Peak Mbps: 6192.159 Avg Mbps: 6192.159 2000 776333824 6216.887 100.00% Conn: 1 Mbps: 6216.887 Peak Mbps: 6216.887 Avg Mbps: 6216.887 3000 775124072 6200.993 100.00% Conn: 1 Mbps: 6200.993 Peak Mbps: 6216.887 Avg Mbps: 6200.993 4000 776464608 6211.717 100.00% Conn: 1 Mbps: 6211.717 Peak Mbps: 6216.887 Avg Mbps: 6211.717 5000 776955048 6215.640 100.00% Conn: 1 Mbps: 6215.640 Peak Mbps: 6216.887 Avg Mbps: 6215.640 --- fc00:0:0:1::12 tcpbench statistics --- 4655002364 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6192.159/6207.479/6216.887/9.485 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.043 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.043/0.043/0.043/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.047 ms --- fc00::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-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 798993682 6391.949 100.00% Conn: 1 Mbps: 6391.949 Peak Mbps: 6391.949 Avg Mbps: 6391.949 2000 799284596 6400.677 100.00% Conn: 1 Mbps: 6400.677 Peak Mbps: 6400.677 Avg Mbps: 6400.677 3000 800364224 6409.323 100.00% Conn: 1 Mbps: 6409.323 Peak Mbps: 6409.323 Avg Mbps: 6409.323 4000 800135212 6401.082 100.00% Conn: 1 Mbps: 6401.082 Peak Mbps: 6409.323 Avg Mbps: 6401.082 5000 800658668 6405.269 100.00% Conn: 1 Mbps: 6405.269 Peak Mbps: 6409.323 Avg Mbps: 6405.269 --- 169.254.0.13 tcpbench statistics --- 4799866038 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6391.949/6401.660/6409.323/5.785 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 793043100 6344.345 100.00% Conn: 1 Mbps: 6344.345 Peak Mbps: 6344.345 Avg Mbps: 6344.345 2000 796474560 6378.175 100.00% Conn: 1 Mbps: 6378.175 Peak Mbps: 6378.175 Avg Mbps: 6378.175 3000 796866912 6374.935 100.00% Conn: 1 Mbps: 6374.935 Peak Mbps: 6378.175 Avg Mbps: 6374.935 4000 797095784 6376.766 100.00% Conn: 1 Mbps: 6376.766 Peak Mbps: 6378.175 Avg Mbps: 6376.766 5000 796082208 6368.658 100.00% Conn: 1 Mbps: 6368.658 Peak Mbps: 6378.175 Avg Mbps: 6368.658 --- fc00::13 tcpbench statistics --- 4776560260 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 6344.345/6368.576/6378.175/12.544 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.88s