Veritas Access Appliance Command Reference Guide

Last Published:
Product(s): Appliances (7.4.3)
Platform: Veritas 3340,Access Appliance OS
  1. Overview
    1.  
      Scope of the Veritas Access Command Reference Guide
    2.  
      Where to find the documentation
    3.  
      Using the Access Appliance shell menu
  2. Appendix A. Main > Appliance
    1.  
      Appliance > Status
  3. Appendix B. Main > Manage > Cluster
    1.  
      Cluster > Configure
  4. Appendix C. Main > Manage > Software
    1.  
      Manage > Software > Cancel
    2.  
      Manage > Software > Delete
    3.  
      Manage > Software > Download
    4.  
      Manage > Software > DownloadProgress
    5.  
      Manage > Software > Install
    6.  
      Manage > Software > List
    7.  
      Manage > Software > Readme
    8.  
      Manage > Software > Rollback
    9.  
      Manage > Software > Share
    10.  
      Manage > Software > UpgradeStatus
  5. Appendix D. Main > Manage > Storage
    1.  
      Manage > Storage > Show
    2.  
      Manage > Storage > Scan
    3.  
      Manage > Storage > Erase
  6. Appendix E. Main > Monitor
    1.  
      Monitor > Beacon
    2.  
      Monitor > MemoryStatus
    3.  
      Monitor > NetworkStatus
    4.  
      Monitor > SDCS
    5.  
      Monitor > Top
    6.  
      Monitor > Uptime
    7.  
      Monitor > Who
    8.  
      Monitor > Hardware
  7. Appendix F. Main > Network
    1.  
      Network > Configure
    2.  
      Network > Date
    3.  
      Network > DNS
    4.  
      Network > Gateway
    5.  
      Network > Hostname
    6.  
      Network > Hosts
    7.  
      Network > IPv4
    8.  
      Network > IPv6
    9.  
      Network > NetStat
    10.  
      Network > NTPServer
    11.  
      Network > Ping
    12.  
      Network > Proxy
    13.  
      Network > SetProperty
    14.  
      Network > Show
    15.  
      Network > TimeZone
    16.  
      Network > TraceRoute
    17.  
      Network > Unconfigure
  8. Appendix G. Main > Settings
    1.  
      Settings > Password
    2.  
      Settings > Alerts > CallHome
    3.  
      Settings > Alerts > Email
    4.  
      Settings > Alerts > Hardware
    5.  
      Settings > Alerts > SNMP
    6.  
      Settings > LogForwarding
    7.  
      Security > Certificates > DeviceCertificate > Export
    8.  
      Security > Certificates > DeviceCertificate > Import
  9. Appendix H. Main > Support
    1.  
      Support > Cleanup > ResetDIMMErrors
    2.  
      Support > Collect
    3.  
      Support > DataCollect
    4.  
      Support > FactoryReset
    5.  
      Support > InfraServices
    6.  
      Support > IPMI
    7.  
      Support > LogBrowser
    8.  
      Support > Logs
    9.  
      Support > Maintenance
    10.  
      Support > RAID
    11.  
      Support > Reboot
    12.  
      Support > Services
    13.  
      Support > Shutdown
    14.  
      Support > Storage Reset
    15.  
      Support > Test

Name

Main > Network > Gateway — Add or delete routing information.

SYNOPSIS

Gateway Add GatewayIPAddress [TargetNetworkIPAddress] [Netmask] [InterfaceName]

Gateway Delete TargetNetworkIPAddress [Netmask]

Gateway Show IPVersion

DESCRIPTION

Use this command to add or delete a route from the kernel routing table. With this command you can also view the kernel routing table. Refer to Linux route man page for more advanced use cases.

With this command you can define the IPv4 or IPv6 address that you plan to add or delete as well as display the current gateway information. If multiple networks are added to the appliance configuration, you can use the Gateway Add command to add the gateway to all of the destination networks.

Remember that you should not use both IPv4 and IPv6 address in the same command. For example, you cannot use Gateway Add 9ffe::3 255.255.255.0 eth1. You should use Gateway Add 6ffe::3 6ffe:: 64 eth1.

OPTIONS

Gateway Add GatewayIPAddress [TargetNetworkIPAddress] [Netmask] [InterfaceName]

Add a route to a kernel routing table.

Where the GatewayIPAddress variable is the new IPv4 or IPv6 gateway address. The TargetNetworkIPAddress is the target network IPv4 or IPv6 address. The Netmask variable is the target network netmask, and InterfaceName is the interface name. The TargetNetworkIPAddress, Netmask, and InterfaceName are optional when you set up the default gateway. After the default gateway has been added, you must use these fields to add any additional gateways.

Gateway Delete TargetNetworkIPAddress [Netmask]

Delete the route from the kernel routing table.

Where TargetNetworkIPAddress is the target network address. The Netmask variable is the target network netmask.

Gateway Show [IPVersion]

Display the gateway and the route information. Here, [IPVersion] parameter is an optional parameter. It defines the IP protocols - IPv4 and IPv6. If you do not enter a value for the [IPVersion] parameter, the information is displayed for IPv4.

EXAMPLES

Use the following example to set the default gateway.

Gateway Add 10.180.1.1

Use the following example to add a route to the destination network 192.168.2.0.

Gateway Add 191.168.2.1 192.168.2.0 255.255.255.0

Gateway Add 6ffe::3 6ffe:: 64 eth1

Use the following example to delete the default gateway.

Gateway Del default

Use the following example to delete a route to the destination network, 10.180.0.0 or 6ffe:: 64.

Gateway Delete 10.180.0.0

Gateway Delete 6ffe:: 64