START sys/net/pair 2025-04-01T01:37:34Z ==== 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.039 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.039/0.039/0.039/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.046 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.046/0.046/0.046/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 920767852 7366.143 100.00% Conn: 1 Mbps: 7366.143 Peak Mbps: 7366.143 Avg Mbps: 7366.143 2000 917421744 7346.721 100.00% Conn: 1 Mbps: 7346.721 Peak Mbps: 7366.143 Avg Mbps: 7346.721 3000 920195596 7361.565 100.00% Conn: 1 Mbps: 7361.565 Peak Mbps: 7366.143 Avg Mbps: 7361.565 4000 916618996 7332.952 100.00% Conn: 1 Mbps: 7332.952 Peak Mbps: 7366.143 Avg Mbps: 7332.952 5000 919106720 7352.854 100.00% Conn: 1 Mbps: 7352.854 Peak Mbps: 7366.143 Avg Mbps: 7352.854 --- 169.254.1.11 tcpbench statistics --- 5513710404 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7332.952/7352.047/7366.143/11.687 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 930176384 7441.411 100.00% Conn: 1 Mbps: 7441.411 Peak Mbps: 7441.411 Avg Mbps: 7441.411 2000 935654632 7492.730 100.00% Conn: 1 Mbps: 7492.730 Peak Mbps: 7492.730 Avg Mbps: 7492.730 3000 932491360 7459.931 100.00% Conn: 1 Mbps: 7459.931 Peak Mbps: 7492.730 Avg Mbps: 7459.931 4000 933070104 7464.561 100.00% Conn: 1 Mbps: 7464.561 Peak Mbps: 7492.730 Avg Mbps: 7464.561 5000 934235520 7473.884 100.00% Conn: 1 Mbps: 7473.884 Peak Mbps: 7492.730 Avg Mbps: 7473.884 --- fc00:0:0:1::11 tcpbench statistics --- 5598531616 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7441.411/7466.503/7492.730/16.846 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.062 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.062/0.062/0.062/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.132 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.132/0.132/0.132/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 371618816 2969.981 100.00% Conn: 1 Mbps: 2969.981 Peak Mbps: 2969.981 Avg Mbps: 2969.981 2001 381157376 3049.259 100.00% Conn: 1 Mbps: 3049.259 Peak Mbps: 3049.259 Avg Mbps: 3049.259 3001 385351680 3082.813 100.00% Conn: 1 Mbps: 3082.813 Peak Mbps: 3082.813 Avg Mbps: 3082.813 4002 389545984 3116.368 100.00% Conn: 1 Mbps: 3116.368 Peak Mbps: 3116.368 Avg Mbps: 3116.368 5002 389102264 3112.818 100.00% Conn: 1 Mbps: 3112.818 Peak Mbps: 3116.368 Avg Mbps: 3112.818 --- 169.254.1.12 tcpbench statistics --- 2301865656 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2969.981/3066.248/3116.368/53.873 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 347150500 2777.204 100.00% Conn: 1 Mbps: 2777.204 Peak Mbps: 2777.204 Avg Mbps: 2777.204 2001 363069440 2904.556 100.00% Conn: 1 Mbps: 2904.556 Peak Mbps: 2904.556 Avg Mbps: 2904.556 3001 365166592 2921.333 100.00% Conn: 1 Mbps: 2921.333 Peak Mbps: 2921.333 Avg Mbps: 2921.333 4001 364642304 2917.138 100.00% Conn: 1 Mbps: 2917.138 Peak Mbps: 2921.333 Avg Mbps: 2917.138 5002 359661568 2874.418 100.00% Conn: 1 Mbps: 2874.418 Peak Mbps: 2921.333 Avg Mbps: 2874.418 --- fc00:0:0:1::12 tcpbench statistics --- 2161711268 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2777.204/2878.930/2921.333/53.447 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.056 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.056/0.056/0.056/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.068 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.068/0.068/0.068/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 769040392 6152.323 100.00% Conn: 1 Mbps: 6152.323 Peak Mbps: 6152.323 Avg Mbps: 6152.323 2000 812245720 6497.966 100.00% Conn: 1 Mbps: 6497.966 Peak Mbps: 6497.966 Avg Mbps: 6497.966 3000 813229460 6512.348 100.00% Conn: 1 Mbps: 6512.348 Peak Mbps: 6512.348 Avg Mbps: 6512.348 4000 814089936 6519.239 100.00% Conn: 1 Mbps: 6519.239 Peak Mbps: 6519.239 Avg Mbps: 6519.239 5000 812802080 6502.417 100.00% Conn: 1 Mbps: 6502.417 Peak Mbps: 6519.239 Avg Mbps: 6502.417 --- 169.254.0.13 tcpbench statistics --- 4809658296 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6152.323/6436.858/6519.239/142.462 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 711228808 5689.830 100.00% Conn: 1 Mbps: 5689.830 Peak Mbps: 5689.830 Avg Mbps: 5689.830 2001 751836544 6014.692 100.00% Conn: 1 Mbps: 6014.692 Peak Mbps: 6014.692 Avg Mbps: 6014.692 3001 755185544 6041.484 100.00% Conn: 1 Mbps: 6041.484 Peak Mbps: 6041.484 Avg Mbps: 6041.484 4001 741053944 5934.366 100.00% Conn: 1 Mbps: 5934.366 Peak Mbps: 6041.484 Avg Mbps: 5934.366 5001 747794824 5982.359 100.00% Conn: 1 Mbps: 5982.359 Peak Mbps: 6041.484 Avg Mbps: 5982.359 --- fc00::13 tcpbench statistics --- 4447787880 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 5689.830/5932.546/6041.484/126.500 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.041 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.041/0.041/0.041/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.050 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.050/0.050/0.050/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 375267536 2999.141 100.00% Conn: 1 Mbps: 2999.141 Peak Mbps: 2999.141 Avg Mbps: 2999.141 2001 384827392 3078.619 100.00% Conn: 1 Mbps: 3078.619 Peak Mbps: 3078.619 Avg Mbps: 3078.619 3002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3078.619 Avg Mbps: 3047.162 4002 383254528 3066.036 100.00% Conn: 1 Mbps: 3066.036 Peak Mbps: 3078.619 Avg Mbps: 3066.036 5002 380633088 3045.065 100.00% Conn: 1 Mbps: 3045.065 Peak Mbps: 3078.619 Avg Mbps: 3045.065 --- 169.254.1.11 tcpbench statistics --- 2286821584 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2999.141/3047.205/3078.619/27.041 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 349594448 2793.962 100.00% Conn: 1 Mbps: 2793.962 Peak Mbps: 2793.962 Avg Mbps: 2793.962 2001 356777984 2857.081 100.00% Conn: 1 Mbps: 2857.081 Peak Mbps: 2857.081 Avg Mbps: 2857.081 3001 360448000 2883.584 100.00% Conn: 1 Mbps: 2883.584 Peak Mbps: 2883.584 Avg Mbps: 2883.584 4001 362020864 2896.167 100.00% Conn: 1 Mbps: 2896.167 Peak Mbps: 2896.167 Avg Mbps: 2896.167 5001 362545152 2903.264 100.00% Conn: 1 Mbps: 2903.264 Peak Mbps: 2903.264 Avg Mbps: 2903.264 --- fc00:0:0:1::11 tcpbench statistics --- 2152358736 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2793.962/2866.812/2903.264/39.683 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.038 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.038/0.038/0.038/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.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-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 892376336 7139.011 100.00% Conn: 1 Mbps: 7139.011 Peak Mbps: 7139.011 Avg Mbps: 7139.011 2000 885769112 7093.246 100.00% Conn: 1 Mbps: 7093.246 Peak Mbps: 7139.011 Avg Mbps: 7093.246 3000 886637912 7093.103 100.00% Conn: 1 Mbps: 7093.103 Peak Mbps: 7139.011 Avg Mbps: 7093.103 4000 886031200 7088.250 100.00% Conn: 1 Mbps: 7088.250 Peak Mbps: 7139.011 Avg Mbps: 7088.250 5000 890632944 7125.064 100.00% Conn: 1 Mbps: 7125.064 Peak Mbps: 7139.011 Avg Mbps: 7125.064 --- 169.254.1.12 tcpbench statistics --- 5329410336 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7088.250/7107.735/7139.011/20.407 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 918319668 7346.557 100.00% Conn: 1 Mbps: 7346.557 Peak Mbps: 7346.557 Avg Mbps: 7346.557 2000 914979576 7327.164 100.00% Conn: 1 Mbps: 7327.164 Peak Mbps: 7346.557 Avg Mbps: 7327.164 3000 917552832 7340.423 100.00% Conn: 1 Mbps: 7340.423 Peak Mbps: 7346.557 Avg Mbps: 7340.423 4000 914999568 7319.997 100.00% Conn: 1 Mbps: 7319.997 Peak Mbps: 7346.557 Avg Mbps: 7319.997 5000 911688036 7293.504 100.00% Conn: 1 Mbps: 7293.504 Peak Mbps: 7346.557 Avg Mbps: 7293.504 --- fc00:0:0:1::12 tcpbench statistics --- 5487408444 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 7293.504/7325.529/7346.557/18.563 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.040 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.040/0.040/0.040/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.049 ms --- fc00::13 ping statistics --- 1 packets transmitted, 1 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 0.049/0.049/0.049/0.000 ms ==== run-tcpbench-2-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 1275161158 10201.289 100.00% Conn: 1 Mbps: 10201.289 Peak Mbps: 10201.289 Avg Mbps: 10201.289 2000 1280569672 10254.812 100.00% Conn: 1 Mbps: 10254.812 Peak Mbps: 10254.812 Avg Mbps: 10254.812 3000 1279097452 10232.780 100.00% Conn: 1 Mbps: 10232.780 Peak Mbps: 10254.812 Avg Mbps: 10232.780 4000 1279588192 10236.706 100.00% Conn: 1 Mbps: 10236.706 Peak Mbps: 10254.812 Avg Mbps: 10236.706 5000 1278966588 10231.733 100.00% Conn: 1 Mbps: 10231.733 Peak Mbps: 10254.812 Avg Mbps: 10231.733 --- 169.254.0.13 tcpbench statistics --- 7672447798 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10201.289/10231.464/10254.812/17.233 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 1266763212 10134.106 100.00% Conn: 1 Mbps: 10134.106 Peak Mbps: 10134.106 Avg Mbps: 10134.106 2000 1270828128 10176.802 100.00% Conn: 1 Mbps: 10176.802 Peak Mbps: 10176.802 Avg Mbps: 10176.802 3000 1271678224 10173.426 100.00% Conn: 1 Mbps: 10173.426 Peak Mbps: 10176.802 Avg Mbps: 10173.426 4000 1271482048 10171.856 100.00% Conn: 1 Mbps: 10171.856 Peak Mbps: 10176.802 Avg Mbps: 10171.856 5000 1268572104 10158.736 100.00% Conn: 1 Mbps: 10158.736 Peak Mbps: 10176.802 Avg Mbps: 10158.736 --- fc00::13 tcpbench statistics --- 7615509012 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10134.106/10162.985/10176.802/15.689 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.046 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.046/0.046/0.046/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.052 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.052/0.052/0.052/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 374953112 2999.625 100.00% Conn: 1 Mbps: 2999.625 Peak Mbps: 2999.625 Avg Mbps: 2999.625 2001 382992384 3063.939 100.00% Conn: 1 Mbps: 3063.939 Peak Mbps: 3063.939 Avg Mbps: 3063.939 3001 379971160 3039.769 100.00% Conn: 1 Mbps: 3039.769 Peak Mbps: 3063.939 Avg Mbps: 3039.769 4002 383339280 3066.714 100.00% Conn: 1 Mbps: 3066.714 Peak Mbps: 3066.714 Avg Mbps: 3066.714 5002 380895232 3047.162 100.00% Conn: 1 Mbps: 3047.162 Peak Mbps: 3066.714 Avg Mbps: 3047.162 --- 169.254.1.11 tcpbench statistics --- 2281473536 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 2999.625/3043.442/3066.714/24.120 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 845372320 6762.979 100.00% Conn: 1 Mbps: 6762.979 Peak Mbps: 6762.979 Avg Mbps: 6762.979 2000 891487208 7139.037 100.00% Conn: 1 Mbps: 7139.037 Peak Mbps: 7139.037 Avg Mbps: 7139.037 3000 872374560 6978.996 100.00% Conn: 1 Mbps: 6978.996 Peak Mbps: 7139.037 Avg Mbps: 6978.996 4000 886093008 7088.744 100.00% Conn: 1 Mbps: 7088.744 Peak Mbps: 7139.037 Avg Mbps: 7088.744 5000 884611352 7076.891 100.00% Conn: 1 Mbps: 7076.891 Peak Mbps: 7139.037 Avg Mbps: 7076.891 --- fc00:0:0:1::11 tcpbench statistics --- 5277889744 bytes sent over 6.000 seconds bandwidth min/avg/max/std-dev = 6762.979/7009.329/7139.037/133.644 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.044 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.044/0.044/0.044/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.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-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 1272834654 10182.677 100.00% Conn: 1 Mbps: 10182.677 Peak Mbps: 10182.677 Avg Mbps: 10182.677 2000 1274075546 10202.807 100.00% Conn: 1 Mbps: 10202.807 Peak Mbps: 10202.807 Avg Mbps: 10202.807 3000 1273764744 10190.118 100.00% Conn: 1 Mbps: 10190.118 Peak Mbps: 10202.807 Avg Mbps: 10190.118 4000 1273862892 10190.903 100.00% Conn: 1 Mbps: 10190.903 Peak Mbps: 10202.807 Avg Mbps: 10190.903 5000 1273110424 10184.883 100.00% Conn: 1 Mbps: 10184.883 Peak Mbps: 10202.807 Avg Mbps: 10184.883 --- 169.254.1.12 tcpbench statistics --- 7641151276 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10182.677/10190.278/10202.807/6.990 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 1255805540 10046.444 100.00% Conn: 1 Mbps: 10046.444 Peak Mbps: 10046.444 Avg Mbps: 10046.444 2000 1255951448 10057.669 100.00% Conn: 1 Mbps: 10057.669 Peak Mbps: 10057.669 Avg Mbps: 10057.669 3000 1255657184 10045.257 100.00% Conn: 1 Mbps: 10045.257 Peak Mbps: 10057.669 Avg Mbps: 10045.257 4000 1259286440 10074.292 100.00% Conn: 1 Mbps: 10074.292 Peak Mbps: 10074.292 Avg Mbps: 10074.292 5000 1255820664 10046.565 100.00% Conn: 1 Mbps: 10046.565 Peak Mbps: 10074.292 Avg Mbps: 10046.565 --- fc00:0:0:1::12 tcpbench statistics --- 7537786108 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10045.257/10054.046/10074.292/11.081 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.039 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.039/0.039/0.039/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.043 ms --- fc00::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-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 1265507742 10124.062 100.00% Conn: 1 Mbps: 10124.062 Peak Mbps: 10124.062 Avg Mbps: 10124.062 2000 1265176794 10131.546 100.00% Conn: 1 Mbps: 10131.546 Peak Mbps: 10131.546 Avg Mbps: 10131.546 3000 1265389448 10123.116 100.00% Conn: 1 Mbps: 10123.116 Peak Mbps: 10131.546 Avg Mbps: 10123.116 4000 1267745000 10141.960 100.00% Conn: 1 Mbps: 10141.960 Peak Mbps: 10141.960 Avg Mbps: 10141.960 5000 1262134206 10097.074 100.00% Conn: 1 Mbps: 10097.074 Peak Mbps: 10141.960 Avg Mbps: 10097.074 --- 169.254.0.13 tcpbench statistics --- 7590508380 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10097.074/10123.551/10141.960/14.861 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 1278066580 10224.533 100.00% Conn: 1 Mbps: 10224.533 Peak Mbps: 10224.533 Avg Mbps: 10224.533 2000 1279525264 10246.449 100.00% Conn: 1 Mbps: 10246.449 Peak Mbps: 10246.449 Avg Mbps: 10246.449 3000 1281356240 10250.850 100.00% Conn: 1 Mbps: 10250.850 Peak Mbps: 10250.850 Avg Mbps: 10250.850 4000 1280244576 10241.957 100.00% Conn: 1 Mbps: 10241.957 Peak Mbps: 10250.850 Avg Mbps: 10241.957 5000 1277792376 10222.339 100.00% Conn: 1 Mbps: 10222.339 Peak Mbps: 10250.850 Avg Mbps: 10222.339 --- fc00::13 tcpbench statistics --- 7678929804 bytes sent over 5.999 seconds bandwidth min/avg/max/std-dev = 10222.339/10237.225/10250.850/11.626 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.92s