Home  >  Q&A  >  body text

linux安装了docker之后,用ifconfig指令看多了一个docker0,怎么关掉?

这个docker0的IP经常被用成server端的IP,导致client没法连

PHP中文网PHP中文网2758 days ago1049

reply all(6)I'll reply

  • 高洛峰

    高洛峰2017-04-24 09:11:12

    Isn’t the correct solution to specify the IP address range of docker0 or specify bind when listening?

    reply
    0
  • 迷茫

    迷茫2017-04-24 09:11:12

    ifconfig docker0 down
    service network restart

    reply
    0
  • 天蓬老师

    天蓬老师2017-04-24 09:11:12

    NetworkManager off

    reply
    0
  • 迷茫

    迷茫2017-04-24 09:11:12

    I won’t tell you how to turn it off.

    Just telling you that the root is actually here:

    Quoted from: Docker container fixed IP allocation

    我们在使用docker run创建Docker容器时,可以用--net选项指定容器的网络模式,Docker有以下4种网络模式:
    host模式,使用--net=host指定。
    container模式,使用--net=container:NAME_or_ID指定。
    none模式,使用--net=none指定。
    bridge模式,使用--net=bridge指定,默认设置。
     
    默认选择bridge。

    reply
    0
  • 阿神

    阿神2017-04-24 09:11:12

    The bridge automatically created when installing docker has not been deleted

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-24 09:11:12

    Docker -d --bridge=none will not create the bridge docker0

    reply
    0
  • Cancelreply