主機上docker之間不通怎麼辦
出現的問題:docker主機內部網路正常,與其它主機的連線失效,其它主機無法連接docker主機上映射的端口,docker內部也無法連接外部主機。
伺服器環境如下:
##所在系統centos#docker info:WARNING: IPv4 forwarding is disabledWARNING: bridge-nf-call-iptables is disabled#WARNING: bridge-nf-call-ip6tables is disabled
#解決主機上的docker之間不通的方法如下:
1、編輯設定檔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教學欄位。
以上是主機上docker之間不通怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!