Reference Guide

Options
Option Description Format
--CSV Displays the command output in
a commadelimited format with a
header
Append --CSV to the command
Example
Display the current static routes:
CLI> networking static-routes list
Output
.------------------------.---------------------.------------.
| Destination Network ID | Destination Netmask | GatewayIP |
|------------------------|---------------------|------------|
| 10.1.100.0 | 255.255.255.0 | 172.22.69.7|
'------------------------'---------------------'------------'
networking static-routes edit
Description
Modify the gateway for a destination subnet.
Format
networking static-routes edit <DestinationNetworkID> <DestinationNetMask>
<GatewayIP>
Arguments
Argument Description Format
<DestinationNetworkID> Network ID of the destination
subnet
Existing network ID
<DestinationNetMask> Netmask of the destination
subnet
Existing network netmask
<GatewayIP> Gateway for the destination
subnet
IP address in the format: 'x.x.x.x'
Example
Modify a static route to a subnet with the ID 10.1.100.0 and netmask 255.255.255.0 to use the gateway
172.22.69.8:
CLI> networking static-routes edit 10.1.100.0 255.255.255.0 172.22.69.8
75