We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd97def + f20614c commit 3625074Copy full SHA for 3625074
hack/test/docker-entrypoint.sh
@@ -32,11 +32,14 @@ function benchmark::iperf3::vdeplug_slirp(){
32
function benchmark::iperf3::main(){
33
iperf3 -s > /dev/null &
34
iperf3pid=$!
35
- for mtu in 1500 16384 65520; do
+ for mtu in 1500 4000 16384 65520; do
36
benchmark::iperf3::slirp4netns --mtu=$mtu
37
if [[ $mtu -gt 16424 ]]; then
38
INFO "Skipping benchmark::iperf3::vpnkit --mtu=$mtu (MTU greater than 16424 is known not to work for VPNKit)"
39
else
40
+ if [[ $mtu -gt 4000 ]]; then
41
+ INFO "Note: MTU greather than 4K might not be effective for VPNKit: https://twitter.com/mugofsoup/status/1017665057738641408"
42
+ fi
43
benchmark::iperf3::vpnkit --mtu=$mtu
44
fi
45
if [[ $mtu -ne 1500 ]]; then
0 commit comments