You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
engine/security/rootless/troubleshoot: update "Network is slow"
- VPNKit is no longer installed
- `docker run --net=host` is available since v29.5
- Add `lxc-user-nic` hints
Follow-up to PR 24645
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Copy file name to clipboardExpand all lines: content/manuals/engine/security/rootless/troubleshoot.md
+45-11Lines changed: 45 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -290,25 +290,59 @@ network namespace. Use `docker run -p` instead, or upgrade to Docker Engine v29.
290
290
291
291
#### Network is slow
292
292
293
-
Docker with rootless mode uses [slirp4netns](https://github.com/rootless-containers/slirp4netns) as the default network stack if slirp4netns v0.4.0 or later is installed.
294
-
If slirp4netns is not installed, Docker falls back to [VPNKit](https://github.com/moby/vpnkit).
295
-
Installing slirp4netns may improve the network throughput.
293
+
Docker with rootless mode uses a TCP/IP stack running in user mode, such as:
294
+
-[slirp4netns](https://github.com/rootless-containers/slirp4netns) (default when slirp4netns is installed)
295
+
-[pasta](https://passt.top/passt/about/)
296
+
-[VPNKit](https://github.com/moby/vpnkit)
297
+
-[gvisor-tap-vsock](https://github.com/containers/gvisor-tap-vsock) (default when none of the above is installed)
296
298
297
-
For more information about network drivers for RootlessKit, see
0 commit comments