30 lines
422 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Docker修改默认网段
createTime: 2025/03/27 22:20:49
tags:
- Docker
---
修改`daemon.json`,加入以下配置:
```json
{
"default-address-pools": [
{
"base": "10.192.0.0/16",
"size": 22
}
]
}
```
还有个配置项是`bip`
```json
{
"bip": "192.168.5.1/24"
}
```
`bip`是修改 docker0 默认网桥的网段,`default-address-pools`则是修改所有的网络池