我正在努力通过Ansible设置UFW规则。我能够安装它,启动它并拒绝一切。然后我尝试允许来自http,https和ssh的连接。所有为这些项添加允许的尝试都会遇到如下错误:
failed: [lempy1] (item={u'service': u'http'}) => {"failed": true, "item": {"service": "http"}, "msg": "ERROR: Could not find a profile matching 'http'\n"}
failed: [lempy1] (item={u'service': u'https'}) => {"failed": true, "item": {"service": "https"}, "msg": "ERROR: Could not find a profile matching 'https'\n"}
failed: [lempy1] (item={u'service': u'ssh'}) => {"failed": true, "item": {"service": "ssh"}, "msg": "ERROR: Could not find a profile matching 'ssh'\n"}
整个角色如下所示:
---
- name: Install ufw
apt: name=ufw state=present
tags:
- security
- name: Allow webservery things
ufw:
rule: allow
name: '{{item.service}}'
with_items:
- service: http
- service: https
- service: ssh
tags:
- security
- name: Start ufw
ufw: state=enabled policy=deny
tags:
- security
我知道为什么我不能允许这些服务?当ssh进入服务器并运行sudo ufw allow http
等时,我能够正确添加服务。
答案 0 :(得分:3)
如ufw module docs中所述,名称(或app)参数使用在/etc/ufw/applications.d
中注册的具有INI格式的应用程序,如下所示:
[CUPS]
title=Common UNIX Printing System server
description=CUPS is a printing system with support for IPP, samba, lpd, and other protocols.
ports=631
通常,您可以使用ufw allow application-profile
允许在/etc/ufw/applications.d
或/etc/services
中定义的应用程序为/etc/ufw/applications.d
中未必定义的内容打开iptables
不幸的是,Ansible的ufw module改为以这种格式构建ufw命令:
/usr/sbin/ufw allow from any to any app 'application-profile'
哪个仅使用/etc/ufw/applications.d
列表并且无法阅读/etc/services
。
在您的情况下,您可以简单地指定端口,因为它们是众所周知的,可能使用命名变量来进一步解释您的Ansible代码:
- name: Allow webservery things
ufw:
rule: allow
port: '{{ item }}'
with_items:
- '{{ http_port }}'
- '{{ https_port }}'
- '{{ ssh_port }}'
tags:
- security
然后在某处定义变量(例如你的角色默认值):
http_port: 80
https_port: 443
ssh_port: 22
顺便说一下,你可能想要注意到我用单个键将你的词典列表简化为一个更简单的直接列表,可以稍微整理你的任务。
或者,您可以使用Ansible的template module轻松模板应用程序配置文件。