Docker custom bridge docker0 and docker's opening, closing, and restarting command operations

Docker custom bridge docker0 and docker's opening, closing, and restarting command operations

question

After the company migrated the server, the docker0 bridge created by default conflicted with the company's external network gateway.

This results in the external network being unable to connect to the server.

Solution

Modify the default configuration file /etc/docker/daemon.json to configure Docker.

If not created directly

1. Shut down the docker service

systemctl stop docker

2. Modify bip

{
 "bip": "192.168.0.1/24", # Modify here.... 
}

3. Restart Docker

systemctl restart docker

Docker shutdown, restart, and start commands

sudo service docker stop # Shut down or sudo systemctl stop docker
sudo service docker restart # Restart or sudo systemctl restart docker
sudo service docker start # Start sudo systemctl start docker # Start

Supplement: Modify the default ip of docker0

When the Docker service is started, a docker0 bridge is created by default (with a docker0 internal interface on it), which connects other physical or virtual network cards at the kernel layer, putting all containers and the local host on the same physical network.

By default, Docker specifies the IP address and subnet mask of the docker0 interface, allowing the host and container to communicate with each other through the bridge. It also gives the MTU (the maximum transmission unit allowed to be received by the interface), which is usually 1500 Bytes, or the default value supported by the host network routing. These values ​​can be configured when the service is started.

You can edit the /etc/docker/daemon.json file and add the content "bip": "ip/netmask" [Do not use the same network segment as the host]

[root@localhost /]# vi /etc/docker/daemon.json
{"bip":"192.168.100.1/24"}

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Docker Compose network settings explained
  • A brief discussion on docker-compose network settings
  • Docker adds a bridge and sets the IP address range
  • A troubleshooting experience of centos Docker bridge mode unable to access the host Redis service
  • Docker-compose creates a bridge, adds a subnet, and deletes a network card

<<:  Use a diagram to explain what Web2.0 is

>>:  Detailed explanation of the properties and instance usage of hasOwnProperty in js

Recommend

Detailed explanation of CSS3 elastic expansion box

use Flexible boxes play a vital role in front-end...

Comprehensive summary of mysql functions

Table of contents 1. Commonly used string functio...

Record of the actual process of packaging and deployment of Vue project

Table of contents Preface 1. Preparation - Server...

JavaScript to implement slider verification code

This article shares the specific code of JavaScri...

Install mysql5.7.13 using RPM in CentOS 7

0. Environment Operating system for this article:...

How to build a K8S cluster and install docker under Hyper-V

If you have installed the Win10 system and want t...

Problems and solutions encountered when installing mininet on Ubuntu 16.04.4LTS

Mininet Mininet is a lightweight software defined...

How to enter directory/folder in Linux without using CD command

As we all know, without the cd command, we cannot...

Summary of methods to check whether the port is open in Linux

Method 1: Use lsof command We can use the lsof co...

CSS implements Google Material Design text input box style (recommended)

Hello everyone, today I want to share with you ho...

In-depth explanation of Set and WeakSet collections in ES6

Table of contents Set is a special collection who...

mysql-8.0.17-winx64 deployment method

1. Download mysql-8.0.17-winx64 from the official...