open additional ports for plex

This commit is contained in:
Andreas Zweili 2022-01-25 06:40:25 +01:00
parent f7e5afab79
commit 50b0be4198
1 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,17 @@
{ ... }:
{
networking = {
firewall.allowedTCPPorts = [ 32400 ];
firewall.allowedTCPPorts = [
32400 # Web Interface/ Remote Access
];
firewall.allowedUDPPorts = [
1900 # DLNA
5353 # Bonjour/Avahi
32410 # GDM network discovery
32412 # GDM network discovery
32413 # GDM network discovery
32414 # GDM network discovery
32469 # Plex DLNA Server
];
};
}