NetworkInterfaceOptions: NetworkInterfaceData

Configuration options for NetworkInterface model instances.

This interface defines the complete network interface configuration including hardware details, connection state, and protocol-specific information for WiFi and Ethernet interfaces. Use these options when creating NetworkInterface models to represent physical or virtual network interfaces on KOS devices.

Example: Basic Usage

const options: NetworkInterfaceOptions = {
name: 'eth0',
type: 'ethernet',
configured: true,
category: 'EXTERNAL'
};