- Getting started
- Using the software
- OPC UA
- Graphic and layout objects
- Developing solutions
- Developing projects with C#
- Application examples
- UI tutorial
- NetLogic tutorial
- Object and variable references
Configure a dynamic network
Enable DHCP to configure a dynamic network.
- To activate the DHCP service for the LAN, locate the corresponding network interface and set theDhcpEnabledproperty.foreach (var networkInterface in systemNode.NetworkInterfaces) { if (networkInterface.InterfaceName == "LAN") networkInterface.DhcpEnabled = true; }
Provide Feedback