Analysis of the implementation method of modifying the default network segment of Docker

Analysis of the implementation method of modifying the default network segment of Docker

background

All of the company's servers are purchased Alibaba Cloud ECS hosts. The default intranet segment is 172.16.0.0/12, and the services on the test server are basically deployed using Docker.
The Docker installed by my previous colleague on this machine is all default configuration, with the network segment of 172.17.0.0/24. In actual use, there will be a need to access the host machine through 172.17.0.1, which will conflict with other host machine IPs, so the default network segment of the container needs to be modified.

Workaround

1. Stop the Docker service on the host

sudo systemctl stop docker

2. Modify the container configuration file /etc/docker/daemon.json

sudo cat /etc/docker/daemon.json
{
  "registry-mirrors": ["https://gbs4gco0.mirror.aliyuncs.com"],
  "bip": "10.50.0.1/16",
}

As described in the above code, the bip field in the configuration file can set the docker network segment of the host machine and configure it to the private network address (192.168.0.0/10.0.0.0/172.0.0.0)

3. Start the Docker service

sudo systemctl daemon-reload
sudo systemctl start docker

4. Verify the docker-0 bridge address

sudo ifconfig
...
docker0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 10.50.0.1 netmask 255.255.0.0 broadcast 10.50.255.255
    inet6 fe80::42:46ff:fe18:add5 prefixlen 64 scopeid 0x20<link>
    ether 02:42:46:18:ad:d5 txqueuelen 0 (Ethernet)
    RX packets 14697564 bytes 5943503139 (5.5 GiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 15379709 bytes 6846099156 (6.3 GiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
...

At this point, the default network segment of Docker has been modified. You can check whether the IP of the previous container has been modified.

sudo docker container inspect alipne --format="{{.NetworkSettings.IPAdress}}"
10.50.0.2

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:
  • Correct modification steps for Docker's default network segment
  • How to modify the default network segment of Docker0 bridge in Docker
  • Detailed explanation of Docker container cross-host multi-network segment communication solution
  • Docker realizes the connection with the same IP network segment
  • Docker specifies an IP address that is in the same network segment as the host.
  • How does Docker allocate host network segment IP?
  • Docker container specifies a fixed IP/static IP address in a custom network segment

<<:  Detailed explanation of vue3 cache page keep-alive and unified routing processing

>>:  Getting Started: A brief introduction to HTML's basic tags and attributes

Recommend

Detailed tutorial on installing Python 3.6.6 from scratch on CentOS 7.5

ps: The environment is as the title Install possi...

In-depth understanding of CSS @font-face performance optimization

This article mainly introduces common strategies ...

MySQL 8.0.3 RC is about to be released. Let’s take a look at the changes

MySQL 8.0.3 is about to be released. Let’s take a...

How to quickly deploy an Elasticsearch cluster using docker

This article will use Docker containers (orchestr...

Sample code for implementing form validation with pure CSS

In our daily business, form validation is a very ...

How to quickly set the file path alias in react

React is a JavaScript library for building user i...

N ways to center elements with CSS

Table of contents Preface Centering inline elemen...

Linux kernel device driver system call notes

/**************************** * System call******...

Detailed explanation of FTP environment configuration solution (vsftpd)

1. Install vsftpd component Installation command:...

HTML form and the use of form internal tags

Copy code The code is as follows: <html> &l...

Detailed explanation of the functions of each port of Tomcat

From the tomcat configuration file, we can see th...

Solution to the error problem of Vscode remotely connecting to Ubuntu

1. Background of the incident: Because of work ne...

Linux uses binary mode to install mysql

This article shares the specific steps of install...

Linux MySQL root password forgotten solution

When using the MySQL database, if you have not lo...