Rumah > Artikel > Operasi dan penyelenggaraan > docker无法连接宽带怎么办?
docker无法连接宽带怎么办?
解决docker无法连接宽带的办法:
1、问题描述
开发环境使用docker好久了,突然docker的网络不通了
docker主机内部网络正常,与其它主机的连接失效,其它主机不能连接docker主机上映射的端口,docker内部也无法连接外部主机
所在系统centos
docker info信息如下:
WARNING: IPv4 forwarding is disabled WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disabled
2、解决文案
编辑配置文件
vim /etc/sysctl.conf
在文件中增加以下代码
net.bridge.bridge-nf-call-ip6tables=1 net.bridge.bridge-nf-call-iptables=1 net.bridge.bridge-nf-call-arptables=1 net.ipv4.ip_forward=1
重启网络
systemctl restart network
再次查看docker info,警告消失,网络恢复正常
推荐教程:《docker视频教程》
Atas ialah kandungan terperinci docker无法连接宽带怎么办?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!