how does rootless bridge mode work? E.g. vs. macvlan? #18207
ebryerwork
started this conversation in
General
Replies: 1 comment 5 replies
-
some info: https://podman.io/community/meeting/notes/2021-10-05/Podman-Rootless-Networking.pdf It is a bit outdated, instead is slirp4nents(1) there is also pasta(1). But really the underlying working is similar. Macvlan is technically possible, it is just that it would try to use the interfaces in the |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I start a rootless container, it defaults to using the default bridge driver. How is it possible as non-root to create a bridge to the host system's network? Seems like you'd need to be root. It makes me think this isn't a true bridge. For example, I can't ping or ssh into the container from the host system, so it appears that MAC discovery of the container from the host system is not allowed, and so it's not a true bridge. I also noticed in the man page for podman-network-create:
"because rootless networking requires a separate network namespace." Seems like that would apply to rootless bridge mode as well, no?
Beta Was this translation helpful? Give feedback.
All reactions