interface EthAddr {
    entity: EntityAddr;
    entityNotFoundBehavior?:
        | "no"
        | "normal"
        | "withVin"
        | "withEid"
        | "forceNormal"
        | "forceWithVin"
        | "forceWithEid";
    name: string;
    taType: "physical"
    | "functional";
    tcpClientPort?: number;
    tester: TesterAddr;
    udpClientPort?: number;
    virReqAddr: string;
    virReqType: "unicast" | "omit" | "broadcast" | "multicast";
}

Properties

entity: EntityAddr
entityNotFoundBehavior?:
    | "no"
    | "normal"
    | "withVin"
    | "withEid"
    | "forceNormal"
    | "forceWithVin"
    | "forceWithEid"
name: string
taType: "physical" | "functional"
tcpClientPort?: number
tester: TesterAddr
udpClientPort?: number
virReqAddr: string
virReqType: "unicast" | "omit" | "broadcast" | "multicast"