NAME¶ 名称
podman-network-connect - Connect a container to a network
podman-network-connect - 将容器连接到网络
SYNOPSIS¶ 概要
podman network connect [options] network container
podman network connect [选项] 网络 容器
DESCRIPTION¶ 描述
Connects a container to a network. A container can be connected to a network by name or by ID.
Once connected, the container can communicate with other containers in the same network.
将容器连接到网络。容器可以通过名称或 ID 连接到网络。连接后,容器可以与同一网络中的其他容器通信。
OPTIONS¶ 选项
--alias=name¶ --别名=名称 ¶
Add network-scoped alias for the container. If the network has DNS enabled (podman network inspect -f {{.DNSEnabled}} <NAME>
),
these aliases can be used for name resolution on the given network. Multiple --alias options may be specified as input.
NOTE: When using CNI, a container only has access to aliases on the first network that it joins. This limitation does
not exist with netavark/aardvark-dns.
为容器添加网络范围的别名。如果网络启用了 DNS( podman network inspect -f {{.DNSEnabled}} <NAME>
),则可以在给定网络上使用这些别名进行名称解析。可以将多个 --别名 选项指定为输入。注意:使用 CNI 时,容器只能访问它加入的第一个网络上的别名。这种限制在 netavark/aardvark-dns 中不存在。
--ip=address¶ --ip=地址 ¶
Set a static ipv4 address for this container on this network.
为此容器在此网络上设置静态 IPv4 地址。
--ip6=address¶ --ip6=地址 ¶
Set a static ipv6 address for this container on this network.
为此容器在此网络上设置静态 IPv6 地址。
--mac-address=address¶
Set a static mac address for this container on this network.
为此容器在此网络上设置静态 MAC 地址。
EXAMPLE¶ 例子 ¶
Connect specified container to a named network:
将指定的容器连接到命名网络:
podman network connect test web
Connect specified container to named network with two aliases:
将指定的容器连接到具有两个别名的命名网络:
podman network connect --alias web1 --alias web2 test web
Connect specified container to named network with a static ip:
将指定的容器连接到具有静态 IP 的命名网络:
podman network connect --ip 10.89.1.13 test web
SEE ALSO¶ 参见 ¶
podman(1), podman-network(1), podman-network-inspect(1), podman-network-disconnect(1)
HISTORY¶ 历史 ¶
November 2020, Originally compiled by Brent Baude bbaude@redhat.com
2020 年 11 月,最初由 Brent Baude bbaude@redhat.com 编译