@tikoci/centrs
    Preparing search index...

    Interface MndpNeighbor

    A decoded MNDP announcement. Every advertised field is optional because a device only sends what it has; sequence and unknownTlvs are always set so consumers never branch on their existence.

    interface MndpNeighbor {
        board?: string;
        identity?: string;
        interfaceName?: string;
        ipv4?: string;
        ipv6?: string;
        macAddress?: string;
        platform?: string;
        sequence: number;
        softwareId?: string;
        unknownTlvs: readonly MndpUnknownTlv[];
        unpack?: number;
        uptimeSeconds?: number;
        version?: string;
    }
    Index

    Properties

    board?: string

    Board model, e.g. RB4011iGS+5HacQ2HnD or CHR.

    identity?: string

    Hostname; shared across all interfaces of one device.

    interfaceName?: string

    Sending interface name on the router, e.g. ether1.

    ipv4?: string

    IPv4 of the sending interface, dotted-quad.

    ipv6?: string

    Link-local or global IPv6 of the sending interface.

    macAddress?: string

    Per-interface MAC, lower-case colon-separated (e.g. e4:8d:8c:11:22:33).

    platform?: string

    Usually MikroTik.

    sequence: number

    Per-device monotonically increasing sequence number from the header.

    softwareId?: string

    License identifier.

    unknownTlvs: readonly MndpUnknownTlv[]

    TLV records with an unrecognized type, preserved in arrival order.

    unpack?: number

    Firmware compression flag.

    uptimeSeconds?: number

    Seconds since boot.

    version?: string

    RouterOS version string, e.g. 7.18 (stable).