Type alias NetdGetNetworkStatusInterface

NetdGetNetworkStatusInterface: {
    dns: string[];
    ip: string;
    running: boolean;
}

Network status of specific interface.

Type declaration

  • dns: string[]

    IPv4 addresses of DNS servers configured or obtained from DHCP.

  • ip: string

    IPv4 address of the interface. Can be empty string, if no address is assigned. No network mask is included. Example: "192.168.180.1"

  • running: boolean

    Whether the interface is enabled and running or not.

Generated using TypeDoc