Port Reference
Port Reference
Section titled “Port Reference”Ports used by Plex Media Server and common companion applications.
Plex Media Server
Section titled “Plex Media Server”| Port | Protocol | Purpose |
|---|---|---|
| 32400 | TCP | Main Plex web interface and API |
| 32469 | TCP | DLNA server |
| 1900 | UDP | DLNA discovery |
| 32410 | UDP | GDM network discovery |
| 32412 | UDP | GDM network discovery |
| 32413 | UDP | GDM network discovery |
| 32414 | UDP | GDM network discovery |
| 8324 | TCP | Roku companion |
Required for Remote Access
Section titled “Required for Remote Access”Port 32400 TCP must be forwarded for remote streaming.
Optional Ports
Section titled “Optional Ports”- 1900 UDP: DLNA discovery (local network only)
- 32410-32414 UDP: GDM discovery (local network only)
Companion Applications
Section titled “Companion Applications”| Application | Default Port | Protocol |
|---|---|---|
| Tautulli | 8181 | TCP |
| Overseerr | 5055 | TCP |
| Sonarr | 8989 | TCP |
| Radarr | 7878 | TCP |
| Lidarr | 8686 | TCP |
| Prowlarr | 9696 | TCP |
| qBittorrent | 8080 | TCP |
| SABnzbd | 8080 | TCP |
| Jackett | 9117 | TCP |
Firewall Rules
Section titled “Firewall Rules”Linux (UFW)
Section titled “Linux (UFW)”# Essentialsudo ufw allow 32400/tcp
# Optional (local network)sudo ufw allow 1900/udpsudo ufw allow 32410:32414/udpWindows PowerShell
Section titled “Windows PowerShell”# EssentialNew-NetFirewallRule -DisplayName "Plex" -Direction Inbound -Protocol TCP -LocalPort 32400 -Action Allow
# OptionalNew-NetFirewallRule -DisplayName "Plex DLNA" -Direction Inbound -Protocol UDP -LocalPort 1900 -Action AllowNew-NetFirewallRule -DisplayName "Plex GDM" -Direction Inbound -Protocol UDP -LocalPort 32410-32414 -Action AllowDocker Port Mapping
Section titled “Docker Port Mapping”services: plex: ports: - "32400:32400/tcp" - "32469:32469/tcp" # Optional: DLNA - "1900:1900/udp" # Optional: DLNA discovery - "32410:32410/udp" # Optional: GDM - "32412:32412/udp" # Optional: GDM - "32413:32413/udp" # Optional: GDM - "32414:32414/udp" # Optional: GDMOr use network_mode: host for simplicity.
Troubleshooting
Section titled “Troubleshooting”Check Port Status
Section titled “Check Port Status”# Linuxss -tlnp | grep 32400
# Windowsnetstat -an | findstr 32400Test External Access
Section titled “Test External Access”# From external networknc -zv YOUR_PUBLIC_IP 32400