From 5e66e9db4c19058769ab49b8064d6c3cedbd59aa Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Fri, 12 Feb 2016 20:57:16 +0100 Subject: s/ansible_ssh_/ansible_/ --- roles/common/templates/etc/fail2ban/jail.local.j2 | 4 ++-- roles/common/templates/etc/iptables/services.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/common/templates/etc/fail2ban/jail.local.j2 b/roles/common/templates/etc/fail2ban/jail.local.j2 index a34cb70..f1c9833 100644 --- a/roles/common/templates/etc/fail2ban/jail.local.j2 +++ b/roles/common/templates/etc/fail2ban/jail.local.j2 @@ -23,7 +23,7 @@ ignoreip = 127.0.0.0/8 {{ groups.all | sort | join(' ') }} [ssh] enabled = true -port = {{ ansible_ssh_port|default('22') }} +port = {{ ansible_port|default('22') }} filter = sshd logpath = /var/log/auth.log maxretry = 5 @@ -31,7 +31,7 @@ maxretry = 5 [ssh-ddos] enabled = true -port = {{ ansible_ssh_port|default('22') }} +port = {{ ansible_port|default('22') }} filter = sshd-ddos logpath = /var/log/auth.log maxretry = 2 diff --git a/roles/common/templates/etc/iptables/services.j2 b/roles/common/templates/etc/iptables/services.j2 index 8792771..303fa06 100644 --- a/roles/common/templates/etc/iptables/services.j2 +++ b/roles/common/templates/etc/iptables/services.j2 @@ -16,7 +16,7 @@ out udp 123 # NTP out udp 123 123 # NTP {% endif %} -in tcp {{ ansible_ssh_port|default('22') }} # SSH +in tcp {{ ansible_port|default('22') }} # SSH {% if 'LDAP-provider' in group_names %} in tcp 636 # LDAPS {% elif 'MX' in group_names or 'lists' in group_names %} -- cgit v1.2.3