Skip to content

接口描述

查询节点网卡信息

请求路径

GET /v1/ant/<nodeID>/interfaces

请求参数

名称类型位置必须描述
Authorizationstringheader鉴权 token
nodeIDstringpath节点 ID

返回值

名称类型描述
interfaces[]Interface网卡信息

Interface

名称类型描述
netDevNamestring网卡名
ipstringip 地址
macstringmac 地址
speedstring速率
subNetPortInfo[]SubNetPort网卡详细信息

SubNetPort

名称类型描述
namestring网卡名
ipstringip 地址
typestringIP地址类型(v4/v6)
broadcaststring广播地址
scopestringscope路由
isDynamicbool是否动态获取IP地址

请求示例

json

返回值示例

json
正常请求:
  http code 200
{
  "interfaces": [
    {
      "netDevName": "eth0",
      "ip": "172.0.0.1",
      "mac": "ff:ee:cc:dd:aa:bb",
      "speed": "1Gbit/s",
      "subNetPortInfo": [
      {
        "name": "eth3",
        "ip": "fe80::d6ae:52ff:fe6c:b36e",
        "type": "v6",
        "broadcast": "",
        "scope": "link",
        "isDynamic": false
      },
      {
        "name": "eth1",
        "ip": "172.17.32.4",
        "type": "v4",
        "broadcast": "",
        "scope": "global",
        "isDynamic": false
        }
      ]
    }
  ]
}
异常请求:
  http code 4xx/5xx
{
  "code": 4000001,
  "desc": ""
}

错误码列表

错误码描述
401鉴权失败
4000002节点未查找到
4000100未查到网卡信息

如接口返回错误码未列举,可在错误码总览中查找