docker 容器连不了网,怎么处理
学习是最好的投资!
宿主机内运行 sysctl net.ipv4.conf.all.forwarding 确保这个转发功能为开启。如果没开的话运行 sysctl net.ipv4.conf.all.forwarding=1 开启它。
sysctl net.ipv4.conf.all.forwarding
sysctl net.ipv4.conf.all.forwarding=1
我之前遇到过这个问题,是因为修改了防火墙设置导致的,重启 docker 服务可以解决了。
楼主可以尝试下重启 docker 服务,centos 是 service docker restart
service docker restart
宿主机内运行
sysctl net.ipv4.conf.all.forwarding
确保这个转发功能为开启。如果没开的话运行
sysctl net.ipv4.conf.all.forwarding=1
开启它。我之前遇到过这个问题,是因为修改了防火墙设置导致的,重启 docker 服务可以解决了。
楼主可以尝试下重启 docker 服务,centos 是
service docker restart