Docker 网络 概述

本文翻译自docker官网:https://docs.docker.com/network/

Networking overview

One of the reasons Docker containers and services are so powerful is that
you can connect them together, or connect them to non-Docker workloads. Docker
containers and services do not even need to be aware that they are deployed on
Docker, or whether their peers are also Docker workloads or not. Whether your
Docker hosts run Linux, Windows, or a mix of the two, you can use Docker to
manage them in a platform-agnostic way.

Docker容器和服务如此强大的原因之一是您可以将它们连接在一起,或者将它们连接到非Docker工作负载。
Docker容器和服务甚至不需要知道它们是部署在Docker上的,或者它们的对等方是否也是Docker工作负载。
无论Docker主机运行Linux、Windows还是两者的混合,都可以使用Docker以平台无关的方式管理它们。

This topic defines some basic Docker networking concepts and prepares you to
design and deploy your applications to take full advantage of these
capabilities.

本主题定义了一些基本的Docker网络概念,并为您设计和部署应用程序以充分利用这些功能做好准备。

Scope of this topic

本专题的范围

This topic does not go into OS-specific details about how Docker networks
work, so you will not find information about how Docker manipulates iptables
rules on Linux or how it manipulates routing rules on Windows servers, and you
will not find detailed information about how Docker forms and encapsulates
packets or handles encryption. See Docker and iptables.

本主题不涉及Docker网络在指定操作系统上如何工作的特定细节,
因此您将找不到有关Docker如何在Linux上操纵iptables规则或如何在Windows服务器上操纵路由规则的信息,
也找不到有关Docker如何形成和封装数据包或处理加密的详细信息。请参见Docker and iptables

In addition, this topic does not provide any tutorials for how to create,
manage, and use Docker networks. Each section includes links to relevant
tutorials and command references.

此外,本主题不提供有关如何创建、管理和使用Docker网络的任何教程。
每个部分都包含指向相关教程和命令参考的链接。

Network drivers

Docker's networking subsystem is pluggable, using drivers. Several drivers
exist by default, and provide core networking functionality:

Docker的网络子系统是可插拔的,使用驱动程序。默认情况下存在多个驱动程序,并提供核心网络功能:

  • bridge: The default network driver. If you don't specify a driver, this is
    the type of network you are creating. Bridge networks are usually used when
    your applications run in standalone containers that need to communicate.
    See
    bridge networks.

    默认网络驱动程序。如果未指定驱动程序,则这是正在创建的网络类型。
    当应用程序在需要通信的独立容器中运行时,通常使用桥接网络。
    参考 bridge networks

  • host: For standalone containers, remove network isolation between the
    container and the Docker host, and use the host's networking directly. See
    use the host network.

    对于独立容器,移除容器和Docker主机之间的网络隔离,并直接使用主机的网络。
    参考:use the host network

  • overlay: Overlay networks connect multiple Docker daemons together and
    enable swarm services to communicate with each other. You can also use overlay
    networks to facilitate communication between a swarm service and a standalone
    container, or between two standalone containers on different Docker daemons.
    This strategy removes the need to do OS-level routing between these
    containers. See overlay networks.

    Overlay网络将多个Docker守护进程连接在一起,并使swarm服务能够相互通信。
    您还可以使用Overlay网络来促进swarm服务和独立容器之间的通信,或者在不同Docker守护进程上的两个独立容器之间的通信。
    此策略消除了在这些容器之间执行操作系统级路由的需要。
    参考 overlay networks

  • macvlan: Macvlan networks allow you to assign a MAC address to a container,
    making it appear as a physical device on your network. The Docker daemon
    routes traffic to containers by their MAC addresses. Using the macvlan
    driver is sometimes the best choice when dealing with legacy applications that
    expect to be directly connected to the physical network, rather than routed
    through the Docker host's network stack. See
    Macvlan networks.

    Macvlan网络允许您将MAC地址分配给容器,使其显示为网络上的物理设备。
    Docker守护进程通过容器的MAC地址将流量路由到容器。
    有时使用macvlan驱动程序是最佳选择,比如在处理遗留应用程序时,希望直接连接到物理网络而不是通过Docker主机的网络堆栈路由。
    参考 Macvlan networks

  • none: For this container, disable all networking. Usually used in
    conjunction with a custom network driver. none is not available for swarm
    services. See
    disable container networking.

    对于此容器,禁用所有网络。通常与自定义网络驱动程序一起使用。swarm服务不可用none
    参考 disable container networking

  • Network plugins: You can install and use
    third-party network plugins with Docker. These plugins are available from
    Docker Hub
    or from third-party vendors. See the vendor's documentation for installing and
    using a given network plugin.

    您可以通过Docker安装和使用第三方网络插件。这些插件可从Docker Hub或第三方供应商处获得。
    有关安装和使用给定网络插件的信息,请参阅供应商文档。

Network driver summary

网络驱动程序摘要

  • User-defined bridge networks are best when you need multiple containers to
    communicate on the same Docker host.

    当您需要多个容器在同一Docker主机上通信时,User-defined bridge networks是最好的。

  • Host networks are best when the network stack should not be isolated from
    the Docker host, but you want other aspects of the container to be isolated.

    当网络堆栈不应与Docker主机隔离,但您希望隔离容器的其他方面时,Host networks是最好的。

  • Overlay networks are best when you need containers running on different
    Docker hosts to communicate, or when multiple applications work together using
    swarm services.

    当您需要运行在不同Docker主机上的容器进行通信时,或者当多个应用程序使用swarm服务协同工作时,Overlay networks是最好的。

  • Macvlan networks are best when you are migrating from a VM setup or
    need your containers to look like physical hosts on your network, each with a
    unique MAC address.

    当你需要从VM设置迁移或需要容器看起来像网络上的物理主机,每个容器都有一个唯一的MAC地址时,Macvlan networks是最好的。

  • Third-party network plugins allow you to integrate Docker with specialized
    network stacks.

    Third-party network plugins允许您将Docker与专用网络堆栈集成。

Networking tutorials

Now that you understand the basics about Docker networks, deepen your
understanding using the following tutorials:

现在您已经了解了Docker networks的基础知识,请使用以下教程加深您的理解:

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容