diff options
author | Charlie Doern <cdoern@redhat.com> | 2022-07-18 10:02:33 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2022-07-26 13:43:52 -0400 |
commit | 86159e39bcaeaa83a1861405f6062896f83af436 (patch) | |
tree | 04afda980e58d849a16ce867ff6f09f2ded520a1 | |
parent | c3c07ed09eb9e5998f2c67f1054850a5b8266aae (diff) | |
download | podman-86159e39bcaeaa83a1861405f6062896f83af436.tar.gz podman-86159e39bcaeaa83a1861405f6062896f83af436.tar.bz2 podman-86159e39bcaeaa83a1861405f6062896f83af436.zip |
document isolate option for network create
[CI:DOCS]
document the podman network create -o=isolate which allows networks to cut themselves off
from external connections.
resolves #5805
Signed-off-by: Charlie Doern <cdoern@redhat.com>
-rw-r--r-- | docs/source/markdown/podman-network-create.1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-network-create.1.md b/docs/source/markdown/podman-network-create.1.md index 3587ac2a8..0ccc540f8 100644 --- a/docs/source/markdown/podman-network-create.1.md +++ b/docs/source/markdown/podman-network-create.1.md @@ -73,8 +73,9 @@ Set driver specific options. All drivers accept the `mtu` option. The `mtu` option sets the Maximum Transmission Unit (MTU) and takes an integer value. -Additionally the `bridge` driver supports the following option: +Additionally the `bridge` driver supports the following options: - `vlan`: This option assign VLAN tag and enables vlan\_filtering. Defaults to none. +- `isolate`: This option isolates networks by blocking traffic between those that have this option enabled. The `macvlan` and `ipvlan` driver support the following options: - `parent`: The host device which should be used for the macvlan interface. Defaults to the default route interface. |