An OPC UA Local Discovery Server (LDS) is a service that maintains a registry of the OPC UA servers available on the local network; clients can query it to find servers dynamically without knowing their URLs in advance.
True
The LDS workflow is simple: each server registers itself with the local LDS (typically on port 4840) and provides its URL, Application Description and supported Endpoints. The LDS keeps that list up to date through periodic heartbeats. A client then calls FindServers on the LDS to retrieve the registered server list, which enables a true plug-and-play experience where a new server on the network is immediately visible to all clients. Reference implementations exist in open source (open62541) and in commercial products (Unified Automation LDS).
Deploy an LDS on every site network even if you only have a handful of servers: it removes hard-coded URLs from your clients and dramatically simplifies day-2 operations such as server replacement or hostname changes.
OPC UA bank in preparation
The full OPC UA bank isn't available yet. Drop your email to get notified at launch and grab an early-bird discount.
Join the waitlist →See the 9 other OPC UA practice questions
Related questions
- What is the complete format of an OPC UA NodeId?2. NodeIds · NodeId-Format
- An OPC UA Subscription groups several MonitoredItems and publishes value changes periodically (PublishingInterval typically 100-1000 ms); the server keeps a buffer of unacknowledged notifications for reliability.3. Services · Subscriptions
- Which Security Modes does an OPC UA SecureChannel support per the standard?4. Security · SecureChannel-Modi
- OPC UA uses X.509 certificates to authenticate applications (both client and server): each application holds its own certificate, and trust is established mutually through the exchange that happens during the SecureChannel handshake.4. Security · Zertifikate
- OPC UA Pub/Sub supports several transports: UDP multicast (lowest latency, machine-to-machine), MQTT (cloud-friendly via broker) and AMQP (enterprise messaging), making it adaptable to a wide range of use cases.9. Pub/Sub · Transport-Optionen