docker中开放端口IPv4 forwarding is disabled. Networking will not work解决方法

1、编辑 vim /etc/sysctl.conf
2、添加 net.ipv4.ip_forward=1
3、重启network服务 systemctl restart network

查看防火墙的状态: systemctl status firewalld
打开防火墙的方式有两种,
一种是打开后重启会恢复回原来的状态,命令为:sudo systemctl start firewalld;
另一种是打开后重启不会恢复到原来的状态,命令为:sudo systemctl enable firewalld,这种方式输入命令后要重启系统才会生效。
关闭防火墙的方式也有两种:
systemctl stop firewalld
systemctl disable firewalld。

你可能感兴趣的:(docker中开放端口IPv4 forwarding is disabled. Networking will not work解决方法)