分享

为docker配置固定ip

hochikong 发表于 2015-2-17 14:14:38 [显示全部楼层] 回帖奖励 阅读模式 关闭右栏 1 45838
本帖最后由 hochikong 于 2015-2-17 14:15 编辑
问题导读:
1.docker网络有哪几种模式?
2.如何手动为容器配置ip?
3.如何清理已经配置的内容?


docker默认使用bridge模式,通过网桥连接到宿主机,而容器内部的ip则从网桥所在的ip段取未用的ip。这样做一个不方便的地方在于容器内部的ip不是固定的,想要连接容器时只能通过映射到宿主机的端口,因而有很多项目使用overlay来为docker提供网络的配置,比如Pipework、Flannel、Kubernetes、Weave、opencontrail等。

想要使用overlay来为docker配置网络,需要首先了解下docker的网络模式:

--net=bridge — The default action, that connects the container to the Docker bridge as described above.

--net=host — Tells Docker to skip placing the container inside of a separate network stack. In essence, this choice tells Docker to not containerize the container's networking! While container processes will still be confined to their own filesystem and process list and resource limits, a quick ip addr command will show you that, network-wise, they live “outside” in the main Docker host and have full access to its network interfaces. Note that this doesnot let the container reconfigure the host network stack — that would require --privileged=true — but it does let container processes open low-numbered ports like any other root process. It also allows the container to access local network services like D-bus. This can lead to processes in the container being able to do unexpected things like restart your computer. You should use this option with caution.

--net=container:NAME_or_ID — Tells Docker to put this container's processes inside of the network stack that has already been created inside of another container. The new container's processes will be confined to their own filesystem and process list and resource limits, but will share the same IP address and port numbers as the first container, and processes on the two containers will be able to connect to each other over the loopback interface.

--net=none — Tells Docker to put the container inside of its own network stack but not to take any steps to configure its network, leaving you free to build any of the custom configurations explored in the last few sections of this document.

上面这几种方式只有--net=none才可以为docker分配固定ip,来看看如何操作。

首先,配置一个用于创建container interface的网桥,可以使用ovs,也可以使用Linux bridge,以Linux bridge为例:

  1. br_name=docker
  2. brctl addbr $br_name
  3. ip addr add 192.168.33.2/24 dev $br_name
  4. ip addr del 192.168.33.2/24 dev em1
  5. ip link set $br_name up
  6. brctl addif $br_name eth0
复制代码
接着,可以启动容器了,注意用--net=none方式启动:
  1. # start new container
  2. hostname='docker.test.com'
  3. cid=$(docker run -d -i -h $hostname --net=none -t centos)
  4. pid=$(docker inspect -f '{{.State.Pid}}' $cid)
复制代码
下面,为该容器配置网络namespace,并设置固定ip:
  1. # set up netns
  2. mkdir -p /var/run/netns
  3. ln -s /proc/$pid/ns/net /var/run/netns/$pid
  4. # set up bridge
  5. ip link add q$pid type veth peer name r$pid
  6. brctl addif $br_name q$pid
  7. ip link set q$pid up
  8. # set up docker interface
  9. fixed_ip='192.168.33.3/24'
  10. gateway='192.168.33.1'
  11. ip link set r$pid netns $pid
  12. ip netns exec $pid ip link set dev r$pid name eth0
  13. ip netns exec $pid ip link set eth0 up
  14. ip netns exec $pid ip addr add $fixed_ip dev eth0
  15. ip netns exec $pid ip route add default via 192.168.33.1
复制代码
这样,容器的网络就配置好了,如果容器内部开启了sshd服务,通过192.168.33.3就可以直接ssh连接到容器,非常方便。上面的步骤比较长,可以借助pipework来为容器设置固定ip(除了设置IP,还封装了配置网关、macvlan、vlan、dhcp等功能):
  1. pipework docker0 be8365e3b2834 10.88.88.8/24
复制代码

那么,当容器需要删除的时候,怎么清理网络呢,其实也很简单:
  1. # stop and delete container
  2. docker stop $cid
  3. docker rm $cid
  4. # delete docker's net namespace (also delete veth pair)
  5. ip netns delete $pid
复制代码



更多docker网络的配置,可以参考官方手册


#####################################################
本文转自:http://www.cnblogs.com/feisky/p/4063162.html
欢迎加入about云群9037177932227315139327136 ,云计算爱好者群,亦可关注about云腾讯认证空间||关注本站微信

已有(1)人评论

跳转到指定楼层
Joker 发表于 2015-7-11 10:55:21
分配了固定的ip但是关闭了容器在重启容器再次进入容器后发现已经没有ip了,docker容器不能保存住ip吗?不论是动态还是静态的
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

推荐上一条 /2 下一条