Deno.NetworkInterfaceInfo

The information for a network interface returned from a call to Deno.networkInterfaces.

interface NetworkInterfaceInfo {
address: string;
cidr: string;
family: "IPv4" | "IPv6";
mac: string;
name: string;
netmask: string;
scopeid: number | null;
}

§Properties

§
address: string
[src]

The IP address bound to the interface.

§
cidr: string
[src]

The CIDR range.

§
family: "IPv4" | "IPv6"
[src]

The IP protocol version.

§
mac: string
[src]

The MAC address.

§
name: string
[src]

The network interface name.

§
netmask: string
[src]

The netmask applied to the interface.

§
scopeid: number | null
[src]

The IPv6 scope id or null.