Docker四种网络模式
生活随笔
收集整理的這篇文章主要介紹了
Docker四种网络模式
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
四種網絡模式
host模式
使用docker run時使用–net=host指定
Docker使用的網絡實際上和宿主機一樣,在容器內看到的網卡ip是宿主機上的ip。
- –rm,退出鏡像時同時刪除該鏡像
與宿主機的IP信息對比
[root@localhost ~]# ifconfig docker0 Link encap:Ethernet HWaddr 4E:90:A4:B6:91:91inet addr:172.17.42.1 Bcast:0.0.0.0 Mask:255.255.0.0inet6 addr: fe80::8cfc:c7ff:fe49:f1ae/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:58 errors:0 dropped:0 overruns:0 frame:0TX packets:6 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:3820 (3.7 KiB) TX bytes:468 (468.0 b)eth0 Link encap:Ethernet HWaddr 00:0C:29:DB:B2:28inet addr:192.168.1.179 Bcast:192.168.1.255 Mask:255.255.255.0inet6 addr: fe80::20c:29ff:fedb:b228/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:10661 errors:0 dropped:0 overruns:0 frame:0TX packets:3012 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:1000RX bytes:876797 (856.2 KiB) TX bytes:398049 (388.7 KiB)lo Link encap:Local Loopbackinet addr:127.0.0.1 Mask:255.0.0.0inet6 addr: ::1/128 Scope:HostUP LOOPBACK RUNNING MTU:65536 Metric:1RX packets:16 errors:0 dropped:0 overruns:0 frame:0TX packets:16 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:960 (960.0 b) TX bytes:960 (960.0 b)veth5e2dff4 Link encap:Ethernet HWaddr 96:65:1B:D2:F7:5Dinet6 addr: fe80::9465:1bff:fed2:f75d/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:20 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:1584 (1.5 KiB)vethb086b1c Link encap:Ethernet HWaddr DE:DF:66:D8:F2:DFinet6 addr: fe80::dcdf:66ff:fed8:f2df/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:8 errors:0 dropped:0 overruns:0 frame:0TX packets:34 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:636 (636.0 b) TX bytes:2700 (2.6 KiB)veth55dbbb2 Link encap:Ethernet HWaddr CA:4D:09:CD:DA:27inet6 addr: fe80::c84d:9ff:fecd:da27/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:42 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:3336 (3.2 KiB)veth111b1ca Link encap:Ethernet HWaddr 4E:90:A4:B6:91:91inet6 addr: fe80::4c90:a4ff:feb6:9191/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:13 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:1026 (1.0 KiB)veth628d605 Link encap:Ethernet HWaddr 5E:C8:EB:DB:EA:69inet6 addr: fe80::5cc8:ebff:fedb:ea69/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:6 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:468 (468.0 b)veth991629e Link encap:Ethernet HWaddr B6:64:E5:D5:1B:D6inet6 addr: fe80::b464:e5ff:fed5:1bd6/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:27 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:2142 (2.0 KiB)veth5446780 Link encap:Ethernet HWaddr C2:F4:F5:71:F3:BDinet6 addr: fe80::c0f4:f5ff:fe71:f3bd/64 Scope:LinkUP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1RX packets:7 errors:0 dropped:0 overruns:0 frame:0TX packets:49 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:0RX bytes:558 (558.0 b) TX bytes:3894 (3.8 KiB)container模式
使用–net=container:container_id/container_name,多個容器使用共同的網絡看到的ip是一樣的。
[root@localhost ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 7169e8be6d3e centos "/bin/bash" About an hour ago Up About an hour serene_goldstine 4cd696928bbe centos "bash" About an hour ago Up About an hour cent_testv2 4f5bf6f33f2c centos "bash" About an hour ago Up About an hour gloomy_colden 0a80861145c9 centos "bash" About an hour ago Up About an hour mad_carson fb45150dbc21 centos "bash" About an hour ago Up About an hour cent_testv 3222c7c5c456 centos "bash" 2 hours ago Up 2 hours sick_albattani e136b27a8e17 centos "bash" 2 hours ago Up 2 hours tender_euclid [root@localhost ~]# docker exec -it 7169 bash [root@7169e8be6d3e /]# ifconfig bash: ifconfig: command not found [root@7169e8be6d3e /]# yum install -y net-tools ifconfig [root@7169e8be6d3e /]# ifconfig eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500inet 172.17.0.8 netmask 255.255.0.0 broadcast 0.0.0.0inet6 fe80::42:acff:fe11:8 prefixlen 64 scopeid 0x20<link>ether 02:42:ac:11:00:08 txqueuelen 0 (Ethernet)RX packets 5938 bytes 15420209 (14.7 MiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 4841 bytes 329652 (321.9 KiB)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10<host>loop txqueuelen 0 (Local Loopback)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 [root@7169e8be6d3e /]# exit exit [root@localhost ~]# docker run -it --rm --net=container:7169 centos_with_net bash [root@7169e8be6d3e /]# ifconfig eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500inet 172.17.0.8 netmask 255.255.0.0 broadcast 0.0.0.0inet6 fe80::42:acff:fe11:8 prefixlen 64 scopeid 0x20<link>ether 02:42:ac:11:00:08 txqueuelen 0 (Ethernet)RX packets 5942 bytes 15420377 (14.7 MiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 4855 bytes 330480 (322.7 KiB)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10<host>loop txqueuelen 0 (Local Loopback)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0none模式
使用–net=none指定,這種模式下不會配置任何網絡。
[root@localhost ~]# docker run -it --rm --net=none centos_with_net bash [root@67d037935636 /]# ifconfig lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10<host>loop txqueuelen 0 (Local Loopback)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0bridge模式(默認模式)
使用–net=bridge指定,不用指定默認就是這種網絡模式。這種模式會為每個容器分配一個獨立的Network Namespace。類似于Vmware的nat網絡模式。同一個宿主機上的所有容器會在同一個網段下,相互之間是可以通信的。
轉載于:https://www.cnblogs.com/Genesis2018/p/8304717.html
總結
以上是生活随笔為你收集整理的Docker四种网络模式的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux c中使用系统时间
- 下一篇: 系统磁盘资源