When modifying GIP address set resources, only elements that have been defined can be modified.
The following elements can be modified:
Name of the address set resource
Label
Comment
Address to exclude
If defining multiple elements, they will be modified at the same time.
Define all new information of the settings after modification for addresses to exclude.
The XXX.XXX.XXX.XXX format (period (".") -decimal notation) is used for all IP addresses.
Example
Modifying network resource names
<AddressSet name="Modified name of the address set resource" /> |
Modifying labels
<Addrset label="Modified label" /> |
Modifying comments
<AddressSet>
<Comment>Modified Comments</Comment>
</AddressSet> |
Adding an exclusion range of IP addresses (when deleting the IP address range of 192.168.1.1 - 192.168.1.10 from the exclusion ranges of 192.168.1.100 - 192.168.1.200 and 192.168.1.1 - 192.168.1.10)
<AddressSet> <Exclude> 192.168.1.1,..., 192.168.1.10, 192.168.1.100, 192.168.1.101,..., 192.168.1.200 </Exclude> </AddressSet> |
Changing an exclusion range of IP addresses (when deleting the IP address range of 192.168.1.1 - 192.168.1.10 from the existing exclusion ranges of 192.168.1.100 - 192.168.1.200 and 192.168.1.1 - 192.168.1.10)
<AddressSet> <Exclude> 192.168.1.100, 192.168.1.101,..., 192.168.1.200 </Exclude> </AddressSet> |
Specify all IP address ranges to be excluded after modification for the Exclude element.
Initializing the value of exclusion range of IP addresses
<AddressSet> <Exclude /> </AddressSet> |
Do not specify any value in <Exclude>.
When specifying all items that can be modified
<AddressSet name="Modified name of the address set resource" label="Modified label"> <Comment>Modified Comments</Comment> <Exclude> 192.168.1.1,..., 192.168.1.10, 192.168.1.100, 192.168.1.101,..., 192.168.1.200 </Exclude> </AddressSet> |
Element Name | Description | Remarks (Possible Values, Examples) |
---|---|---|
Name of the address set resource (AddressSet name) | Name of the address set resource | Specify a character string beginning with an alphanumeric character and containing up to 32 alphanumeric characters, underscores ("_"), and hyphens ("-"). For the name of the address set resource, specify a name which is different from the network resource name (address set name) and other address set resource names. |
Label (AddressSet label) | Label of the address set resource | Specify a character string of up to 32 alphanumeric characters or symbols. |
Comment (Comment) | Comment on the address set resource information | Specify a character string of up to 256 alphanumeric characters or symbols. |
Address to exclude (Exclude) | Excluded-addresses of the address set resource | Specify one or more unused addresses separated by commas (","). |
Note
When only specifying the address resource name or label, do not specify the end tag for the <AddressSet> element.
Example
Do not specify an end tag as shown below.
<AddressSet name="Modified name of the address set resource"> |