add iptables workaround rules for SSDP multicast
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
4a6edebee8
commit
323e908d70
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user