码迷,mamicode.com
首页 > Web开发 > 详细

centos 7 Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work

时间:2020-08-01 21:28:36      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:docker容器   not   emctl   默认   div   返回   star   nbsp   for   

解决办法:
# vi /etc/sysctl.conf
或者
# vi /usr/lib/sysctl.d/00-system.conf
添加如下代码:
    net.ipv4.ip_forward=1
 
重启network服务
# systemctl restart network
 
查看是否修改成功
# sysctl net.ipv4.ip_forward
 
如果返回为“net.ipv4.ip_forward = 1”则表示成功了
 
这时,重启容器即可。

 systemctl restart docker

 

另外还可以通过run时加-p 参数指定IP的方式来解决,比如 -p 0.0.0.0:999:999(指定ip就按ipv4来,否则默认全部是ipv6的。)

centos 7 Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work

标签:docker容器   not   emctl   默认   div   返回   star   nbsp   for   

原文地址:https://www.cnblogs.com/land-fill/p/13415856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!