You can assign an IP address to your Aruba controller through the web interface or the command-line interface (CLI).
Assigning an IP Address through the Web Interface
- Log in to the controller's web interface: Open a web browser and navigate to the controller's IP address.
- Go to the configuration section: Look for a section labeled "Configuration," "Network," or "IP Settings."
- Find the IP address configuration: Locate the settings for the controller's IP address, subnet mask, and default gateway.
- Enter the desired IP address information: Fill in the fields with the IP address, subnet mask, and default gateway you want to use.
- Save the changes: Click "Apply," "Save," or "Submit" to save your configuration.
Assigning an IP Address through the CLI
- Connect to the controller's CLI: Use an SSH client to connect to the controller's IP address.
- Enter the configuration mode: Use the command
configure terminal
. - Configure the IP address: Use the command
ip address <IP address> <subnet mask>
. - Set the default gateway: Use the command
ip route 0.0.0.0 0.0.0.0 <default gateway>
. - Save the configuration: Use the command
copy running-config startup-config
.
Example:
To assign the IP address 192.168.1.10
with a subnet mask of 255.255.255.0
and a default gateway of 192.168.1.1
using the CLI, you would use the following commands:
configure terminal
ip address 192.168.1.10 255.255.255.0
ip route 0.0.0.0 0.0.0.0 192.168.1.1
copy running-config startup-config
Note: The specific commands and options may vary depending on the controller model and software version. Refer to the Aruba documentation for detailed instructions.