批量添加
描述
object hostinterface.massadd(object parameters)
该方法允许同时向多个主机添加主机接口。
该方法适用于管理员和超级管理员用户类型。可以在用户角色设置中撤销调用该方法的权限。有关详细信息,参阅用户角色。
参数
(object)
包含要在给定主机上创建的主机接口的参数
该方法接受以下参数:
参数 | 类型 | 描述 |
---|---|---|
hosts (必选) | 对象/数组 | 更新的主机。 主机必须已定义 hostid 属性。 |
interfaces (必选) | 对象/数组 | 主机上创建主机接口。 |
返回值
(object)
在iterfaceids
属性中返回包含已创建主机接口ID的对象。
示例
创建接口
在两个主机上创建接口
请求:
{
"jsonrpc": "2.0",
"method": "hostinterface.massadd",
"params": {
"hosts": [
{
"hostid": "30050"
},
{
"hostid": "30052"
}
],
"interfaces": {
"dns": "",
"ip": "127.0.0.1",
"main": 0,
"port": "10050",
"type": 1,
"useip": 1
}
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
响应:
{
"jsonrpc": "2.0",
"result": {
"interfaceids": [
"30069",
"30070"
]
},
"id": 1
}
参考
来源
CHostInterface::massAdd() in ui/include/classes/api/services/CHostInterface.php.