Veritas NetBackup™ Virtual Appliance Documentation
- Getting to know the NetBackup Virtual Appliance
- NetBackup Virtual Appliance product description
- Preparing to deploy the appliance
- Deploying and configuring the appliance
- How to deploy and configure a NetBackup Virtual Appliance combined master and media server
- How to deploy and configure a NetBackup Virtual Appliance media server
- How to deploy and configure a NetBackup Virtual Appliance master server
- How to deploy and configure a NetBackup Virtual Appliance CloudCatalyst
- How to deploy and configure a NetBackup Virtual Appliance combined master and media server
- Post initial configuration procedures
- Appliance common tasks
- Storage management
- About NetBackup Virtual Appliance storage configuration
- About viewing storage space information using the Show command
- About OpenStorage plugin installation
- About NetBackup Virtual Appliance storage configuration
- Deduplication pool catalog backup and recovery
- Network connection management
- Managing users
- About user name and password specifications
- About authenticating LDAP users
- About authenticating Active Directory users
- About authenticating Kerberos-NIS users
- About user authorization on the NetBackup Virtual Appliance
- Creating NetBackup administrator user accounts
- Using the appliance
- About configuring Host parameters for your appliance on the NetBackup Virtual Appliance
- About Copilot functionality and Share management
- About NetBackup Virtual Appliance as a VMware backup host
- About running NetBackup commands from the appliance
- About mounting a remote NFS
- About Auto Image Replication from a NetBackup Virtual Appliance
- Monitoring the appliance
- About SNMP
- About Call Home
- Appliance security
- About Symantec Data Center Security on the NetBackup Virtual Appliance
- Setting the appliance login banner
- Upgrading the appliance
- About upgrading to NetBackup Virtual Appliance software version 3.2
- Requirements and best practices for upgrading NetBackup appliances
- Methods for downloading appliance software release updates
- NetBackup client upgrades with VxUpdate
- Appliance restore
- Decommissioning and Reconfiguring
- Troubleshooting
- About disaster recovery
- About NetBackup support utilities
- Appliance logging
- Commands overview
- Appendix A. Appliance commands
- Appendix B. Manage commands
- Appendix C. Monitor commands
- Appendix D. Network commands
- Appendix E. Reports commands
- Appendix F. Settings commands
- Appendix G. Support commands
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
, andInterfaceName
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