【iptables&docker】对运行docker的服务器开启iptables策略

一、背景

在Linux上docker映射了端口,想着对服务端口进行限制指定IP访问,发现在filter表的INPUT链限制无效。

二、 分析

# iptables -L -nv --line-numbers

Chain INPUT (policy ACCEPT 200K packets, 8397K bytes)
num   pkts bytes target     prot opt in     out     source               destination         
1        0     0 DROP       tcp  --  *      *       192.168.4.200        0.0.0.0/0            tcp dpt:443

Docker容器启动防火墙上的变动,如果暴露本机端口,在nat表的DOCKER链上增加一条规则:

DNAT tcp -- !<docker-network> 0.0.0.0/0 0.0.0.0/0 tcp dpt:<dest port> to:<new address>:<new port>

可以通过命令sudo iptables -t nat -nvL DOCKER查看。
通过在nat表增加规则来drop掉所有访问容器暴露端口的连接,最后处理结果如下:

# iptables -L -nv --line-numbers

Chain DOCKER (2 references)
num   pkts bytes target     prot opt in     out     source               destination         
1        0     0 DROP       tcp  --  *      *       192.168.4.202        0.0.0.0/0            tcp
2        3   180 DROP       tcp  --  *      *       192.168.4.200        0.0.0.0/0            tcp
3        2   120 DROP       tcp  --  *      *       192.168.4.200        0.0.0.0/0            tcp dpt:443
4        0     0 ACCEPT     tcp  --  !br-9c0d36154c4e br-9c0d36154c4e  0.0.0.0/0            172.18.0.11          tcp dpt:6379

在Linux上,Docker操纵iptables提供网络隔离的规则。
虽然这是一个实现细节,您不应该修改Docker插入到您的iptables政策,如果你想在Docker管理的政策之外拥有自己的政策,它确实对你需要做的事情有一些影响。
如果您在一台暴露于互联网的主机上运行Docker,那么您可能希望有iptables策略来防止对容器或其他在您的主机上运行的服务的未授权访问。

image.png

Docker安装了两个定制的iptables链,名为DOCKER-USER和DOCKER,它确保传入的数据包总是首先由这两个链检查。

Docker的所有iptables规则都被添加到Docker链中,不要手动操作该链条。
如果您需要添加在Docker规则之前加载的规则,请将它们添加到DOCKER-USER链中。这些规则是在Docker自动创建任何规则之前应用的。

添加到转发链中的规则——无论是手动添加的,还是由另一个基于iptables的防火墙添加的——都会在这些链之后进行评估。这意味着如果您通过Docker暴露一个端口,无论您的防火墙配置了什么规则,该端口都会被暴露。

如果您希望这些规则即使在端口通过Docker暴露时也适用,那么您必须将这些规则添加到DOCKER-USER链中。

三、实例

只允许 192.168.1.101 ~ 192.168.1.103 的主机访问本机的 1~65535/tcp 1~65535/udp。

# cat set_iptables_rules.sh

#!/bin/bash

nic="eth0"

ips="
192.168.1.101
192.168.1.102
192.168.1.103
"

iptables -I DOCKER  -i ${nic} -p tcp --dport 1:65535 -j DROP
iptables -I DOCKER  -i ${nic} -p udp --dport 1:65535 -j DROP

for ip  in ${ips}
do
  iptables -I DOCKER -i ${nic}  -s ${ip} -p tcp --dport 1:65535 -j ACCEPT
  iptables -I DOCKER -i ${nic}  -s ${ip} -p udp --dport 1:65535 -j ACCEPT
done

注:此操作是临时生效,服务器重启失效

四、将iptables策略注册成系统服务,实现开机自启

# setenforce 0

# sed -i 's/^SELINUX=.*/SELINUX=permissive/g'   /etc/selinux/config

# cat /etc/systemd/system/iptables.service

[Unit]
Description=iptables rules service
After=network.target

[Service]
Type=oneshot
ExecStart=/bin/bash   /usr/sbin/set_iptables_rules.sh
ExecStop=/usr/sbin/iptables -P INPUT ACCEPT
ExecStop=/usr/sbin/iptables -F
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target

image.png

# cat /usr/sbin/set_iptables_rules.sh

#!/bin/bash

nic="eth0"

ips="
192.168.1.101
192.168.1.102
192.168.1.103
"

iptables -I DOCKER  -i ${nic} -p tcp --dport 1:65535 -j DROP
iptables -I DOCKER  -i ${nic} -p udp --dport 1:65535 -j DROP

for ip  in ${ips}
do
  iptables -I DOCKER -i ${nic}  -s ${ip} -p tcp --dport 1:65535 -j ACCEPT
  iptables -I DOCKER -i ${nic}  -s ${ip} -p udp --dport 1:65535 -j ACCEPT
done
image.png

# systemctl daemon-reload

# systemctl  start   iptables.service

# systemctl  enable  iptables.service

# systemctl  status  iptables.service

image.png
# iptables  -nvL  --line
Chain INPUT (policy ACCEPT 188 packets, 19400 bytes)
num   pkts bytes target     prot opt in     out     source               destination

Chain FORWARD (policy DROP 0 packets, 0 bytes)
num   pkts bytes target     prot opt in     out     source               destination
1        0     0 DOCKER-ISOLATION  all  --  *      *       0.0.0.0/0            0.0.0.0/0
2        0     0 DOCKER     all  --  *      docker0  0.0.0.0/0            0.0.0.0/0
3        0     0 ACCEPT     all  --  *      docker0  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
4        0     0 ACCEPT     all  --  docker0 !docker0  0.0.0.0/0            0.0.0.0/0
5        0     0 ACCEPT     all  --  docker0 docker0  0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT 154 packets, 21532 bytes)
num   pkts bytes target     prot opt in     out     source               destination

Chain DOCKER (1 references)
num   pkts bytes target     prot opt in     out     source               destination
1        0     0 ACCEPT     udp  --  eth0   *       192.168.1.103        0.0.0.0/0            udp dpts:1:65535
2        0     0 ACCEPT     tcp  --  eth0   *       192.168.1.103        0.0.0.0/0            tcp dpts:1:65535
3        0     0 ACCEPT     udp  --  eth0   *       192.168.1.102        0.0.0.0/0            udp dpts:1:65535
4        0     0 ACCEPT     tcp  --  eth0   *       192.168.1.102        0.0.0.0/0            tcp dpts:1:65535
5        0     0 ACCEPT     udp  --  eth0   *       192.168.1.101        0.0.0.0/0            udp dpts:1:65535
6        0     0 ACCEPT     tcp  --  eth0   *       192.168.1.101        0.0.0.0/0            tcp dpts:1:65535
7        0     0 DROP       udp  --  eth0   *       0.0.0.0/0            0.0.0.0/0            udp dpts:1:65535
8        0     0 DROP       tcp  --  eth0   *       0.0.0.0/0            0.0.0.0/0            tcp dpts:1:65535

Chain DOCKER-ISOLATION (1 references)
num   pkts bytes target     prot opt in     out     source               destination
1        0     0 RETURN     all  --  *      *       0.0.0.0/0            0.0.0.0/0


# systemctl  stop iptables.service

# iptables -nvL --line

Chain INPUT (policy ACCEPT 27 packets, 2968 bytes)
num   pkts bytes target     prot opt in     out     source               destination

Chain FORWARD (policy DROP 0 packets, 0 bytes)
num   pkts bytes target     prot opt in     out     source               destination

Chain OUTPUT (policy ACCEPT 24 packets, 3141 bytes)
num   pkts bytes target     prot opt in     out     source               destination

Chain DOCKER (0 references)
num   pkts bytes target     prot opt in     out     source               destination

Chain DOCKER-ISOLATION (0 references)
num   pkts bytes target     prot opt in     out     source               destination

注意: 对运行docker的主机执行 iptables -F ,会直接清空所有的docker的iptables策略,需要重启docker

五、参考

Docker and iptables
https://docs.docker.com/network/iptables

iptables匹配端口范围,映射,网络状态
http://t.zoukankan.com/Carr-p-7396031.html

iptables阻止了应用连到 容器化的MySQL
https://www.cnblogs.com/shaoyang0123/p/15065439.html

iptables限制docker端口禁止对某台主机进行提供服务
https://blog.csdn.net/qq_50573146/article/details/125833273

iptables限制Docker IP和端口访问
https://blog.csdn.net/yeqinghanwu/article/details/125979997

使用iptables为docker容器配置防火墙策略
https://blog.csdn.net/m0_37814112/article/details/121229022

Linux运维实战总结
https://blog.csdn.net/m0_37814112/category_10867749.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,294评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,780评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,001评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,593评论 1 289
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,687评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,679评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,667评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,426评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,872评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,180评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,346评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,019评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,658评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,268评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,495评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,275评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,207评论 2 352

推荐阅读更多精彩内容