action gambitcomm_protocol_telnet_ipalias_list { label: "List all IP aliases on the agent and the simulator host" description: "By default, the MIMIC TELNET server listens on all the IP addresses (aliases) that are configured for an agent" provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/protocol/msg/telnet/ipalias/list" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { IP: { type: "string" } interface: { type: "string" } mask: { type: "string" } port: { type: "integer" format: "int32" } } } } }