Skip to content

OpenAVC Network & Security Cut Sheet

Audience: IT administrators, network engineers, and security teams.

Scope: Network requirements, traffic profiles, security posture, and firewall rules for OpenAVC deployments. This is not an installation guide. It is a technical reference for evaluating and approving OpenAVC on a managed network.


What Is OpenAVC?

OpenAVC is an open-source AV room control platform that runs on standard hardware (Windows or Linux PCs, VMs, Docker, Raspberry Pi). It controls projectors, displays, audio DSPs, video switchers, cameras, and lighting over standard IP protocols (TCP, UDP, HTTP, serial).

OpenAVC is a single application with a built-in web server. There is no external database, no application server, and no background services beyond the application itself. Configuration, automation, and device state are stored in local files on the host machine.


Deployment Scenarios

Existing PC in the room

The most common deployment. Most AV spaces already have a PC at the lectern, behind the display, or in the rack for digital signage, lecture capture, or room scheduling. OpenAVC runs on that existing PC alongside whatever else it does. It is a lightweight application, not a full operating system, and coexists with other software without conflict.

The same PC that presents content can also control the projector, switch inputs, and adjust audio. The touch panel interface can run right in a browser on that PC’s display, or on a separate tablet or touch screen in the room. If nobody needs a touch panel at all (e.g., everything is triggered automatically by schedules or sensors), OpenAVC runs quietly in the background with no visible UI.

Network impact: Minimal. The PC is already on the network. OpenAVC adds only targeted TCP connections to the specific AV devices in the room. No new hardware, no new network drops.

Dedicated controller (mini PC or Raspberry Pi)

For spaces where there is no existing PC, or where a dedicated appliance is preferred, OpenAVC runs on a small-form-factor PC (Intel NUC, Lenovo Tiny, HP Mini, etc.) or a Raspberry Pi. The Pi image can optionally drive a touch panel display directly via HDMI.

Network impact: One new device on the room’s network segment. Communicates only with AV devices on its local subnet and serves a web interface to touch panels or browsers in that room. No traffic leaves the room unless the optional cloud service is enabled.

Server or VM on the building network

OpenAVC runs on an existing server, VM, or Docker host. It controls AV equipment across multiple rooms from a central location.

Network impact: The server needs IP reachability to every AV device it controls, and devices presenting the touch panel UI need HTTP access to the server. If rooms are on isolated VLANs, firewall rules or routing must allow the server to reach those VLANs on the specific ports listed below.


Network Requirements

Listening ports (inbound to the OpenAVC host)

PortProtocolPurposeRequired?
8080TCP (HTTP)Web interface and REST APIYes
8443TCP (HTTPS)Web interface and REST API over TLSOnly when HTTPS is enabled in Settings > Security
19500TCP (HTTP)Device Simulator UI (development/testing only)No
19872UDPISC auto-discovery (multi-instance setups only)No
8189UDPWebRTC media for the Video Panel plugin (live camera/RTSP streams on the panel)Only when the Video Panel plugin is installed and a panel is viewing a stream
22TCP (SSH)Remote console login — Raspberry Pi appliance image onlyNo — ships disabled; operator-enabled in Settings > Security

Port 8080 is the only port that must be accessible for a standard single-room deployment when HTTPS is off (the default). This is configurable via the OPENAVC_PORT environment variable or system.json.

Port 8443 is opened when HTTPS is enabled. When both listeners are running, the HTTP listener on 8080 returns a 301/308 redirect to the HTTPS URL — so existing bookmarks and panel devices keep working without reconfiguration. If you disable the redirect listener (Settings > Security), only port 8443 is open. Port 8443 is configurable via OPENAVC_TLS_PORT or tls.port in system.json.

Port 19500 is used by the device simulator during development and testing. It is only active when the simulator is running. It does not need to be accessible from other machines.

Port 19872 is used only when multiple OpenAVC instances need to discover each other on the same LAN (inter-system communication). It can be disabled entirely.

Port 8189 is opened only when the optional Video Panel plugin is installed. That plugin displays live IP camera and RTSP streams on the touch panel, and it delivers video to the browser over WebRTC. The browser sends its media to UDP 8189 on the OpenAVC host. For a panel on the same subnet as the host this often works without any change, because consumer firewalls tend to allow same-subnet UDP. If panels are on a different VLAN or subnet, or video tiles stay black while the rest of the panel works, allow inbound UDP 8189 to the OpenAVC host from the panel devices’ subnet. OpenAVC does not add this firewall rule for you, so on a managed network you should add it explicitly. The port is only active while the plugin is running. If the Video Panel plugin is not installed, this port is never opened.

The Video Panel plugin can also show the built-in preview stream of an AV-over-IP encoder (for example a TurtleAV Chazy encoder), which appears on the panel automatically once its controller is connected. These preview streams usually live on the AV/video network, which is commonly a separate VLAN from the control network. The OpenAVC host fetches the preview and passes it to the panel over the host’s normal web port, so no extra inbound port is needed on the panel side. What is required is that the OpenAVC host can route to the encoder’s video network. A host with a second network interface on the AV fabric is the typical arrangement. The panel browser never connects to the video network directly.

The application itself does not listen on any other ports by default: no SNMP agent, no embedded database port, and no proprietary discovery protocol that accepts inbound connections. The Raspberry Pi appliance image can optionally run an SSH server (port 22) for remote console access, but it ships disabled — an operator turns it on in Settings > Security when it is needed (see Raspberry Pi appliance below).

Who can access the web interface

OpenAVC separates two surfaces with different access rules:

  • The room panel (/panel) — the end-user touch interface — is always open. Wall tablets and shared room displays reach it without a login, as an AV panel should.
  • The Programmer (configuration interface) and the control/admin API require an admin credential.

Secure by default. Packaged deployments (Windows installer, Linux install.sh, Docker, Raspberry Pi image) listen on all network interfaces so panels can reach them, but they ship with no credential and refuse admin access until one is set. The first time someone opens the Programmer, OpenAVC presents a one-time “create admin password” screen. Until that is done, the configuration interface and control API return HTTP 401; only the panel and health/status endpoints respond. There is no default password and no open admin surface on a shipped box.

Code-writing endpoints are never open. The endpoints that create or edit Python drivers and scripts (which execute code on the host) always require the admin credential, even on an instance that is otherwise configured for open access.

Binding. Packaged deployments bind to 0.0.0.0 (all interfaces). A bare manual run (python -m server.main from source) binds to 127.0.0.1 (localhost only). To force localhost-only on a packaged deployment, set OPENAVC_BIND=127.0.0.1 (e.g. sudo systemctl edit openavc on Linux, or the network.bind_address field in system.json).

Credentials. The admin password set during first-run setup is stored in system.json on the host. It can be changed later in Settings > Security. For unattended provisioning, it can also be supplied up front via OPENAVC_PROGRAMMER_PASSWORD (and optionally OPENAVC_PROGRAMMER_USERNAME) or an OPENAVC_API_KEY for programmatic clients — an instance configured this way is already “claimed” and goes straight to the login screen.

Raspberry Pi appliance: login and SSH

The Raspberry Pi appliance image hardens the operating-system login as well as the web interface:

  • No shipped OS password. The openavc Linux account is locked in the image — there is no openavc/openavc (or any other) default login. The kiosk display still starts automatically; auto-login does not use a password.
  • One credential. The admin password set during first-run setup becomes the OS console/SSH login for the openavc user too, so there is a single password to manage. Changing it in Settings > Security re-syncs the OS login.
  • SSH off by default. No SSH server runs until you enable it with the Enable SSH toggle in Settings > Security. Once on, log in as openavc with the admin password over port 22. Turn it back off from the same toggle.

This is Pi-image-specific. On a generic Linux install.sh host, OpenAVC does not touch the operating-system account or sshd — the server runs as an unprivileged service user and you manage OS login and SSH yourself.

Fronting OpenAVC with your own auth (an SSO reverse proxy, for example): set OPENAVC_ALLOW_ANONYMOUS=true to opt back into open admin access, and restrict reachability at the proxy. If you do this behind a trusted proxy that sets X-Forwarded-For, also set network.trust_forwarded_for: true in system.json so per-client rate limiting sees the real client IP.


Outbound Traffic (OpenAVC host to the network)

AV device control

OpenAVC initiates outbound TCP and UDP connections to AV equipment. The specific ports depend entirely on which devices are configured in the project. OpenAVC only communicates with devices explicitly defined in the project configuration, using the ports those devices expect. It does not scan or probe the network during normal operation.

The table below lists common AV control ports. This is not exhaustive. AV manufacturers use a wide range of proprietary and standard ports, and new drivers may use ports not listed here.

PortProtocolDevice typeExample
22TCP (SSH)Embedded devices, AV processorsSSH-managed gear
23TCP (Telnet)Switchers, DSPs, amplifiersExtron, Biamp, QSC, Kramer, Shure, LG
80TCP (HTTP)Devices with web APIsPanasonic cameras, REST-based devices
443TCP (HTTPS)Devices with secure web APIsNewer AV-over-IP devices
445TCP (SMB)Windows-based AV servers, NASFile access
1400TCPAudioSonos UPnP
1515TCPSamsung commercial displaysSamsung MDC protocol
1688TCPCrestron-compatible devicesCrestron CIP
1710TCPAudio DSPsQ-SYS QRC (JSON-RPC)
3088TCPCrestron-compatible devicesCrestron XIO
4352TCPProjectorsPJLink standard
5000TCPSwitchers, DSPsKramer Protocol 3000 / Q-SYS QRC alt
5900TCPRemote desktop/previewVNC
7142TCPAMX-compatible devicesAMX ICSP
8080TCPDevices with web APIsAlternate HTTP management
9090TCPDevices with web APIsAlternate HTTP management
10500TCPPTZ camerasSony VISCA over IP
41794TCPCrestron-compatible devicesCrestron CTP
49152TCPAudio DSPsBiamp Tesira
49280TCPAudio mixersYamaha RCP (CL/QL/TF/Rivage/DM3)
52000TCPAudio DSPsQSC Q-SYS
61000TCPWireless microphonesShure DCS
161UDPSNMP-managed devicesRead-only status query (discovery only)
5343TCPNetwork-attached control surfacesElgato Network Dock, Stream Deck Studio (Stream Deck plugin)

An OpenAVC instance controlling only PJLink projectors and a Biamp DSP, for example, will only generate traffic on ports 4352 and 49152. If your network policy requires explicit allow-listing, the exact ports in use for a given deployment can be determined from the project’s device configuration.

Network-attached control surfaces (port 5343): when the Stream Deck plugin is configured with a network-attached deck, the server keeps an outbound TCP connection to the unit on port 5343 and may send mDNS queries (UDP multicast 224.0.0.251:5353) to find it. This protocol has no authentication or encryption — any host on the segment can drive the unit — so place these devices on the control VLAN with the AV equipment. mDNS discovery does not cross VLANs, NAT, or Docker bridge networks; the surface is added by IP address there (a static IP on the unit is recommended).

Diagnosing offline devices

When a device can’t connect, its card in the Programmer shows an “Offline” banner with a specific reason. Use it to tell a network problem from a credentials or device problem before escalating:

Banner reasonWhat it meansWhat to check
Authentication failedThe device answered, but rejected the username/password or key.The credentials in the device’s configuration. For SSH gear, that the OpenAVC key is installed, or that password auth is enabled. Not a network problem.
Connection refusedOpenAVC reached the device’s IP, but nothing is listening on that port.That the control service is enabled on the device (SSH/Telnet/HTTP/API server), and that the configured port matches. Not usually a firewall problem (a firewall drop normally shows as “unreachable”).
Can’t reach the deviceNo route to the host, a DNS failure, or a connection timeout.The device IP, that the host is powered and on the network, VLAN/routing between the OpenAVC host and the device, and any firewall blocking the control port.
SSH host key changedThe device’s SSH host key no longer matches the one OpenAVC trusted.Whether the device was replaced or re-imaged (expected), or whether this is unexpected (possible man-in-the-middle). Re-accept the key only once verified.
Device didn’t respond as expectedThe connection opened, but the device didn’t speak the expected protocol.That the right driver and transport (e.g. SSH vs Telnet, the right port) are selected for this device.
Required client not foundA client OpenAVC shells out to is missing on the host (e.g. the OpenSSH ssh client).That the client is installed and on the system PATH on the OpenAVC host.

OpenAVC retries automatically with exponential backoff (about an hour) before giving up; the banner shows the current attempt. The same reason is also published as the device.<id>.offline_reason state key for automation and monitoring.

Device discovery (on-demand only)

OpenAVC includes a network discovery feature to help AV integrators find devices during initial setup. Discovery is never automatic. It runs only when an integrator explicitly starts a scan from the Programmer interface. Default scan budgets are 60 s (Quick), 120 s (Standard), and 180 s (Thorough).

During a discovery scan, OpenAVC will:

  1. Ping sweep the local subnet(s) using ICMP echo requests. The server sends these through an ICMP socket: the packaged Linux service and Docker image are granted the CAP_NET_RAW capability so they can open a raw ICMP socket, other environments use an unprivileged ICMP datagram socket where the OS allows it, and it falls back to the system ping command otherwise. Firewalls on the AV VLAN must permit ICMP echo request/reply for discovery to see hosts; a host that drops echo can still be found by the mDNS / SSDP listeners or driver probes, but will not be port-scanned.
  2. TCP port scan responding hosts on the AV ports listed above
  3. SNMP query (v2c, community string public, read-only) on port 161
  4. mDNS / DNS-SD query on multicast group 224.0.0.251:5353
  5. SSDP M-SEARCH on multicast group 239.255.255.250:1900
  6. AMX DDP listen on multicast group 239.255.250.250:9131 (passive — receive only)
  7. NetBIOS name query on UDP 137 to live hosts (Standard / Thorough scan only)
  8. Driver-declared TCP probes on open AV ports. Each installed driver may declare its own probe; common probes for AV equipment include identification queries against switchers, DSPs, displays, mixers, and cameras (Extron, Biamp Tesira, QSC Q-SYS, Samsung MDC, Yamaha RCP, Sony VISCA, etc.). The exact wire format and port depend on which drivers are installed; the Programmer IDE’s Driver Builder shows them per driver.
  9. Driver-declared UDP probes if any installed driver declares one. Common examples include PJLink Class 2 SRCH (UDP 4352, broadcast) when the pjlink_class1 driver is installed, Crestron CIP discovery (UDP 41794, broadcast) when the utility/crestron_cip driver is installed, ONVIF WS-Discovery (UDP 3702, multicast 239.255.255.250) when the onvif_camera driver is installed, and other vendor-specific broadcasts shipped by individual drivers.

All discovery traffic is confined to the local subnet(s) detected on the host’s network interfaces. It does not scan remote subnets, public IP ranges, or addresses outside the host’s directly-connected networks. Virtual and VPN adapters are excluded automatically.

Driver-declared probes are subject to a global rate limit of 10 probes per second across the whole scan and bind to the configured control adapter. Probes are one-shot per scan with no retries.

Internet access (optional)

OpenAVC does not require internet access for normal operation. All device control, automation, and UI serving works entirely offline.

The following features require outbound internet access if enabled:

DestinationPortProtocolPurposeCan be disabled?
api.github.com443HTTPSCheck for software updatesYes (updates.check_enabled: false)
github.com443HTTPSDownload updates and community driversYes (manual install alternative)
cloud.openavc.com443WSSCloud management platform (see below)Yes (disabled by default)

If your network policy blocks outbound HTTPS, all local functionality is unaffected. Update checks will fail silently, and the cloud agent (if enabled) will retry with exponential backoff up to a 5-minute interval, then remain dormant until connectivity is restored.


Inter-System Communication (ISC)

When deploying multiple OpenAVC instances (e.g., one per room), ISC allows them to share state and coordinate. ISC is optional and can be disabled entirely.

ParameterValue
Discovery protocolUDP broadcast on port 19872
Discovery rangeLocal broadcast domain only (255.255.255.255)
Peer communicationWebSocket on each instance’s HTTP port (path: /isc/ws)
AuthenticationOptional shared key (configurable per project)
Beacon intervalEvery 5 seconds
Auto-discovery scopeSame subnet/VLAN only
Cross-subnet supportManual peer addressing (no broadcast required)

To disable ISC entirely, set isc.enabled: false in system.json. No UDP traffic will be sent or received on port 19872.

For cross-VLAN multi-instance setups, disable auto-discovery and configure peer addresses manually. This requires only TCP access to each instance’s HTTP port (default 8080), with no UDP broadcast traffic.


Authentication and Access Control

Web interface and API

OpenAVC is typically deployed on an isolated AV VLAN where the controller is not reachable from the general corporate network. In this configuration, authentication is not required and is disabled by default. For deployments where the controller is reachable from a broader network, authentication should be enabled before exposing the interface.

MethodConfigurationWhen to use
HTTP Basic (username + password)OPENAVC_PROGRAMMER_USERNAME and OPENAVC_PROGRAMMER_PASSWORD env vars, or auth.programmer_username and auth.programmer_password in system.jsonSet this when the server is network-accessible and you want to prevent unauthorized access to the Programmer IDE. The browser prompts for both username and password. This is for humans logging in via a browser.
API key (token)OPENAVC_API_KEY env var or auth.api_key in system.jsonSet this if you have third-party integrations (control scripts, middleware, or external software) that connect to the REST API or WebSocket. Provide the key via the X-API-Key header. Not needed unless you are building custom integrations.

You do not need to set both. Either one protects the Programmer IDE and API endpoints. The username/password is for humans (browser login), the API key is for machines (HTTP headers). If both are set, either credential is accepted.

If a programmer password is set without a username, any username entered at the browser prompt is accepted as long as the password matches. Setting a username is recommended when authentication is required.

When authentication is enabled:

  • The Panel (end-user touch interface) remains accessible without credentials
  • The Programmer (configuration interface) requires the username and password
  • All configuration-changing API endpoints require authentication
  • Username and password comparisons both use constant-time algorithms to prevent timing attacks

TLS/HTTPS

OpenAVC defaults to plain HTTP because most deployments live on an isolated AV VLAN. HTTPS is available as a built-in opt-in via Settings > Security in the Programmer IDE, or by setting OPENAVC_TLS_ENABLED=true (or tls.enabled: true in system.json) and restarting the server.

When enabled, the server runs the HTTPS listener on port 8443 (TLS 1.2 and 1.3, RSA-2048 server keys) and keeps a tiny HTTP listener on port 8080 that 301/308-redirects to the HTTPS URL so existing clients keep working.

Two cert modes are supported:

  • Auto-generated self-signed cert. Built-in CA and server cert under {data_dir}/tls/, 10-year validity, SANs covering the OS hostname and every local IPv4. The CA is downloadable at GET /api/certificate for install on panel devices.
  • User-provided cert. Point tls.cert_file / tls.key_file at PEM files signed by your internal CA. No browser warnings if the CA is already trusted by your fleet.

A reverse proxy in front of OpenAVC (nginx, Caddy, Apache, HAProxy) is still fully supported — leave OpenAVC’s TLS off and let the proxy terminate.

Rate limiting

Rate limiting is enabled by default on the HTTP REST API for remote clients. Requests from localhost (127.0.0.1, ::1) are exempt, since the primary use case is a single user on the same machine. Remote clients are subject to the limits below. Rate limiting does not apply to the touch panel UI (which uses WebSocket) or to the command pipeline between the server and AV hardware — commands are sent to devices the instant they are received.

TierLimitApplies to
Open120 requests/min per IPStatus, health check, library endpoints
Standard60 requests/min per IPGeneral API operations
Strict10 requests/min per IPDevice command API, discovery, cloud operations

Failed authentication attempts count against the strict tier, providing brute-force protection. Volume ramps, rapid command sequences, and multi-room control from the touch panel are unaffected by these limits.


Data Storage and Privacy

What is stored locally

DataLocationSensitive?
Project configuration (devices, macros, UI layouts)project.avc (JSON)Low. Contains device IP addresses and connection parameters.
System configurationsystem.jsonMedium. May contain auth passwords and API keys in plaintext. Protect with filesystem permissions.
Persistent variablesstate.jsonLow. Key-value pairs for automation state.
Application logslogs/ directoryLow. Standard application logs. Configurable rotation (default: 50 MB, 5 files).
Cloud pairing datacloud.jsonHigh. Contains system key for cloud authentication. Protect with filesystem permissions.

What is NOT stored

  • No user credentials for the web interface are stored in a database (the password is a single config value)
  • No personal data, user accounts, or usage analytics
  • No device credentials beyond what is configured in the project file (e.g., PJLink passwords)
  • No data is written outside the application’s data directory

Filesystem permissions

The application runs as a standard user process. It does not require administrator/root privileges. It reads and writes only within its own data directory:

PlatformDefault data path
WindowsC:\ProgramData\OpenAVC\
Linux/var/lib/openavc/
Docker/data/ (mounted volume)
Development./data/ (relative to repo)

Cloud Platform (Optional)

The OpenAVC Cloud platform provides remote monitoring, fleet management, and AI-assisted configuration for organizations managing multiple AV spaces. Cloud connectivity is entirely optional and disabled by default. All local functionality works without it.

Connection details

ParameterValue
Endpointwss://cloud.openavc.com/agent/v1
ProtocolWebSocket over TLS 1.2+
DirectionOutbound only. The device initiates the connection. No inbound ports required.
Port443 (standard HTTPS)
Certificate validationRequired. Standard CA-signed certificate.
KeepaliveServer-initiated ping/pong over the WebSocket
ReconnectionExponential backoff: 5s, 10s, 20s, 40s … up to 5 minutes

Authentication

The cloud connection uses a multi-step challenge-response handshake. The system’s secret key never crosses the network.

  1. Device sends a hello message identifying itself (system ID, version, hostname)
  2. Cloud responds with a random 32-byte challenge nonce
  3. Device computes an HMAC-SHA256 proof using a locally-derived authentication key (HKDF-SHA256 from the system key) and sends it back
  4. Cloud independently derives the same key from the stored key hash and verifies the proof
  5. On success, cloud issues a session with a unique signing key

All subsequent messages are signed with HMAC-SHA256 using the session-specific signing key. Messages with invalid or missing signatures are rejected.

Key derivation: HKDF-SHA256 (RFC 5869), stdlib-only implementation (no external crypto libraries) Message signing: HMAC-SHA256 with constant-time verification System key: 64 bytes, cryptographically random, generated locally, never transmitted. Cloud stores only the SHA-256 hash.

What data is sent to the cloud

When cloud is enabled, the following data is transmitted:

DataFrequencyContent
HeartbeatEvery 30 secondsCPU %, memory %, disk %, uptime, device count, connected device count, error count, WebSocket client count, temperature (if available)
State changesBatched every 2 secondsDevice state key-value changes (e.g., device.projector1.power: "on")
AlertsAs they occur (max 10/min)Alert ID, severity, category, message
LogsAs they occur (max 100/min)Log level, source, message

What is NOT sent: Project files, device configurations, system keys, authentication credentials, network topology, or any data from other systems on the network.

What the cloud can do

The cloud platform can send the following commands to a connected device:

CommandDescription
Device commandExecute a device command already defined in the local project (e.g., “turn on projector”)
DiagnosticRequest a network diagnostic (ping, TCP check, traceroute) from the device’s perspective
Software updateTrigger a software update check and install
Remote access tunnelOpen a proxied connection to the local web interface
Alert rulesPush alert rule definitions to be evaluated locally

All remote commands are scoped to actions already available through the local API. The cloud cannot execute arbitrary code, access the filesystem, or modify the network configuration. All commands include the requesting user’s identity for audit purposes.

Remote access tunnels

The cloud platform can open a remote access tunnel to the device’s web interface. This works by proxying HTTP traffic through a secondary WebSocket connection, similar to how tools like ngrok or Cloudflare Tunnel work.

  • The device initiates the tunnel connection (outbound to cloud on port 443)
  • No inbound ports are opened on the device or the network
  • Tunnel connections are authenticated with a per-tunnel token
  • Tunnels are closed when the remote session ends or when the device disconnects

Disabling cloud entirely

Cloud is disabled by default. To confirm it is disabled, verify that cloud.enabled is false in system.json (or that the OPENAVC_CLOUD_ENABLED environment variable is not set to true). When disabled, no cloud-related code runs and no outbound connections to cloud.openavc.com are made.


Firewall Rule Summary

Minimum (single room, no internet)

RuleDirectionSourceDestinationPortProtocol
Web UI accessInboundTouch panels / browsersOpenAVC host8080/tcpHTTP
Web UI access (TLS)InboundTouch panels / browsersOpenAVC host8443/tcpHTTPS (only when enabled)
AV device controlOutboundOpenAVC hostAV device IPsPer device (see table above)TCP

Typical (with updates and discovery)

Add to the minimum rules:

RuleDirectionSourceDestinationPortProtocol
ICMP (discovery)OutboundOpenAVC hostLocal subnetICMPEcho request
NetBIOS (discovery)OutboundOpenAVC hostLocal subnet137/udpNetBIOS name query (Standard / Thorough only)
SNMP (discovery)OutboundOpenAVC hostLocal subnet161/udpSNMP v2c
mDNS (discovery)Outbound + InboundOpenAVC host224.0.0.2515353/udpmDNS
SSDP (discovery)Outbound + InboundOpenAVC host239.255.255.2501900/udpSSDP
AMX DDP (discovery)Inbound239.255.250.250OpenAVC host9131/udpPassive listen
ONVIF WS-DiscoveryOutbound + InboundOpenAVC host239.255.255.2503702/udpOpens when the onvif_camera driver is installed
PJLink Class 2 SRCHOutbound + InboundOpenAVC hostSubnet broadcast4352/udpOpens when the pjlink_class1 driver is installed
PJLink Class 1 INFOOutboundOpenAVC hostClass 2 responders4352/tcpPer-responder follow-up from the PJLink driver
Crestron CIP probeOutbound + InboundOpenAVC hostSubnet broadcast41794/udpOpens when the utility/crestron_cip driver is installed
Driver-declared UDP probesOutbound + InboundOpenAVC hostSubnet broadcastVendor-specificIf installed drivers declare a udp_probe: or sibling _discovery.py Python companion
Driver-declared TCP probesOutboundOpenAVC hostLive hosts with port openVendor-specificIf installed drivers declare a tcp_probe:
Update checksOutboundOpenAVC hostapi.github.com443/tcpHTTPS

With cloud platform

Add to the typical rules:

RuleDirectionSourceDestinationPortProtocol
Cloud connectionOutboundOpenAVC hostcloud.openavc.com443/tcpWSS

Multi-instance (ISC)

Add if running multiple OpenAVC instances that need to coordinate:

RuleDirectionSourceDestinationPortProtocol
ISC discoveryBothOpenAVC hostsBroadcast (255.255.255.255)19872/udpUDP
ISC peer WebSocketBothOpenAVC hostsOther OpenAVC hosts8080/tcpHTTP (WS)

VLAN and Network Segmentation Recommendations

OpenAVC is designed to work well on segmented networks. A common and recommended topology for managed environments:

AV Control VLAN - Contains the OpenAVC host and all AV equipment (projectors, DSPs, switchers, cameras). This VLAN can be fully isolated from the corporate network. If OpenAVC and all controlled devices are on this VLAN, no cross-VLAN rules are needed for device control.

User/Presentation VLAN - If users need to access the touch panel UI from devices on a different VLAN (tablets, room PCs), allow inbound TCP on the OpenAVC host’s HTTP port (8080 by default) from that VLAN.

Internet/WAN - Only required for update checks and cloud connectivity. Can be fully blocked if these features are not needed.

OpenAVC does not use UPnP port mapping, NAT traversal, or any technique that modifies network infrastructure. It operates strictly as a client or server on the ports listed in this document.


Security Posture Summary

AspectDefaultNotes
Inbound ports1 (HTTP 8080)Configurable. Adds 8443 when HTTPS is enabled.
Bind addressLocalhost onlyOnly the host PC can access the UI. Change via OPENAVC_BIND env var to allow tablets/other devices.
AuthenticationOffAppropriate for isolated AV VLANs. Enable for broader networks.
TLSOff, opt-in built-inEnable via Settings > Security. Auto-generated self-signed cert or supply your own. Reverse-proxy TLS also supported.
Outbound internetNot requiredOnly for optional updates and cloud
Cloud connectivityDisabled by defaultOpt-in with explicit configuration
Privileged accessNone requiredRuns as standard user, no root/admin
External dependencies at runtimeNoneNo external database, message broker, or third-party service required
Discovery scansOn-demand onlyNever automatic. Integrator must manually initiate.
Broadcast trafficISC only (if enabled)UDP on port 19872. Disabled by setting isc.enabled: false.
Data exfiltration riskLowOnly sends data externally if cloud is explicitly enabled. All cloud data is itemized above.

Quick-Start: Evaluating OpenAVC on Your Network

If you want to try OpenAVC before committing to a deployment, you can have it running on any Windows or Linux machine in under five minutes. The fastest way to evaluate it is on a PC you already have.

Option 1: Windows Installer (no network impact)

  1. Download the installer from github.com/open-avc/openavc/releases
  2. Run the .exe installer
  3. Open http://localhost:8080/programmer in a browser

OpenAVC is running as a Windows service. It generates zero network traffic until you add and connect to AV devices. You can explore the full Programmer interface, build a project, and test with the built-in simulator without any AV hardware. The touch panel UI is at http://localhost:8080/panel.

Option 1b: From source (any platform, no network impact)

  1. Install Python 3.11+ and Node.js 18+ on any Windows or Linux machine
  2. Download OpenAVC from github.com/open-avc/openavc
  3. Open a terminal in the downloaded directory and run:
cd openavc
pip install -r requirements.txt
cd web/programmer && npm install && npm run build && cd ../..
python -m server.main
  1. Open http://localhost:8080/programmer in a browser on the same machine

At this point OpenAVC is running on localhost only. It generates zero network traffic.

Option 2: Connect to AV devices

If the PC running OpenAVC can already reach the AV equipment on the network (same subnet or routable), you can add devices in the Programmer interface by IP address. OpenAVC will open outbound TCP connections to those devices. No bind address change is needed for this, since device control is outbound traffic from the OpenAVC host.

If you also want a separate tablet or browser on another machine to access the touch panel, enable network access as described in the “Who can access the web interface” section above.

Option 3: Docker

Download the maintained compose file and start it (Linux Docker hosts only):

curl -fsSL https://raw.githubusercontent.com/open-avc/openavc/main/installer/docker-compose.yml -o docker-compose.yml
docker compose up -d

Set a programmer password by adding OPENAVC_PROGRAMMER_PASSWORD under an environment: block in the compose file before starting. Access at http://<host-ip>:8080/programmer. The compose file uses host networking so the container’s network requirements are identical to a bare-metal installation.


Frequently Asked Questions

Does it need Active Directory or LDAP integration? No. OpenAVC uses a simple password for the configuration interface and optional API keys for automation. There is no user database or directory integration.

Does it phone home? Not by default. Update checks (to GitHub’s public API) can be enabled or disabled. Cloud connectivity is a separate opt-in feature that is off by default.

Does it need a database server? No. All data is stored in JSON files on the local filesystem. There is no PostgreSQL, MySQL, Redis, or any external data store.

Does it need its own dedicated hardware? No. OpenAVC is a lightweight application, not an appliance. It runs alongside other software on any Windows or Linux machine. The most common deployment is on a PC already in the room (lectern PC, digital signage machine, room scheduling display, etc.). It can also run on an existing server, VM, or Docker host. Resource usage is minimal (typically under 100 MB RAM, negligible CPU when idle).

Does it modify the host system? Minimally. The Windows installer creates a Windows service (via NSSM) and adds a firewall rule for port 8080. The Linux install script creates a systemd service and an openavc user. Docker and from-source installations make no system modifications. In all cases, application data is confined to a single data directory.

What if we block all outbound internet? OpenAVC will work normally. Update checks will fail silently and cloud features (if configured) will be dormant. All AV control, automation, and UI functionality is fully local.

Is the source code available for review? Yes. OpenAVC is MIT-licensed open source. The full source code, including the cloud agent that handles remote connectivity, is available at github.com/open-avc/openavc.


Document version: 1.0. For the latest version, see docs.openavc.com.