feat: allow sshd to bind on multiple networks

This commit is contained in:
Clément Désiles
2026-04-11 22:54:35 +02:00
parent ac40c23d06
commit f9397ad38c
2 changed files with 7 additions and 19 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
--- ---
ssh_port: 22 ssh_port: 22
ssh_allowed_network: "192.168.1.0/24" ssh_allowed_networks:
ssh_allowed_vpn_network: "192.168.27.0/27" - { src: "192.168.1.0/24", comment: "SSH from LAN" }
- { src: "192.168.27.0/27", comment: "SSH from VPN" }
ssh_users: "jokester" # space separated if many ssh_users: "jokester" # space separated if many
ssh_config_dir: "/etc/ssh" ssh_config_dir: "/etc/ssh"
sshd_config: "{{ ssh_config_dir }}/sshd_config" sshd_config: "{{ ssh_config_dir }}/sshd_config"
+4 -17
View File
@@ -20,23 +20,15 @@
name: "{{ ssh_service_name }}" name: "{{ ssh_service_name }}"
enabled: true enabled: true
- name: Allow local network incoming connection - name: Allow SSH incoming connections
community.general.ufw: community.general.ufw:
rule: allow rule: allow
port: "{{ ssh_port }}" port: "{{ ssh_port }}"
proto: tcp proto: tcp
from: "{{ ssh_allowed_network }}" from: "{{ item.src }}"
direction: in direction: in
comment: "SSH from local network" comment: "{{ item.comment }}"
loop: "{{ ssh_allowed_networks }}"
- name: Allow SSH VPN incoming connection
community.general.ufw:
rule: allow
port: "{{ ssh_port }}"
proto: tcp
from: "{{ ssh_allowed_vpn_network }}"
direction: in
comment: "SSH from VPN network"
# TODO # TODO
# - name: Add SSH public key to authorized_keys # - name: Add SSH public key to authorized_keys
@@ -105,8 +97,3 @@
enabled: true enabled: true
state: started state: started
- name: Start and enable fail2ban
ansible.builtin.service:
name: fail2ban
state: started
enabled: true