add iptables workaround rules for SSDP multicast
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-02-02 00:06:12 +01:00
parent 4a6edebee8
commit 323e908d70
1 changed files with 5 additions and 0 deletions

View File

@ -51,3 +51,8 @@ jellyfin_open_ports:
rules: |
-A INPUT -m state --state NEW -p tcp --dport {{ jellyfin_http_bind_port }} -j ACCEPT
state: present
# multicast (ssdp) will not really work with this, only workarount to prevent exception
- name: allow_jellyfin_multicast
rules: |
-A OUTPUT -m state --state NEW -p udp --destination 239.255.255.250 --dport 1900 -j ACCEPT
state: present