Ethernet-specific interface data including connection status and performance metrics.

interface EthernetData {
    carrier: boolean;
    speed: number;
    duplex: string;
}

Properties

Properties

carrier: boolean

Whether the Ethernet cable is connected (link up/down status)

speed: number

Connection speed in Mbps (e.g., 10, 100, 1000)

duplex: string

Duplex mode - 'full' for full-duplex, 'half' for half-duplex