第 8 章 容器网络 - 050 - 创建 overlay 网络

在 host1 中创建 overlay 网络 ov_net1:

docker network create -d overlay ov_net1

  • -d overlay 指定 driver 为 overaly

第 8 章 容器网络 - 050 - 创建 overlay 网络

docker network ls 查看当前网络:

第 8 章 容器网络 - 050 - 创建 overlay 网络

注意到 ov_net1 的 SCOPE 为 global,而其他网络为 local。在 host2 上查看存在的网络:

第 8 章 容器网络 - 050 - 创建 overlay 网络

host2 上也能看到 ov_net1。这是因为创建 ov_net1 时 host1 将 overlay 网络信息存入了 consul,host2 从 consul 读取到了新网络的数据。之后 ov_net 的任何变化都会同步到 host1 和 host2。

docker network inspect 查看 ov_net1 的详细信息:

 root@host2:~# docker network inspect ov_net1
[
{
"Name": "ov_net1",
"Id": "9a04f53798ae13c31cca6c79df27a4fdb9e6550d41992a87ee58c79845bba3fa",
"Created": "2019-03-15T08:48:06.272248084-04:00",
"Scope": "global",
"Driver": "overlay",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": {},
"Config": [
{
"Subnet": "10.0.0.0/24",
"Gateway": "10.0.0.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {},
"Options": {},
"Labels": {}
}
]

IPAM 是指 IP Address Management,docker 自动为 ov_net1 分配的 IP 空间为 10.0.0.0/24。

----------------引用来自----------------

https://mp.weixin.qq.com/s?__biz=MzIwMTM5MjUwMg==&mid=2653587761&idx=1&sn=54d284b9fe1c48872c5d8521635b135e&chksm=8d308128ba47083e813de53887ec7e15f698ce1f61b4e5a7a45461cf8b45078384b668d465f6&scene=21#wechat_redirect

上一篇:了解ASP.NET MVC几种ActionResult的本质:HttpStatusCodeResult & RedirectResult/RedirectToRouteResult


下一篇:linuxmint 默认不启动图形界面