Reference Guide

Example
Display the current list of client network subnets:
CLI> networking subnets list
Output
.-------------.---------------.----------.-----------------.-----------------.
| Network Id | Netmask | VLAN Tag | PrivateIPs | PublicIPs |
|-------------|---------------|----------|----------------|-----------------|
| 172.22.69.0 | 255.255.255.0 | 0 | 172.22.69.42, | 172.22.69.40, |
| | | | 172.22.69.43 | 172.22.69.41 |
'-------------'---------------'----------'----------------'-----------------'
networking subnets edit
Description
Modify client network subnet settings.
Format
networking subnets edit <NetworkID> <Netmask> {options}
Arguments
Argument Description Format
<NetworkID> Current network ID of the subnet Existing network ID
<Netmask> Current netmask of the subnet Existing netmask
Options
Option Description Format
-NewNetmask <NewNetmask> New netmask of the subnet IP address in the format: 'x.x.x.x'
-VLANTag <VLANTag> VLAN ID of the subnet Whole positive number (1 to
4094)
-PrivateIPs <PrivateIPs> NAS controller IP addresses Comma-separated list of IP
addresses in the format: 'x.x.x.x'
-PublicIPs <PublicIPs> Client VIPs Comma-separated list of IP
addresses in the format: 'x.x.x.x'
Example
Edit a client subnet with the ID 192.168.0.0 to change the netmask from 255.255.128.0 to 255.255.255.0:
CLI> networking subnets edit 192.168.0.0 255.255.128.0 -NewNetmask 255.255.255.0
72