Docker's four network types principle examples

Docker's four network types principle examples

Four network types:

  • None: Do not configure any network function for the container, --net=none
  • Container: Share the Network Namespace with another running container, --net=container:containerID (K8S)
  • Host: Share the Network Namespace with the host, --net=host
  • Bridge: NAT network model designed by Docker

The following are explained separately:

none:

[root@docker1 centos_zabbix]# docker run -it --network none centos6.9_ssh:v2 /bin/bash
[root@6ae597015723 /]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1
  link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  inet 127.0.0.1/8 scope host lo
    valid_lft forever preferred_lft forever

This kind of thing has no IP and can be played around in the container, which doesn't make much sense

Container type network:

[root@1c21de6080bb html]# [root@docker1 centos_zabbix]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
1c21de6080bb centos6.9_nginx_ssh:v3 "/bin/bash" 26 seconds ago Up 25 seconds vigorous_payne
[root@docker1 centos_zabbix]# docker run -it --network container:1c21de6080bb centos6.9_nginx_ssh:v4 /bin/bash
 
The IP address that shares the host name can view the properties [root@docker1 centos_zabbix]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
41c457f6b89d centos6.9_nginx_ssh:v4 "/bin/bash" 5 minutes ago Up 5 minutes loving_curie
1c21de6080bb centos6.9_nginx_ssh:v3 "/bin/bash" 6 minutes ago Up 6 minutes vigorous_payne
 
[root@docker1 centos_zabbix]# docker inspect 41c457f6b89d|grep -i network
      "NetworkMode": "container:1c21de6080bb8c83e800fa8b5fb15782a18bb61ab292050ca1172fbb866b1afc",
    "NetworkSettings": {
      "Networks": {}

It should be noted that whoever uses a port first will occupy it, and later users will not be able to use this port.

Host type

[root@docker1 centos_zabbix]# docker run -it --network=host centos6.9_nginx_ssh:v2 /bin/bash

This is to share the port with the host machine, whoever occupies it first will use it, but the performance is the highest, so we use this parameter when building the image, just to unify the network type and improve the efficiency of building the image

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed introduction to the docker network configuration process
  • Docker network principles and detailed analysis of custom networks
  • Docker container custom hosts network access operation
  • Docker custom network detailed introduction

<<:  jQuery achieves full screen scrolling effect

>>:  The perfect solution for forgetting the password in mysql8.0.19

Recommend

Ubuntu Server Installation Tutorial in Vmware

This article shares with you the Ubuntu server ve...

Modify the default scroll bar style in the front-end project (summary)

I have written many projects that require changin...

A brief discussion on the magical uses of CSS pseudo-elements and pseudo-classes

CSS plays a very important role in a web page. Wi...

How to introduce img images into Vue pages

When we learn HTML, the image tag <img> int...

JavaScript to achieve product query function

This article example shares the specific code of ...

MySQL 5.7 cluster configuration steps

Table of contents 1. Modify the my.cnf file of se...

WeChat applet calculator example

This article shares the specific code of the WeCh...

Disable IE Image Toolbar

I just tried it on IE6, and it does show the toolb...

MySQL series multi-table join query 92 and 99 syntax examples detailed tutorial

Table of contents 1. Cartesian product phenomenon...

How to mount the CD to find the rpm package under Linux

Written in front Sometimes you need to install so...

Zen Coding Easy and fast HTML writing

Zen Coding It is a text editor plugin. In a text ...

Example analysis of mysql user rights management

This article describes the MySQL user rights mana...

Vue recursively implements three-level menu

This article example shares the specific code of ...

How to implement Ajax concurrent request control based on JS

Table of contents Preface Ajax serial and paralle...

Detailed explanation of the Docker deployment tutorial for Jenkins beginners

This article deploys Jenkins+Maven+SVN+Tomcat thr...