Deep Trekker BRIDGE API - v1.0.3
    Preparing search index...

    Type Alias NetworkDiagnosticsReadonly

    The diagnostics for a network device. For the BridgeBox there should be a local and remote device.

    {
    "networkDevices": {
    "local": {
    "interfaceName": "ETH0",
    "physicalLocation": "LOC",
    "networkRole": "CCO",
    "terminalEndpointIdentifier": "192.168.1.1",
    "bridgedDestinationAddress": "00:1A:2B:3C:4D:5E",
    "outboundRate": "100",
    "inboundRate": "100",
    "chipset": "Qualcomm",
    "firmwareVersion": "1.0.0"
    },
    "remote": {
    "interfaceName": "ETH1",
    "physicalLocation": "REM",
    "networkRole": "STA",
    "terminalEndpointIdentifier": "192.168.1.2",
    "bridgedDestinationAddress": "00:1A:2B:3C:4D:5F",
    "outboundRate": "50",
    "inboundRate": "50",
    "chipset": "Broadcom",
    "firmwareVersion": "1.0.0"
    }
    }
    type NetworkDiagnostics = {
        bridgedDestinationAddress: string;
        chipset: string;
        firmwareVersion: string;
        inboundRate: string;
        interfaceName: string;
        networkRole: NetworkRole;
        outboundRate: string;
        physicalLocation: PhysicalLocation;
        terminalEndpointIdentifier: string;
    }
    Index

    Properties

    bridgedDestinationAddress: string

    MAC of corresponding ethernet IFace behind VDSL

    chipset: string

    Hardware chipset name

    firmwareVersion: string

    The device firmware version

    inboundRate: string

    Inbound transfer rate (in Mbps)

    interfaceName: string

    Network interface name.

    e.g. "ETH0", "ETH1", etc

    networkRole: NetworkRole

    The role of the device in the network. Can be either Central Coordinator (CCO) or Station (STA).

    outboundRate: string

    Outbound transfer rate (in Mbps)

    physicalLocation: PhysicalLocation

    The physical location of the device. Can be either local or remote.

    terminalEndpointIdentifier: string

    The location address of the device.