diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-09 07:45:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 07:45:20 -0400 |
commit | 95e2e15a3f13babfabb1b8d192893a56719d79a9 (patch) | |
tree | 6a451e8d4b2edf174c9adc5fe3e33a702d2807f9 /docs | |
parent | 3173a18f6f97ddb684230296054216b526a54f0e (diff) | |
parent | e6a5a56aa6b0ef25eb6ae47de6b5415f84259991 (diff) | |
download | podman-95e2e15a3f13babfabb1b8d192893a56719d79a9.tar.gz podman-95e2e15a3f13babfabb1b8d192893a56719d79a9.tar.bz2 podman-95e2e15a3f13babfabb1b8d192893a56719d79a9.zip |
Merge pull request #7216 from 5eraph/master
support outbound-addr
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-create.1.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/source/markdown/podman-create.1.md b/docs/source/markdown/podman-create.1.md index 9267e5729..5c58d59fc 100644 --- a/docs/source/markdown/podman-create.1.md +++ b/docs/source/markdown/podman-create.1.md @@ -562,9 +562,14 @@ Valid values are: - `ns:<path>`: path to a network namespace to join - `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: - **port_handler=rootlesskit**: Use rootlesskit for port forwarding. Default. - **port_handler=slirp4netns**: Use the slirp4netns port forwarding. - **allow_host_loopback=true|false**: Allow the slirp4netns to reach the host loopback IP (`10.0.2.2`). Default to false. + - **allow_host_loopback=true|false**: Allow the slirp4netns to reach the host loopback IP (`10.0.2.2`). Default is false. + - **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. + - **outbound_addr6=INTERFACE**: Specify the outbound interface slirp should bind to (ipv6 traffic only). + - **outbound_addr6=IPv6**: Specify the outbound ipv6 address slirp should bind to. + - **port_handler=rootlesskit**: Use rootlesskit for port forwarding. Default. + - **port_handler=slirp4netns**: Use the slirp4netns port forwarding. **--network-alias**=*alias* |