Detailed explanation of direct routing in cross-host communication of Docker containers

Detailed explanation of direct routing in cross-host communication of Docker containers

Overview

As for the current default network of Docker itself, different Docker containers on a single host can communicate directly with the help of the docker0 bridge, which is fine. However, Docker containers on different hosts can only communicate by mapping ports on the host. Sometimes this method is inconvenient and may not even meet our requirements. Therefore, it is necessary for Docker containers on different physical machines to communicate directly using their own IP addresses. Furthermore, if we start Docker containers on different physical hosts, we will inevitably encounter cross-host communication problems of Docker containers. Let’s try it in this article.

Analysis of the scheme principle

Since the container's IP is used for routing, it is necessary to avoid containers on different hosts using the same IP. To this end, we should assign different subnets to different hosts to ensure this. So we construct a routing solution for communication between two containers.

Environment Introduction:

The IP address of host 1 is: 192.168.145.128
The IP address of host 2 is: 192.168.145.129
Subnet assigned to Docker container on Host 1: 172.17.1.0/24
Subnet assigned to Docker containers on Host 2: 172.17.2.0/24
After this configuration, the Docker containers on the two hosts will definitely not use the same IP address, thus avoiding IP conflicts.

To summarize, the data packet transmission process between two containers is as follows:
The data packet sent from container1 to container2 is first sent to the "gateway" docker0 of container1, and then by looking up the route of host1, it is found that the data packet needs to be sent to host2. After the data packet arrives at host2, it is forwarded to docker0 of host2, and finally it is transferred to container2 by docker0. The reverse principle is the same and will not be repeated here.

1. Configure docker0 on host 1 and host 2 respectively

Edit the /etc/docker/daemon.json file on host 1 and add the following content: "bip" : "ip/netmask"
{ "bip", "172.17.1.252/24" }

Edit the /etc/docker/daemon.json file on host 2 and add the following content: "bip" : "ip/netmask"
{ "bip", "172.17.2.252/24" }

Restart the docker service. Execute the following command on both host 1 and host 2 to restart the docker service so that the modified docker0 network segment will take effect. systemctl restart docker

2. Add routing rules

Add routing rules on host 1 as follows:
route add -net 172.17.2.0 netmask 255.255.255.0 gw 192.168.145.129

Add routing rules on host 2 as follows:
route add -net 172.17.1.0 netmask 255.255.255.0 gw 192.168.145.128

3. Configure iptables rules

Add the following rules on host 1:
iptables -t nat -F POSTROUTING
iptables -t nat -A POSTROUTING -s 172.17.1.0/24 ! -d 172.17.0.0/16 -j MASQUERADE

Add the following rules on host 2:
iptables -t nat -F POSTROUTING
iptables -t nat -A POSTROUTING -s 172.17.2.0/24 ! -d 172.17.0.0/16 -j MASQUERADE

4. Start the container

Start the centos container on host 1:
docker run -it --name container1 centos /bin/bash

Start the centos container on host 2:
docker run -it --name container2 centos /bin/bash

OK, now the two containers can ping each other.

5. Route persistence (to prevent route loss when host restarts)

root@rancher:~# vi /etc/rc.local

Add routing information, remember to write it before exit! ! ! :
route add -net 172.17.2.0 netmask 255.255.255.0 gw 192.168.102.88

The above is all the knowledge about cross-host communication of Docker containers. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how Docker containers communicate across hosts
  • Detailed explanation of overlay network in Docker
  • Implementation of Docker cross-host network (overlay)
  • Docker container cross-host communication--overlay network

<<:  Detailed explanation of the installation and use of Vue-Router

>>:  How Database SQL SELECT Queries Work

Recommend

Use of Docker image storage overlayfs

1. Overview The image in Docker is designed in la...

React Hooks Detailed Explanation

Table of contents What are hooks? Class Component...

How to quickly insert 10 million records into MySQL

I heard that there is an interview question: How ...

How to create a basic image of the Python runtime environment using Docker

1. Preparation 1.1 Download the Python installati...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

How to use CSS to center a box horizontally and vertically (8 methods)

Original code: center.html : <!DOCTYPE html>...

MySQL table and column comments summary

Just like code, you can add comments to tables an...

The impact of limit on query performance in MySQL

I. Introduction First, let me explain the version...

mysql5.7.17 installation and configuration example on win2008R2 64-bit system

123WORDPRESS.COM has explained to you the install...

How to authorize all the contents of a folder to a certain user in Linux?

【Problem Analysis】 We can use the chown command. ...

Super detailed tutorial to implement Vue bottom navigation bar TabBar

Table of contents Project Introduction: Project D...

Tips for List Building for Website Maintenance Pages

And, many times, maintenance requires your website...

The difference between KEY, PRIMARY KEY, UNIQUE KEY, and INDEX in MySQL

The problem raised in the title can be broken dow...

Discussion on the problem of garbled characters in iframe page parameters

I encountered a very unusual parameter garbled pro...