From 3d8fb84d1f4976cee7bdeba692d7a11173955c72 Mon Sep 17 00:00:00 2001 From: "Rasmus \"Pez\" Wejlgaard" Date: Sun, 29 Mar 2026 19:12:10 +0100 Subject: [PATCH] Feat/london b plex ufw (#21) * Allow Plex port (32400/tcp) through UFW on london-b Plex needs direct access on port 32400 for remote streaming. Adds common_ufw_allowed_ports to london-b host_vars. * Add BitTorrent port (6881) to london-b UFW allowed ports Port was already manually configured in UFW, bringing it under Ansible management. * Add Samba port (445/tcp) to london-b UFW allowed ports --- ansible/inventory/host_vars/london-b.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/inventory/host_vars/london-b.yml b/ansible/inventory/host_vars/london-b.yml index 8855e67..ce11ce2 100644 --- a/ansible/inventory/host_vars/london-b.yml +++ b/ansible/inventory/host_vars/london-b.yml @@ -16,3 +16,5 @@ common_ufw_allowed_ports: - {port: 32400, proto: tcp, comment: "Plex Media Server"} - {port: 6881, proto: tcp, comment: "BitTorrent"} - {port: 6881, proto: udp, comment: "BitTorrent"} + - {port: 445, proto: tcp, comment: "Samba"} +