centos7 docker删除端口映射_在CentOS 7 上为docker配置端口转发以兼容firewall的解决方法...

在CentOS 7上当我们以类似下列命令将主机端口与容器端口映射时可能遇到无法访问容器服务的问题

docker run --name web_a -p 192.168.1.250:803:80 -d web_a:beta1.0.0 .

由于docker在执行此命令时,是向iptables注入了一条规则将主机803映射到容器80端口,但是CentOS 7中以firewalld服务替代了iptables。因此,上述命令的端口映射不会生效。

解决方法:首先观察一下主机上的网卡信息,确认增加了一个docker0的虚拟网卡:

[root@localhost /home]# ifconfig

docker0: flags=4163 mtu 1500

inet 172.17.0.1 netmask 255.255.0.0 broadcast 172.17.255.255

inet6 fe80::42:5cff:fe0e:82f9 prefixlen 64 scopeid 0x20

ether 02:42:5c:0e:82:f9 txqueuelen 0 (Ethernet)

RX packets 1288 bytes 1561177 (1.4 MiB)

RX errors 0 dropped 0 overruns 0 frame 0

TX packets 1594 bytes 108755 (106.2 KiB)

TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

enp2s0: flags=4163 mtu 1500

inet 192.168.1.250 netmask 255.255.255.0 broadcast 192.168.1.255

inet6 fe80::76f4:9aea:4973:ec6c prefixlen 64 scopeid 0x20

inet6 240e:379:542:2800:8844:77ba:78dd:7 prefixlen 128 scopeid 0x0

inet6 240e:379:542:2811:3ead:218:ba68:38e6 prefixlen 64 scopeid 0x0

ether 74:d4:35:09:93:19 txqueuelen 1000 (Ethernet)

RX packets 10166908 bytes 1221399579 (1.1 GiB)

RX errors 0 dropped 3014 overruns 0 frame 0

TX packets 982334 bytes 427296782 (407.5 MiB)

TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

device interrupt 18

lo: flags=73 mtu 65536

inet 127.0.0.1 netmask 255.0.0.0

inet6 ::1 prefixlen 128 scopeid 0x10

loop txqueuelen 1000 (Local Loopback)

RX packets 1833650 bytes 450567722 (429.6 MiB)

RX errors 0 dropped 0 overruns 0 frame 0

TX packets 1833650 bytes 450567722 (429.6 MiB)

TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

vethecef228: flags=4163 mtu 1500

inet6 fe80::f425:f1ff:fe82:9c19 prefixlen 64 scopeid 0x20

ether f6:25:f1:82:9c:19 txqueuelen 0 (Ethernet)

RX packets 234 bytes 1520113 (1.4 MiB)

RX errors 0 dropped 0 overruns 0 frame 0

TX packets 613 bytes 39809 (38.8 KiB)

TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

使用如下命令确认容器实例得到的虚拟ip:

docker inspect web_a

假设容器中的ip为172.17.0.2,接下来我们要为此IP做个NAT转发规则,并让firewalld服务处理此规则:

#主机端口请求转发到容器(容器中的服务不要监听localhost而要监听容器分配的虚拟IP或者以0.0.0.0替代)

firewall-cmd --permanent --zone=public --add-masquerade 启用端口NAT转发

#将主机803端口请求转发到容器上的80端口

firewall-cmd --add-forward-port=port=803:proto=tcp:toaddr=172.17.0.2:toport=80 --permanent

#重载规则

firewall-cmd --reload

#列出所有规则

firewall-cmd --list-all

public (active)

target: default

icmp-block-inversion: no

interfaces: enp2s0

sources:

services: ssh dhcpv6-client

ports: 3306/tcp 80/tcp 21/tcp 5000/tcp 6379/tcp 900/tcp 801/tcp 802/tcp 6000/tcp 5002/tcp 90/tcp 9092/tcp 81/tcp 803/tcp

protocols:

masquerade: yes

forward-ports: port=803:proto=tcp:toport=80:toaddr=172.17.0.2

source-ports:

icmp-blocks:

rich rules:

#重新启动docker

systemctl restart docker

#重新启动容器

docker start web_a

经上述操作,就能以主机IP:803访问容器上的80端口的服务,并不需要关闭firewalld(很多网上的结论是换成iptables服务,实测不需要)。

总结

到此这篇关于在CentOS 7 上为docker配置端口转发以兼容firewall的解决方法的文章就介绍到这了,更多相关docker配置端口转发以兼容firewall内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值