In OPC UA architecture, what is the primary role of the server?
Think about who holds the data and who asks for it.
The OPC UA server hosts data and services. Clients connect to servers to read or write data.
What output indicates a successful secure channel creation in an OPC UA client log?
opcua-client --connect opc.tcp://localhost:4840 [INFO] Secure channel established with server at opc.tcp://localhost:4840
Look for confirmation messages about secure channel status.
A successful secure channel is confirmed by an info log stating it was established.
Which configuration snippet correctly sets an OPC UA server endpoint to listen on port 4840 with no security?
Check protocol, IP binding, port, and security settings.
Option C uses the correct OPC UA TCP protocol, binds to all interfaces, port 4840, and disables security.
An OPC UA client fails to connect to the server and logs the error: 'BadCertificateUntrusted'. What is the most likely cause?
Focus on certificate trust issues in secure connections.
'BadCertificateUntrusted' means the server rejected the client's certificate because it is not in the trusted list.
Arrange the steps in the correct order for an OPC UA client to subscribe to data changes from a server.
Think about establishing connection before monitoring data.
The client must first create a session, then a subscription, add items to monitor, and finally receive updates.