Docker如何实现同Ip网段联通
这篇文章主要介绍"Docker如何实现同Ip网段联通",在日常操作中,相信很多人在Docker如何实现同Ip网段联通问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"Docker如何实现同Ip网段联通"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
例如
宿主机a 和宿主机b是网络联通关系,在宿主机a上面创建了多个容器组成集群,但是我希望通过宿主机b也可以访问到宿主机a的容器,当然,你也可能会说,端口映射非常方便,如果我需要的端口比较多,或者着如果我临时需要增加某些端口,可能设置起来比较麻烦,那么如果我们将宿主机a里面的容器的ip与宿主机的ip在同一个网络,不就可以直接来进行互联互通了么。
1、安装docker(linux服务器)
安装 docker
yum install docker
2、 使用pipework为docker容器配置独立ip
安装pipework这个工具可以使用一条命令就可以实现更改容器的ip,更准确来说为容器ip添加一个新的网卡。
wget https://github.com/jpetazzo/pipework/archive/master.zipunzip master.zip cp pipework-master/pipework /usr/local/bin/chmod +x /usr/local/bin/pipework
3、编辑ip的配置文件,eh0
编辑默认ip配置文件,eth0或者ens33(不同操作系统,名称不一致,例如我操作的这台机器的名称为ifcfg-ens33)
vim /etc/sysconfig/network-scripts/ifcfg-ens33
输入i进入到编辑模式,将下面的内容复制到文件中
type=ethernetproxy_method=nonebrowser_only=nobootproto=dhcpdefroute=yesipv4_failure_fatal=noipv6init=yesipv6_autoconf=yesipv6_defroute=yesipv6_failure_fatal=noipv6_addr_gen_mode=stable-privacyname=ens33uuid=36b40bc6-6775-4e02-8161-e245d0e3892fdevice=ens33#以下为桥接部分设置onboot=yesbridge=br0peerdns=yespeerroutes=yesipv6_peerdns=yesipv6_peerroutes=yes
4、创建自定义网桥br0
vim ifcfg-br0
并且将配置内容复制到配置文件中
device=br0 bootproto=static nm_cintroller=no onboot=yes type=bridge ipaddr=192.168.186.128 netmask=255.255.255.0
重启虚拟机网络服务
systemctl restart network
5、修改docker配置文件,指定网桥
修改docker的配置文件/etc/sysconfig/
vim /etc/sysconfig/docker
修改内容如下
options='--selinux-enabled --log-driver=journald --signature-verification=false'
修改为:
options='--selinux-enabled -b=br0'
修改完之后:
# /etc/sysconfig/docker# modify these options if you want to change the way the docker daemon runs#options='--selinux-enabled --log-driver=journald --signature-verification=false'options='--selinux-enabled -b=br0'if [ -z "${docker_cert_path}" ]; then docker_cert_path=/etc/dockerfi# do not add registries in this file anymore. use /etc/containers/registries.conf# instead. for more information reference the registries.conf(5) man page.# location used for temporary files, such as those created by# docker load and build operations. default is /var/lib/docker/tmp# can be overriden by setting the following environment variable.# docker_tmpdir=/var/tmp# controls the /etc/cron.daily/docker-logrotate cron job status.# to disable, uncomment the line below.# logrotate=false# docker-latest daemon can be used by starting the docker-latest unitfile.# to use docker-latest client, uncomment below lines#dockerbinary=/usr/bin/docker-latest#dockerdbinary=/usr/bin/dockerd-latest#docker_containerd_binary=/usr/bin/docker-containerd-latest#docker_containerd_shim_binary=/usr/bin/docker-containerd-shim-latestother_args='-b br0'
5、重启docker服务
systemctl restart docker
6、创建docker容器实例
docker run -itd --name test1 --net=none centos /bin/bash
--net=none代表容器的网卡都是为空的,需要通过pipework进行自定义指定
7、指定网卡
pipework br0 test1 192.168.186.111/24@192.168.186.128
8、进入到容器,尝试ping宿主机和同网段ip是否能够ping通
# 进入到容器docker attach test1# ping 宿主机ping 192.168.186.22
8.1 修改同网段主机ip
修改主机ip,网段与宿主机a网桥ip段保持一致。设置后,宿主机a,b之间可以互相ping通
# ping 同网段ipping 192.168.186.33
到此,关于"Docker如何实现同Ip网段联通"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!