diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-12 13:11:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 13:11:39 -0400 |
commit | 4ef4f522f9a2850e14a93186c647175685166d95 (patch) | |
tree | 90533eb1d43bae0f7880210233148676ed976539 /docs/source/markdown/podman-create.1.md | |
parent | 8e4842a14deff83cef7996e393cfc9fa932bfb30 (diff) | |
parent | 95e73c65ae01a83658619083f218ae8ebdbef906 (diff) | |
download | podman-4ef4f522f9a2850e14a93186c647175685166d95.tar.gz podman-4ef4f522f9a2850e14a93186c647175685166d95.tar.bz2 podman-4ef4f522f9a2850e14a93186c647175685166d95.zip |
Merge pull request #7308 from hamzadis/slirp4netns-cidr
Add support for setting the CIDR when using slirp4netns
Diffstat (limited to 'docs/source/markdown/podman-create.1.md')
-rw-r--r-- | docs/source/markdown/podman-create.1.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-create.1.md b/docs/source/markdown/podman-create.1.md index f65c52e29..9df76e48e 100644 --- a/docs/source/markdown/podman-create.1.md +++ b/docs/source/markdown/podman-create.1.md @@ -563,6 +563,7 @@ Valid values are: - `private`: create a new namespace for the container (default) - `slirp4netns[:OPTIONS,...]`: use slirp4netns to create a user network stack. This is the default for rootless containers. It is possible to specify these additional options: - **allow_host_loopback=true|false**: Allow the slirp4netns to reach the host loopback IP (`10.0.2.2`). Default is false. + - **cidr=CIDR**: Specify ip range to use for this network. (Default is `10.0.2.0/24`). - **enable_ipv6=true|false**: Enable IPv6. Default is false. (Required for `outbound_addr6`). - **outbound_addr=INTERFACE**: Specify the outbound interface slirp should bind to (ipv4 traffic only). - **outbound_addr=IPv4**: Specify the outbound ipv4 address slirp should bind to. |