Device Types configured with "Label" - Manual - Industrial Edge - Industrial Edge - Industrial Edge - Documentation of the Industrial Edge Platform - IEM - Hub - Industrial - Device - IED - Edge - IEH

Industrial Edge Platform Operation - Build a Device

Portfolio
Industrial Edge
Product
Industrial Edge
Software version
v25.06
Edition
06/2025
Language
English

NOTICE

To be able to configure a network interface via a label, the Industrial Edge Device Kit version must be 1.6.0-6 or higher.

If you want to configure your devices with a network label, you must provide "map" in the device description:

    "ethernet": {
        "configurationTypes": ["map"],
        "numberOfPorts": 2,
        "map": [{
            "label": "<device_network_label_1>",
            "interface-name": "<corresponding_interface_name_1>"
        }, {
            "label": "<device_network_label_2>",
            "interface-name": "<corresponding_interface_name_2>"
        }]
    }

You can use the "ip link" command to display network interfaces on a Linux device.

ip link command

So, if the ethernet configuration is:

    "ethernet": {
        "configurationTypes": ["map"],
        "numberOfPorts": 2,
        "map": [{
            "label": "Interface A",
            "interface-name": "enp0s3"
        }, {
            "label": "Interface B",
                "interface-name": "enp0s8"
        }]
    }

then the corresponding network configuration UI will be as follows:

Configure Network Interface Label