Available in VPC
Add an ACG to be applied to a network interface.
Syntax
The addNetworkInterfaceAccessControlGroup syntax is as follows:
./ncloud vserver addNetworkInterfaceAccessControlGroup \
--networkInterfaceNo <nic-no> \
--accessControlGroupNoList <acg-no-list> \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running addNetworkInterfaceAccessControlGroup.
Required options
The following options are required for addNetworkInterfaceAccessControlGroup.
| Options | Type | Required | Description |
|---|---|---|---|
--networkInterfaceNo |
String | Required | Network interface number |
--accessControlGroupNoList |
List | Required | ACG number list
|
Common options
For information about the options common to all vserver subcommands, see Server (VPC) options.
Examples
If the request to add an ACG to a network interface is successful, the network interface's configuration information and the list of applied ACGs are returned.
Command
The command example is as follows:
./ncloud vserver addNetworkInterfaceAccessControlGroup \
--networkInterfaceNo 56789012 \
--accessControlGroupNoList 67890124 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"addNetworkInterfaceAccessControlGroupResponse": {
"totalRows": 1,
"networkInterfaceList": [
{
"networkInterfaceNo": "56789012",
"networkInterfaceName": "test-nic-01",
"subnetNo": "23456789",
"deleteOnTermination": false,
"isDefault": false,
"deviceName": "eth1",
"networkInterfaceStatus": {
"code": "USED",
"codeName": "In use"
},
"instanceType": {
"code": "VSVR",
"codeName": "Server (VPC)"
},
"instanceNo": "34567890",
"ip": "192.0.2.10",
"macAddress": "F2:20:AF:00:00:01",
"enableFlowLog": false,
"accessControlGroupNoList": [
"67890123",
"67890124"
],
"networkInterfaceDescription": "Test network interface",
"secondaryIpList": []
}
],
"requestId": "f5678901-2345-6789-f012-567890123456",
"returnCode": "0",
"returnMessage": "success"
}
}