Command Line Interface (CLI)
This section describes the AP’s Command Line (CLI) Interface. CLI commands can be used to initialize, configure, and manage the Access Point.
- CLI commands may be entered in real time through a keyboard or submitted with CLI scripts.
- The CLI is available through both the Serial Port interface and over the Ethernet interface using Telnet.
 |
All CLI commands and parameters are case-sensitive.
|
General Notes
Prerequisite Skills and Knowledge
To use this document effectively, you should have a working knowledge of Local Area Networking (LAN) concepts, network access infrastructures, and client-server relationships. In addition, you should be familiar with software setup procedures for typical network operating systems and servers.
Notation Conventions
- Computer prompts are shown as constant width type. For example:
[Device-Name]>
- Information that you input as shown is displayed in bold constant width type. For example:
[Device name]> set ipaddr 10.0.0.12
- The names of keyboard keys, software buttons, and field names are displayed in bold type. For example: Click the Configure button.
- Screen names are displayed in bold italics. For example, the System Status screen.
Important Terminology
- Configuration Files - Database files containing the current Access Point configuration. Configuration items include the IP Address and other network-specific values. Config files may be downloaded to the Access Point or uploaded for backup or troubleshooting.
- Download vs. Upload - Downloads transfer files to the Access Point. Uploads transfer files from the Access Point. The TFTP server performs file transfers in both directions.
- Group - A logical collection of network parameter information. For example, the System Group is composed of several related parameters. Groups can also contain Tables. All items for a given Group can be displayed with a show <Group> CLI Command.
- Image File - The Access Point software executed from RAM. To update an Access Point you typically download a new Image File. This file is often referred to as the “AP Image”.
- Parameter - A fundamental network value that can be displayed and may be changeable. For example, the Access Point must have a unique IP Address and the Wireless interface must be assigned an SSID. Change parameters with the CLI set Command, and view them with the CLI show Command.
- Table - Tables hold parameters for several related items. For example, you can add several potential managers to the SNMP Table. All items for a given Table can be displayed with a show <Table> CLI Command.
- TFTP - Refers to the TFTP Server, used for file transfers.
Navigation and Special Keys
This CLI supports the following navigation and special key functions to move the cursor along the prompt line.
Key Combination
|
Operation
|
Delete or Backspace
|
Delete previous character
|
Ctrl-A
|
Move cursor to beginning of line
|
Ctrl-E
|
Move cursor to end of line
|
Ctrl-F
|
Move cursor forward one character
|
Ctrl-B
|
Move cursor back one character
|
Ctrl-D
|
Delete the character the cursor is on
|
Ctrl-U
|
Delete all text to left of cursor
|
Ctrl-P
|
Go to the previous line in the history buffer
|
Ctrl-N
|
Go to the next line in the history buffer
|
Tab
|
Complete the command line
|
?
|
List available commands
|
CLI Error Messages
The following table describes the error messages associated with improper inputs or expected CLI behavior.
Error Message
|
Description
|
Syntax Error
|
Invalid syntax entered at the command prompt.
|
Invalid Command
|
A non-existent command has been entered at the command prompt.
|
Invalid Parameter Name
|
An invalid parameter name has been entered at the command prompt.
|
Invalid Parameter Value
|
An invalid parameter value has been entered at the command prompt.
|
Invalid Table Index
|
An invalid table index has been entered at the command prompt.
|
Invalid Table Parameter
|
An invalid table parameter has been entered at the command prompt.
|
Invalid Table Parameter Value
|
An invalid table parameter value has been entered at the command prompt.
|
Read Only Parameter
|
User is attempting to configure a read-only parameter.
|
Incorrect Password
|
An incorrect password has been entered in the CLI login prompt.
|
Download Unsuccessful
|
The download operation has failed due to incorrect TFTP server IP Address or file name.
|
Upload Unsuccessful
|
The upload operation has failed due to incorrect TFTP server IP Address or file name.
|
Command Line Interface (CLI) Variations
Administrators use the CLI to control Access Point operation and monitor network statistics. The AP supports two types of CLI: the Bootloader CLI and the normal CLI. The Bootloader CLI provides a limited command set, and is used when the current AP Image is bad or missing. The Bootloader CLI allows you to assign an IP Address and download a new image. Once the image is downloaded and running, the Access Point uses the normal CLI. This guide covers the normal CLI unless otherwise specified.
Bootloader CLI
The Bootloader CLI is a minimal subset of the normal CLI used to perform initial configuration of the AP. This interface is only accessible via the serial interface if the AP does not contain a software image or a download image command over TFTP has failed.
The Bootloader CLI provides you with the ability to configure the initial setup parameters as well as download a software image to the device.
The following functions are supported by the Bootloader CLI:
- configuration of initial device parameters using the set command
- show command to view the device’s configuration parameters
- help command to provide additional information on all commands supported by the Bootloader CLI
- reboot command to reboot the device
The parameters supported by the Bootloader CLI (for viewing and modifying) are:
- System Name
- IP Address Assignment Type
- IP Address
- IP Mask
- Gateway IP Address
- TFTP Server IP Address
- Image File Name (including the file extension)
The following lists display the results of using the help command in the Bootloader CLI:
Results of “help” bootloader CLI command
The following lists display the results of using the show command in the Bootloader CLI:
Results of “show” bootloader CLI command
CLI Command Types
This guide divides CLI Commands into two categories: Operational and Parameter Controls.
Operational CLI Commands
These commands affect Access Point behavior, such as downloading, rebooting, and so on. After entering commands (and parameters, if any) press the Enter key to execute the Command Line.
Operational commands include:
- ?: Typing a question mark lists CLI Commands or parameters, depending on usage (you do not need to type Enter after typing this command)
- done, exit, quit: Terminates the CLI session
- download: Uses TFTP server to download “image”, “config”, or “bootloader upgrade” files to Access Point
- help: Displays general CLI help information or command help information, such as command usage and syntax
- history: Remembers commands to help avoid re-entering complex statements
- passwd: Sets the Access Point’s CLI password
- reboot: Reboots the Access Point in the specified time
- search: Lists the parameters in a specified Table
- upload: Uses TFTP server to upload “config” files from Access Point to TFTP default directory or specified path
? (List Commands)
This command can be used in a number of ways to display available commands and parameters.
The following table lists each operation and provides a basic example. Following the table are detailed examples and display results for each operation.
Operation
|
Basic Example
|
Display the Command List (Example 1)
|
[Device-Name]> ?
|
Display commands that start with specified letters (Example 2)
|
[Device-Name]> s?
|
Display parameters for set and show Commands (Examples 3a and 3b)
|
[Device-Name]> set ?
[Device-Name]> show ipa?
|
Prompt to enter successive parameters for Commands (Example 4)
|
[Device-Name]> download ?
|
Example 1. Display Command list
To display the Command List, enter ?.
[Device-Name]> ?
Result of “?” CLI command
Example 2. Display specific Commands
To show all commands that start with specified letters, enter one or more letters, then ? with no space between letters and ?.
[Device-Name]> s?
Result of “s?” CLI command
Example 3. Display parameters for set and show
Example 3a allows you to see every possible parameter for the set (or show) commands. Notice from example 3a that the list is very long. Example 3b shows how to display a subset of the parameters based on initial parameter letters.
Example 3a. Display every parameter that can be changed
[Device-Name]> set ?
Result of “set ?” CLI command
Example 3b. Display parameters based on letter sequence
This example shows entries for parameters that start with the letter “i”. The more letters you enter, the fewer the results returned. Notice that there is no space between the letters and the question mark.
[Device-Name]> show ipa?
Result of “show ipa?” CLI command
[Device-Name]> show iparp?
Result of “show iparp?” CLI command
Example 4. Display Prompts for Successive Parameters
Enter the command, a space, and then ?. Then, when the parameter prompt appears, enter the parameter value. Result: The parameter is changed and a new CLI line is echoed with the new value (in the first part of the following example, the value is the IP Address of the TFTP server).
After entering one parameter, you may add another ? to the new CLI line to see the next parameter prompt, and so on until you have entered all of the required parameters. The following example shows how this is used for the download Command. The last part of the example shows the completed download Command ready for execution.
[Device-Name]> download ? <TFTP IP Address>
[Device-Name]> download 192.168.0.101 ? <File Name>
[Device-Name]> download 192.168.0.101 apimage ? <file type (config/img/bootloader)>
[Device-Name]> download 192.168.0.101 apimage img <CR>
done, exit, quit
Each of the following commands ends a CLI session:
[Device-Name]> done
[Device-Name]> exit
[Device-Name]> quit
download
Downloads the specified file from a TFTP server to the Access Point. Executing download in combination with the asterisks character (“*”) will make use of the previously set TFTP parameters. Executing download without parameters will display command help and usage information.
- Syntax to download a file:
Device-Name]> download <tftp server address> <path and filename> <file type>
Example:
[Device-Name]> download 192.168.1.100 APImage2 img
- Syntax to display help and usage information:
[Device-Name]> download
- Syntax to execute the download Command using previously set (stored) TFTP Parameters:
[Device-Name]> download *
help
Displays instructions on using control-key sequences for navigating a Command Line and displays command information and examples.
- Using help as the only argument:
[Device-Name]> help
Results of “help” CLI command
- Complete command description and command usage can be provided by:
[Device-Name]> help <command name>
[Device-Name]> <command name> help
history
Shows content of Command History Buffer. The Command History Buffer stores command statements entered in the current session. To avoid re-entering long command statements, use the keyboard “up arrow” (Ctrl-P) and “down arrow” (Ctrl-N) keys to recall previous statements from the Command History Buffer. When the desired statement reappears, press the Enter key to execute, or you may edit the statement before executing it.
[Device-Name]> history
passwd
Changes the CLI Password.
[Device-Name]> passwd oldpassword newpassword newpassword
reboot
Reboots Access Point after specified number of seconds. Specify a value of 0 (zero) for immediate reboot.
[Device-Name]> reboot 0
[Device-Name]> reboot 30
search
Lists the parameters supported by the specified table. This list corresponds to the table information displayed in the HTTP interface. In this example, the CLI returns the list of parameters that make up an entry in the IP Access Table.
[Device-Name]> search mgmtipaccesstbl
Results of “search mgmtipaccesstbl” CLI command
upload
Uploads a text-based configuration file from the AP to the TFTP Server. Executing upload with the asterisk character (“*”) will make use of the previously set/stored TFTP parameters. Executing upload without parameters will display command help and usage information.
- Syntax to upload a file:
[Device-Name]> upload <tftp server address> <path and filename> <filetype>
Example:
[Device-Name]> upload 192.168.1.100 APconfig.sys config
- Syntax to display help and usage information:
[Device-Name]> help upload
- Syntax to execute the upload command using previously set (stored) TFTP Parameters:
[Device-Name]> upload *
Parameter Control Commands
The following sections cover the two Parameter Control Commands (show and set) and include several tables showing parameter properties. These commands allow you to view (show) all parameters and statistics and to change (set) parameters.
- show: To see any Parameter or Statistic value, you can specify a single parameter, a Group, or a Table.
- set: Use this CLI Command to change parameter values. You can use a single CLI statement to modify Tables, or you can modify each parameter separately.
“show” CLI Command
Displays the value of the specified parameter, or displays all parameter values of a specified group (parameter table). Groups contain Parameters and Tables. Tables contain parameters for a series of similar entities.
To see a definition and syntax example, type only show and then press the Enter key. To see a list of available parameters, enter a question mark (?) after show (example: show ?).
- Syntax:
[Device-Name]> show <parameter>
[Device-Name]> show <group>
[Device-Name]> show <table>
Examples:
[Device-Name]> show ipaddr
[Device-Name]> show network
[Device-Name]> show mgmtipaccesstbl
“set” CLI Command
Sets (modifies) the value of the specified parameter. To see a definition and syntax example, type only set and then press the Enter key. To see a list of available parameters, enter a space, then a question mark (?) after set (example: set?).
Syntax:
[Device-Name]> set <parameter> <value>
[Device-Name]> set <table> <index> <argument 1> <value 1> ... <argument N> <value N>
Example:
[Device-Name]> set sysloc “Main Lobby”
[Device-Name]> set mgmtipaccesstbl 0 ipaddr 10.0.0.10 ipmask 255.255.0.0
Configuring Objects that Require Reboot
Certain objects supported by the Access Point require a device reboot in order for the changes to take effect. In order to inform the end-user of this behavior, the CLI provides informational messages when the user has configured an object that requires a reboot. The following messages are displayed as a result of the configuring such object or objects.
Example 1: Configuring objects that require the device to be rebooted
The following message is displayed every time the user has configured an object that requires the device to be rebooted.
[Device-Name]> set ipaddr 135.114.73.10 The following elements require reboot
ipaddr
Example 2: Executing the “exit”, “quit”, or “done” commands when an object that requires reboot has been configured
In addition to the above informational message, the CLI also provides a message as a result of the exit, quit, or done command if changes have been made to objects that require reboot. If you make changes to objects that require reboot and execute the exit command the following message is displayed:
[Device-Name]> exit<CR> OR quit<CR> OR done<CR>
Modifications have been made to parameters that require the device to be rebooted. These changes will only take effect after the next reboot.
“set” and “show” Command Examples
In general, you will use the CLI show Command to view current parameter values and use the CLI set Command to change parameter values. As shown in the following examples, parameters may be set individually or all parameters for a given table can be set with a single statement.
Example 1 - Set the Access Point IP Address Parameter
Syntax:
[Device-Name]> set <parameter name> <parameter value>
Example:
[Device-Name]> set ipaddr 10.0.0.12
Result: IP Address will be changed when you reboot the Access Point. The CLI reminds you when rebooting is required for a change to take effect. To reboot immediately, enter reboot 0 (zero) at the CLI prompt.
Example 2 - Create a table entry or row
Use 0 (zero) as the index to a table when creating an entry. When creating a table row, only the mandatory table elements are required (comment is usually an optional table element). For optional table elements, the default value is generally applied if you do not specify a value.
Syntax:
[Device-Name]> set <table name> <table index> <element 1> <value 1> … <element n> <value n>
Example:
[Device-Name]> set mgmtipaccesstbl 0 ipaddr 10.0.0.10 ipmask 255.255.0.0
Result: A new table entry is created for IP address 10.0.0.10 with a 255.255.0.0 subnet mask.
Example 3 - Modify a table entry or row
Use the index to be modified and the table elements you would like to modify. For example, suppose the IP Access Table has one entry and you wanted to modify the IP address:
[Device-Name]> set mgmtipaccesstbl 1 ipaddr 10.0.0.11
You can also modify several elements in the table entry. Enter the index number and specific table elements you would like to modify. (Hint: Use the search Command to see the elements that belong to the table.)
[Device-Name]> set mgmtipaccesstbl 1 ipaddr 10.0.0.12 ipmask 255.255.255.248 cmt “First Row”
Example 4 - Enable, Disable, or Delete a table entry or row
The following example illustrates how to manage the second entry in a table.
Syntax:
[Device-Name]> set <Table> index status <enable, disable, delete>
[Device-Name]> set <Table> index status <1=enable, 2=disable, 3=delete>
Example:
[Device-Name]> set mgmtipaccesstbl 2 status enable
[Device-Name]> set mgmtipaccesstbl 2 status disable
[Device-Name]> set mgmtipaccesstbl 2 status delete
[Device-Name]> set mgmtipaccesstbl 2 status 2
 |
You may need to enable a disabled table entry before you can change the entry’s elements.
|
Example 5 - Show the Group Parameters
This example illustrates how to view all elements of a group or table.
Syntax:
[Device-Name]> show <group name>
Example:
[Device-Name]> show network
Result: The CLI displays network group parameters. Note show network and show ip return the same data.
Results of “show network” and “show ip” CLI Commands
Example 6 - Show Individual and Table Parameters
1. View a single parameter.
Syntax:
[Device-Name]> show <parameter name>
Example:
[Device-Name]> show ipaddr
Result: Displays the Access Point IP address.
Result of “show ipaddr” CLI Command
2. View all parameters in a table.
Syntax:
[Device-Name]> show <table name> Example:[Device-Name]> show mgmtipaccesstbl
Result: Displays the IP Access Table and its entries.
Using Tables & User Strings
Working with Tables
Each table element (or parameter) must be specified, as in the example below.
[Device-Name]> set mgmtipaccesstbl 0 ipaddr 10.0.0.10 ipmask 255.255.0.0
Below are the rules for creating, modifying, enabling/disabling, and deleting table entries.
- Creation
- The table name is required.
- The table index is required – for table entry/instance creation the index is always zero (0).
- The order in which the table arguments or objects are entered in not important.
- Parameters that are not required can be omitted, in which case they will be assigned the default value.
- Modification
- The table name is required.
- The table index is required – to modify the table, “index” must be the index of the entry to be modified.
- Only the table objects that are to be modified need to be specified. Not all the table objects are required.
- If multiple table objects are to be modified the order in which they are entered is not important.
- If the entire table entry is to be modified, all the table objects have to be specified.
- Enabling/Disabling
- The table name is required.
- The table index is required – for table enabling/disabling the index should be the index of the entry to be enabled/disabled.
- The entry’s new state (either “enable” or “disable”) is required.
- Deletion
- The table name is required.
- The table index is required – for table deletion the index should be the index of the entry to be deleted.
- The word “delete” is required.
Using Strings
Since there are several string objects supported by the AP, a string delimiter is required for the strings to be interpreted correctly by the command line parser. For this CLI implementation, the single quote or double quote character can be used at the beginning and at the end of the string.
For example:
[Device-Name]> set sysname Lobby - Does not need quote marks
[Device-Name]> set sysname “Front Lobby” - Requires quote marks.
The scenarios supported by this CLI are:
“My Desk in the office”
|
Double Quotes
|
‘My Desk in the office’
|
Single Quotes
|
“My ‘Desk’ in the office”
|
Single Quotes within Double Quotes
|
‘My “Desk” in the office’
|
Double Quotes within Single Quotes
|
“Daniel’s Desk in the office”
|
One Single Quote within Double Quotes
|
‘Daniel”s Desk in the office’
|
One Double Quote within Single Quotes
|
The string delimiter does not have to be used for every string object. The single quote or double quote only has to be used for string objects that contain blank space characters. If the string object being used does not contain blank spaces, then the string delimiters, single or double quotes, mentioned in this section are not required.
Configuring the AP using CLI commands
Log into the AP using HyperTerminal
- Open your terminal emulation program (like HyperTerminal) and set the following connection properties:
- Com Port: <COM1, COM2, etc., depending on your computer>
- Baud rate: 9600
- Data Bits: 8
- Stop bits: 1
- Flow Control: None
- Parity: None
- Under File -> Properties -> Settings -> ASCII Setup, enable the Send line ends with line feeds option.
Result: HyperTerminal sends a line return at the end of each line of code.
- Enter the CLI password (default is public).
 |
Avaya recommends changing your default passwords immediately. To perform this operation using CLI
commands, refer to Change Passwords.
|
Log into the AP using Telnet
The CLI commands can be used to access, configure, and manage the AP using Telnet. Follow these steps:
- Confirm that your computer’s IP address is in the same IP subnet as the AP.
 |
If you have not previously configured the Access Point’s IP address and do not have a DHCP server on the
network, the Access Point will default to an IP address of 10.0.0.1.
|
- Go to the DOS command prompt on your computer.
- Type telnet <IP Address of the unit>.
- Enter the CLI password (default is public).
 |
Avaya recommends changing your default passwords immediately. To perform this operation using CLI
commands, refer to Change Passwords.
|
Set Basic Configuration Parameters using CLI Commands
There are a few basic configuration parameters that you may want to setup right away when you receive the AP. For example:
Set System Name, Location and Contact Information
[Device-Name]> set sysname <system name> sysloc <Unit Location>
[Device-Name]> set sysctname <Contact Name (person responsible for system)>
[Device-Name]> set sysctphone <Contact Phone Number> sysctemail <Contact E-mail address>
[Device-Name]> show system
Result of “show system” CLI Command
Set Static IP Address for the AP
 |
The IP Subnet Mask of the AP must match your network’s Subnet Mask.
|
[Device-Name]> set ipaddrtype static
[Device-Name]> set ipaddr <fixed IP address of unit>
[Device-Name]> set ipsubmask <IP Mask>
[Device-Name]> set ipgw <gateway IP address>
[Device-Name]> show network
Change Passwords
[Device-Name]> passwd <Old Password> <New Password> <Confirm Password> (CLI password)
[Device-Name]> set httppasswd <New Password> (HTTP interface password)
[Device-Name]> set snmprpasswd <New Password> (SNMP read password)
[Device-Name]> set snmprwpasswd <New Password> (SNMP read/write)
[Device-Name]> set snmpv3authpasswd <New Password> (SNMPv3 authentication password)
[Device-Name]> set snmpv3privpasswd <New Password> (SNMPv3 privacy password)
[Device-Name]> reboot 0
|
Avaya strongly urges you to change the default passwords to restrict access to your network devices to
authorized personnel. If you lose or forget your password settings, you can always perform the Reset to
Factory Default Procedure.
|
Set Network Names for the Wireless Interface
[Device-Name]> set wif <index 3 (Slot A) or 4 (Slot B)> netname <Network Name (SSID) for wireless interface>
[Device-Name]> show wif
Results of “show wif” CLI command for an AP
Enable and Configure TX Power Control for the Wireless Interface(s)
The TX Power Control feature lets the user configure the transmit power level of the card in the AP at one of four levels:
Perform the following commands to enable TX Power Control and set the transmit power level:
[Device-Name]> set txpowercontrol enable
[Device-Name]> set wif <interface number> currenttxpowerlevel <value> Allowed values are: 1 (100%), 2 (50%), 3 (25%), 4 (12.5%)
Set WEP Encryption for the Wireless Interface
|
Wireless clients must be configured with the same encryption key to be able to communicate with the AP. The
AP can only support one Key Length (so each of the configured keys must have the same length). The
available key sizes vary based on the Access Point’s model. See Security Encryption Key Length Table for
more information.
|
You can set up to four encryption keys. This example describes setting encryption Key 1 on the wireless card in Slot A (if applicable; a Single-radio AP uses index 3; a Dual-radio AP uses index 3 for Slot A and index 4 for Slot B).
[Device-Name]> set wifsec 3 encryptstatus enable encryptkey1 <WEP key (number of characters vary depending on AP model)> encryptkeytx key1
[Device-Name]> show wifsec
Result of “show wifsec” CLI Command
Download an AP Configuration File from your TFTP Server
Begin by starting your TFTP program. It must be running and configured to transmit and receive.
[Device-Name]> set tftpfilename <file name> tftpfiletype config tftpipaddr <IP address of your TFTP server>
[Device-Name]> show tftp (to ensure the filename, file type, and the IP address are correct)
[Device-Name]> download *
[Device-Name]> reboot 0
After following the complete process (above) once, you can download a file of the same name (so long as all the other parameters are the same), with the following command:
[Device-Name]> download *
Backup your AP Configuration File
Begin by starting your TFTP program. It must be running and configured to transmit and receive.
[Device-Name]> upload <TFTP Server IP address> <tftpfilename (such as “config.sys”)> config
[Device-Name]> show tftp (to ensure the filename, file type, and the IP address are correct)
After setting the TFTP parameters, you can backup your current file (so long as all the other parameters are the same), with the following command:
[Device-Name]> upload *
Set up Auto Configuration
The Auto Configuration feature which allows an AP to be automatically configured by downloading a specific configuration file from a TFTP server during the boot up process.
Perform the following commands to enable and set up automatic configuration:
 |
The configuration filename and TFTP server IP address are configured only when the AP is configured for
Static IP. If the AP is configured for Dynamic IP these parameters are not used and obtained from DHCP.
The default filename is “config”. The default TFTP IP address is “10.0.0.2” for AP-3.
|
[Device-Name]> set autoconfigstatus <enable/disable>
[Device-Name]> set autoconfigfilename <filename>
Enter the filename of the configuration file that is used if the AP is configured for Static IP.
[Device-Name]> set autoconfigTFTPaddr <IP address> Enter the TFTP server address that is used if the AP is configured for Static IP.
Other Network Settings
There are other configuration settings that you may want to set for the AP. Some of them are listed below.
Configure the AP as a DHCP Server
 |
You must have at least one entry in the DHCP Server IP Address Pool Table before you can set the DHCP
Server Status to Enable.
|
[Device-Name]> set dhcpstatus disable
[Device-Name]> set dhcpippooltbl 0 startipaddr <start ip address> endipaddr <end ip address>
[Device-Name]> set dhcpgw <gateway ip address>
[Device-Name]> set dhcppridnsipaddr <primary dns ip address>
[Device-Name]> set dhcpsecdnsipaddr <secondary dns ip address>
[Device-Name]> set dhcpstatus enable
[Device-Name]> reboot 0
|
Before enabling this feature, confirm that the IP address pools you have configured are valid addresses on the
network and do not overlap the addresses assigned by any other DHCP server on the network. Enabling this
feature with incorrect address pools will cause problems on your network.
|
Configure the DNS Client
[Device-Name]> set dnsstatus enable
[Device-Name]> set dnsprisvripaddr <IP address of primary DNS server>
[Device-Name]> set dnssecsvripaddr <IP address of secondary DNS server>
[Device-Name]> set dnsdomainname <default domain name>
[Device-Name]> show dns
Results of “show dns” CLI command
Maintain Client Connections using Link Integrity
[Device-Name]> show linkinttbl (this shows the current links) [Device-Name]> set linkinttbl <1-5 (depending on what table row you wish to address) > ipaddr <ip address of the host computer you want to check>
[Device-Name]> set linkintpollint <the interval between link integrity checks>
[Device-Name]> set linkintpollretx <number of times to retransmit before considering the link down>
[Device-Name]> set linkintstatus enable
[Device-Name]> show linkinttbl (confirm new settings) [Device-Name]> reboot 0
Change your Wireless Interface Settings
See Interfaces for information on the parameters listed below. Dual-radio APs use index 3 for Slot A and index 4 for Slot B.
Operational Mode
[Device-Name]> set wif <index> mode <see table>
mode
|
Operational Mode
|
1
|
dot11b-only
|
2
|
dot11g-only
|
3
|
dot11bg
|
4
|
dot11a-only
|
5
|
dot11g-wifi
|
Autochannel Select (ACS)
ACS is enabled by default. Reboot after disabling or enabling ACS.
[Device-Name]> set wif <index> autochannel <enable/disable>
[Device-Name]> reboot 0
Enable/Disable Closed System
[Device-Name]> set wif <index> closedsys <enable/disable>
Enable/Disable Interference Robustness (802.11b Only)
[Device-Name]> set wif <index> interrobust <enable/disable>
Enable/Disable Load Balancing (802.11b Only)
[Device-Name]> set wif <index> ldbalance <enable/disable>
Enable/Disable Medium Density Distribution (802.11b Only)
[Device-Name]> set wif <index> meddendistrib <enable/disable>
Set the Distance Between APs (802.11b Only)
[Device-Name]> set wif <index> distaps <large, medium, small, minicell, microcell>
[Device-Name]> reboot 0
 |
The distance between APs should not be approximated. It is calculated by means of a manual Site Survey, in
which an AP is set up and clients are tested throughout the area to determine signal strength and coverage,
and local limits such as physical interference are investigated. From these measurements the appropriate cell
size and density is determined, and the optimum distance between APs is calculated to suit your particular
business requirements.
|
Set the Multicast Rate (802.11b Only)
[Device-Name]> set wif <index> multrate <1,2,5.5,11 (Mbits/sec)>
 |
The Distance Between APs must be set before the Multicast Rate.
|
Set Ethernet Speed and Transmission Mode
[Device-Name]> set etherspeed <value (see below) >
[Device-Name]> reboot 0
Ethernet Speed and Transmission Mode
|
Value
|
10 Mbits/sec - half duplex
|
10halfduplex
|
10 Mbits/sec - full duplex
|
10fullduplex
|
10 Mbits/sec - auto duplex
|
10autoduplex
|
100 Mbits/sec - half duplex
|
100halfduplex
|
100 Mbits/sec - full duplex
|
100fullduplex
|
Auto Speed - half duplex
|
autohalfduplex
|
Auto Speed - auto duplex
|
autoautoduplex (default)
|
Set Interface Management Services
Edit Management IP Access Table
[Device-Name]> set mgmtipaccesstbl <index> ipaddr <IP address> ipmask <subnet mask>
Configure Management Ports
[Device-Name]> set snmpifbitmask <(see below) >
[Device-Name]> set httpifbitmask <(see below) >
[Device-Name]> set telifbitmask <(see below) >
Choose from the following values:
Interface bitmask
|
Description
|
0 or 2 = disable (all interfaces)
|
All management channels disabled
|
1 or 3 = Ethernet only
|
Ethernet only enabled
|
4 or 6 = Wireless A only
|
Wireless A only enabled
|
8 or 10 = Wireless B only
|
Wireless B only enabled
|
12 = Wireless A and Wireless B
|
Wireless A and Wireless B enabled
|
13 or 15 = all interfaces
|
All management channels enabled
|
Set Communication Ports
[Device-Name]> set httpport <HTTP port number (default is 80)>
[Device-Name]> set telport <Telnet port number (default is 23)>
Configure Secure Socket Layer (HTTPS)
Enabling SSL and configuring a passphrase allows encrypted Secure Socket Layer communications to the AP through the HTTPS interface.
[Device-Name]>set sslstatus <enable/disable>
The user must change the SSL passphrase when uploading a new certificate/private key pair, which will have a corresponding passphrase.
[Device-Name]>set sslpassphrase <SSL certificate passphrase>
[Device-Name]>show http To view all HTTP configuration information including SSL.
HTTP Group Parameters =====================
httpifbitmask : 15 httppasswd : ******** httpport : 80 httphelplink : file:///C:/Program Files/Avaya Wireless/AP2000/HTML/home.htm httpsetupwiz : disable sslstatus : enable sslpassphrase : ********
Set Telnet Session Timeouts
[Device-Name]> set tellogintout <time in seconds between 1 and 300 (default is 30) >
[Device-Name]> set telsessiontout <time in seconds between 1 and 36000 (default is 900) >
Configure Serial Port Interface
 |
To avoid unexpected performance issues, leave Flow Control at the default setting (none) unless you are sure
what this setting should be.
|
[Device-Name]> set serbaudrate <2400, 4800, 9600, 19200, 38400, 57600>
[Device-Name]> set serflowctrl <none, xonxoff>
[Device-Name]> show serial
Result of “show serial” CLI Command
Configure Syslog
[Device-Name]> set syslogpriority <1-7 (default is 6)>
[Device-Name]> set syslogstatus <enable/disable>
Configure Intra BSS
[Device-Name]> set intrabssoptype <passthru (default)/block)>
Configure MAC Access Control
Setup MAC (Address) Access Control
[Device-Name]> set macaclstatus enable [Device-Name]> set macacloptype <passthru, block>
[Device-Name]> reboot 0
Add an Entry to the MAC Access Control Table
[Device-Name]> set macacltbl <index> macaddr <MAC Address> status enable
[Device-Name]> show macacltbl
Disable or Delete an Entry in the MAC Access Control Table
[Device-Name]> set macacltbl <index> status <disable/delete>
[Device-Name]> show macacltbl
 |
For larger networks that include multiple Access Points, you may prefer to maintain this list on a centralized
location using the RADIUS parameters (see Set RADIUS Parameters).
|
Configure Authentication Mode
Dual-radio APs use index 3 for Slot A and index 4 for Slot B.
[Device-Name]> set secconfigtbl <index> authmode <none, 802.1x, mixed, wpa, wpa-psk>
[Device-Name]> set secconfigtbl <index> enckeylen <64bits, 128bits>
[Device-Name]> set secconfigtbl <index> rekeyint <60 – 65535 seconds; default is 900 sec>
[Device-Name]>show secconfigtbl (to review your settings) [Device-Name]>reboot 0
 |
If you set Authentication Mode to 802.1x, WPA, or Mixed, you also need to configure the RADIUS
Authentication parameters. If you set Authentication Mode to Mixed, you also need to configure WEP
Encryption settings.
For Dual-radio APs: WPA is available for APs with an 11a Upgrade Kit or 802.11b/g Kit. WPA is NOT
available for APs with an 802.11b PC Card or a 5 GHz Upgrade Kit.
|
Set Pre-Shared Key (WPA-PSK Mode)
[Device-Name]> set wpaconfigtbl <index> pskey <64 hexadecimal digits>
or
[Device-Name]> set wpaconfigtbl <index> passphrase <8-64 characters; a minimum of 13 characters is recommended>
[Device-Name]>show wpaconfigtbl (to review your settings) [Device-Name]>reboot 0
Set RADIUS Parameters
Configure RADIUS Authentication server
[Device-Name]> set radiustbl <index> status enable seraddrfmt <ipaddr or name> ipaddr <RADIUS IP address or name> port <user defined> ssecret <user defined> responsetm <1 to 10 seconds> maxretx <0 to 4 times>
[Device-Name]> show radiustbl
Results of “show radiustbl” CLI command
Enable RADIUS MAC Access Control
[Device-Name]> set radmacaccctrl enable
[Device-Name]> reboot 0
Set MAC Address Format Type
[Device-Name]> set radmacaddrformat <dashdelimited, colondelimited, singledashdelimited, nodelimiter>
Set Authorization Lifetime (MAC-based authentication only)
[Device-Name]> set
radauthlifetm <7200-43200 seconds; default is 0>
Enable RADIUS Accounting
[Device-Name]> set radaccstatus enable
[Device-Name]> set radaccinactivetmr <inactivity timer in minutes>
[Device-Name]> show radius
Result of “show radius” CLI Command
Configure RADIUS Accounting server
[Device-Name]> set radacctbl <index> status <enable> seraddrfmt <ipaddr or name> ipaddr <RADIUS IP address or name> port <user defined> ssecret <user defined> responsetm <1 to 4 seconds> maxretx <1 to 10 times>
[Device-Name]> show radacctbl
Results of “show radacctbl” CLI command
Set Rogue Access Point Detection (RAD) Parameters
The Rogue AP Detection (RAD) feature enables an additional security level for wireless LAN deployments. The RAD feature provides a mechanism for detecting Rogue Access Points by utilizing the coverage of the trusted Access Point deployment.
The Rogue AP Scan employs background scanning using low-level 802.11 scanning functions for effective wireless detection of Access Points in its coverage area with minimal impact on the normal operation of the Access Point.
The set radstatus command enables Rogue Access Point Detection. The scan repetition duration (radscanint) is also configurable.If the Access Point uses directional antennas to provide directional coverage, then the interface bitmask (radifbitmask) can be configured to maximize the scanning coverage area.
[Device-Name]> set radstatus enable
[Device-Name]> set radscanint <15-1440>
[Device-Name]> set radifbitmask <4 (WiF A), 8 (WiF B), or 12 (both interfaces)>
[Device-Name]> show rad
Results of “show rad” CLI command
Set VLAN/SSID Parameters
Enable VLAN Management
[Device-Name]> set vlanstatus enable
[Device-Name]> set vlanmgmtid <1-4094>
[Device-Name]>show vlandidtbl (to review your settings) [Device-Name]>reboot 0
Disable VLAN Management
[Device-Name]>set vlanstatus disable or [Device-Name]>set vlanmgmtid 0 [Device-Name]>reboot 0
Add an Entry to the VLAN ID Table
[Device-Name]> set vlanidtbl <index number; see table> id <1-4094, -1=untagged> ssid <enter network name>
[Device-Name]>show vlandidtbl (to review your settings) [Device-Name]>reboot 0
 |
16 VLAN/SSID pairs are available for 802.11b/g APs and APs with an 11a Upgrade Kit. 802.11b APs and APs
with a 5 GHz Upgrade Kit only support one VLAN/SSID pair.
|
CLI Monitoring Parameters
Using the show command with the following table parameters will display operating statistics for the AP (these are the same statistics that are described in Monitor Information for the HTTP Web interface).
- staticmp: Displays the ICMP Statistics.
- statarptbl: Displays the IP ARP Table Statistics.
- statbridgetbl: Displays the Learn Table.
- statiapp: Displays the IAPP Statistics.
- statradius: Displays the RADIUS Authentication Statistics.
- statif: Displays information and statistics about the Ethernet and wireless interfaces.
- stat802.11: Displays additional statistics for the wireless interfaces.
- statethernet: Displays additional statistics for the Ethernet interface.
- statmss: Displays station statistics and Wireless Distribution System links.
Parameter Tables
Objects contain groups that contain both parameters and parameter tables. Use the following Tables to configure the Access Point. Columns used on the tables include:
- Name - Parameter, Group, or Table Name
- Type - Data type
- Values - Value range, and default value, if any
- Access = access type, R = Read Only (show), RW = Read-Write (can be “set”), W = Write Only
- CLI Parameter - Parameter name as used in the Access Point
Access Point network objects are associated with Groups. The network objects are listed below and associated parameters are described in the following Parameter Tables:
- HTTP (web browser) Parameters - Set up the graphical web browser interface. If required, enable SSL and configure the SSL certificate passphrase.
- Auto Configuration Parameters - Configure the Auto Configuration feature which allows an AP to be automatically configured by downloading a configuration file from a TFTP server during boot up.
System Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
System
|
Group
|
N/A
|
R
|
system
|
Name
|
DisplayString
|
User Defined
|
RW
|
sysname
|
Location
|
DisplayString
|
User Defined
|
RW
|
sysloc
|
Contact Name
|
DisplayString
|
User Defined
|
RW
|
sysctname
|
Contact E-mail
|
DisplayString
|
User Defined
|
RW
|
sysctemail
|
Contact Phone
|
DisplayString
|
User Defined max 254 characters
|
RW
|
sysctphone
|
FLASH Backup Interval
|
Integer
|
0 - 65535 seconds
|
RW
|
sysflashbckint
|
Flash Update
|
|
0
1
|
RW
|
sysflashupdate
|
System OID
|
DisplayString
|
N/A
|
R
|
sysoid
|
Descriptor
|
DisplayString
|
System Name, flash version, S/N, bootloader version
|
R
|
sysdescr
|
Up Time
|
Integer
|
dd:hh:mm:ss
dd – days
hh – hours
mm – minutes
ss – seconds
|
R
|
sysuptime
|
Emergency Restore to defaults
|
|
Resets all parameters to default factory values
|
RW
|
sysresettodefaults
Note: You must enter the following command twice to reset to defaults: set sysresettodefaults 1
|
Inventory Management Information
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
System Inventory Management
|
Subgroup
|
N/A
|
R
|
sysinvmgmt
|
Component Table
|
Subgroup
|
N/A
|
R
|
sysinvmgmtcmptbl
|
Component Interface Table
|
Subgroup
|
N/A
|
R
|
sysinvmgmtcmpiftbl
|
 |
The inventory management commands display advanced information about the AP’s installed components.
You may be asked to report this information to a representative if you contact customer support.
|
Network Parameters
IP Configuration Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Network
|
Group
|
N/A
|
R
|
network
|
IP Configuration
|
Group
|
N/A
|
R
|
ip (Note: The network and ip parameters display the same information)
|
IP Address
|
IpAddress
|
User Defined
|
RW
|
ipaddr
|
IP Mask
|
IpAddress
|
User Defined
|
RW
|
ipmask
|
Default Router IP Address
|
IpAddress
|
User Defined
|
RW
|
ipgw
|
Default TTL
|
Integer
|
User Defined (seconds) 64 (default)
|
RW
|
ipttl
|
Address Type
|
Integer
|
static
dynamic (default)
|
RW
|
ipaddrtype
|
 |
The IP Address Assignment Type (ipaddrtype) must be set to static before the IP Address (ipaddr), IP Mask
(ipmask) or Default Gateway IP Address (ipgw) values can be entered.
|
DNS Client for RADIUS Name Resolution
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
DNS Client
|
Group
|
N/A
|
R
|
dns
|
DNS Client status
|
Integer
|
enable
disable (default)
|
RW
|
dnsstatus
|
Primary DNS Server IP Address
|
IpAddress
|
User Defined
|
RW
|
dnspridnsipaddr
|
Secondary DNS Server IP Address
|
IpAddress
|
User Defined
|
RW
|
dnssecdnsipaddr
|
Default Domain Name
|
Integer32
|
User Defined (up to 254 characters)
|
RW
|
dnsdomainname
|
DHCP Server Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
DHCP Server
|
Group
|
N/A
|
R
|
dhcp
|
DHCP Server Status
|
Integer
|
enable (1) (default) disable (2) delete (3)
|
RW
|
dhcpstatus
|
Gateway IP Address
|
IpAddress
|
User Defined
|
RW
|
dhcpgw
|
Primary DNS IP Address
|
IpAddress
|
User Defined
|
RW
|
dhcppridnsipaddr
|
Secondary DNS IP Address
|
IpAddress
|
User Defined
|
RW
|
dhcpsecdnsipaddr
|
Number of IP Pool Table Entries
|
Integer32
|
N/A
|
R
|
dhcpippooltblent
|
 |
The DHCP Server (dhcpstatus) can only be enabled after a DHCP IP Pool table entry has been created.
|
DHCP Server table for IP pools
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
DHCP Server IP Address Pool Table
|
Table
|
N/A
|
R
|
dhcpippooltbl
|
Table Index
|
Integer
|
User Defined
|
N/A
|
index
|
Start IP Address
|
IpAddress
|
User Defined
|
RW
|
startipaddr
|
End IP Address
|
IpAddress
|
User Defined
|
RW
|
endipaddr
|
Width
|
Integer
|
User Defined
|
RW
|
width
|
Default Lease Time (optional)
|
Integer32
|
> 0
86400 sec (default)
|
RW
|
defleasetm
|
Maximum Lease Time (optional)
|
Integer32
|
> 0
86400 sec (default)
|
RW
|
maxleasetm
|
Comment (optional)
|
DisplayString
|
User Defined
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable (1)
disable (2)
delete (3)
|
RW
|
status
|
 |
Set either End IP Address or Width (but not both) when creating an IP address pool.
|
Link Integrity Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Link Integrity
|
Group
|
N/A
|
R
|
linkint
|
Link Integrity Status
|
Integer
|
enable
disable (default)
|
RW
|
linkintstatus
|
Link Integrity Poll Interval
|
Integer
|
500 - 15000 ms (in increments of 500ms)
500 ms (default)
|
RW
|
linkintpollint
|
Link Integrity Poll Retransmissions
|
Integer
|
0 - 255
5 (default)
|
RW
|
linkintpollretx
|
Link Integrity IP Target Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Link Integrity IP Target Table
|
Table
|
N/A
|
R
|
linkinttbl
|
Table Index
|
Integer
|
1-5
|
N/A
|
index
|
Target IP Address
|
IpAddress
|
User Defined
|
RW
|
ipaddr
|
Comment (optional)
|
DisplayString
|
User Defined (up to 254 characters)
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable
disable (default)
delete
|
RW
|
status
|
Interface Parameters
Wireless Interface Parameters
The wireless interface group parameter is wif. For Dual-radio APs, Slot A uses table index 3 and Slot B uses table index 4.
Common Parameters to 802.11a, 802.11b, and 802.11b/g APs
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Wireless Interfaces
|
Group
|
N/A
|
R
|
wif
|
Table Index
|
Integer
|
3 (Slot A) or 4 (Slot B)
|
R
|
index
|
Network Name
|
DisplayString
|
2 – 31 characters My Wireless Network (default)
|
RW
|
netname
|
Auto Channel Select (ACS)1
|
Integer
|
enable (default)
disable
|
RW
|
autochannel
|
DTIM Period
|
Integer
|
1 – 255
1 = default
|
RW
|
dtimperiod
|
RTS/CTS Medium Reservation
|
Integer
|
0 – 2347 Default is 2347 (off)
|
RW
|
medres
|
MAC Address
|
PhyAddress
|
12 hex digits
|
R
|
macaddr
|
Closed System
|
Integer
|
enable
disable (default)
|
RW
|
closedsys
|
Supported Frequency Channels
|
Octet String
|
Depends on Regulatory Domain
|
R
|
suppchannels
|
Load Balancing
|
Integer
|
enable (default)
disable
|
RW
|
ldbalance
|
Note 1: For 802.11a APs in Europe, Auto Channel Select is a read-only parameter; it is always enabled.
802.11a Only Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Operating Frequency Channel
|
Integer
|
Varies by regulatory domain and country. See 802.11a Channel Frequencies
|
RW
|
channel
|
Supported Data Rates
|
Octet String
|
See Transmit Rate, below
|
R
|
suppdatarates
|
Transmit Rate
|
Integer32
|
0 - Auto Fallback (default) 6 Mbits/sec 9 Mbits/sec 12 Mbits/sec 18 Mbits/sec 24 Mbits/sec 36 Mbits/sec 48 Mbits/sec 54 Mbits/sec
|
RW
|
txrate
|
Physical Layer Type
|
Integer
|
ofdm (orthogonal frequency division multiplexing) for 802.11a
|
R
|
phytype
|
802.11b Only Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Distance between APs
|
Integer
|
large (default)
medium
small
minicell
microcell
|
RW
|
distaps
|
Interference Robustness
|
Integer
|
enable (default)
disable
|
RW
|
interrobust
|
Operating Frequency Channel
|
Integer
|
1 - 14; available channels vary by regulatory domain/country; see 802.11b Channel Frequencies
|
RW
|
channel
|
Multicast Rate
|
Integer
|
1 Mbits/sec (1)
2 Mbits/sec (2) (default)
5.5 Mbits/sec (3)
11 Mbits/sec (4)
|
RW
|
multrate
|
Closed Wireless System
|
Integer
|
enable
disable (default)
|
RW
|
closedsys
|
Medium Distribution
|
Integer
|
enable (default)
disable
|
RW
|
meddendistrib
|
MAC Address
|
PhyAddress
|
12 hex digits
|
R
|
macaddr
|
Supported Data Rates
|
Octet String
|
1 Mbits/sec
2 Mbits/sec
5.5 Mbits/sec
11 Mbits/sec
|
R
|
suppdatarates
|
Transmit Rate
|
Integer32
|
0 (auto fallback - default)
1 Mbits/sec
2 Mbits/sec
5.5 Mbits/sec
11 Mbits/sec
|
RW
|
txrate
|
Supported Frequency Channels
|
Octet String
|
Depends on Regulatory Domain
|
R
|
suppchannels
|
Physical Layer Type
|
Integer
|
dsss (direct sequence spread spectrum) for 802.11b
|
R
|
phytype
|
Regulatory Domain List
|
DisplayString
|
U.S./Canada -- FCC
Europe -- ETSI
Japan -- MKK
|
R
|
regdomain
|
 |
There is an inter-dependent relationship between the Distance between APs and the Multicast Rate. In
general, larger systems operate a lower average transmit rates.
|
Distance between APs
|
Multicast Rate
|
Large
|
1 and 2 Mbits/sec
|
Medium
|
1, 2, and 5.5 Mbits/sec
|
Small
|
1, 2, 5.5 and 11 Mbits/sec
|
Minicell
|
1, 2, 5.5 and 11 Mbits/sec
|
Microcell
|
1, 2, 5.5 and 11 Mbits/sec
|
802.11b/g Only Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Wireless Operational Mode
|
Integer
|
dot11b-only
dot11g-only
dot11bg (default)
dot11g-wifi
|
RW
|
mode
|
Operating Frequency Channel
|
Integer
|
1 - 14; available channels vary by regulatory domain/country; see 802.11g Channel Frequencies
|
RW
|
channel
|
Supported Data Rates
|
Octet String
|
See Transmit Rate, below
|
R
|
suppdatarates
|
Transmit Rate
|
Integer32
|
For 802.11b-only mode:
0 (auto fallback - default)
1 Mbits/sec
2 Mbits/sec
5.5 Mbits/sec
11 Mbits/sec
For 802.11g-only mode:
0 (auto fallback - default)
6 Mbits/sec
9 Mbits/sec
12 Mbits/sec
18 Mbits/sec
24 Mbits/sec
36 Mbits/sec
48 Mbits/sec
54 Mbits/sec
For 802.11g-wifi and 802.11bg modes:
0 (auto fallback - default)
1 Mbits/sec
2 Mbits/sec
5.5 Mbits/sec
11 Mbits/sec
6 Mbits/sec
9 Mbits/sec
12 Mbits/sec
18 Mbits/sec
24 Mbits/sec
36 Mbits/sec
48 Mbits/sec
54 Mbits/sec
|
RW
|
txrate
|
Physical Layer Type
|
Integer
|
ERP (Extended Rate Protocol)
|
R
|
phytype
|
Wireless Distribution System (WDS) Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
WDS Table
|
Table
|
N/A
|
R
|
wdstbl
|
Port Index
|
Integer
|
3.1 - 3.6 (Wireless)
|
R
|
portindex
|
Status
|
Integer
|
enable, disable
|
RW
|
status
|
Partner MAC Address
|
PhysAddress
|
User Defined
|
RW
|
partnermacaddr
|
Ethernet Interface Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Ethernet Interface
|
Group
|
N/A
|
R
|
ethernet
|
Speed
|
Integer
|
10halfduplex
10fullduplex
10autoduplex
100halfduplex
100fullduplex
autohalfduplex
autoautoduplex (default)
|
RW
|
etherspeed
|
MAC Address
|
PhyAddress
|
N/A
|
R
|
ethermacaddr
|
Management Parameters
Secure Management Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Secure Management
|
Integer
|
Enable/Disable
|
RW
|
securemgmtstatus
|
SNMP Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
SNMP
|
Group
|
N/A
|
R
|
snmp
|
SNMP Management Interface Bitmask
|
Interface Bitmask
|
0 or 2 - no interfaces (disable)
1 or 3 - Ethernet
4 or 6 - Wireless A
8 or 10 - Wireless B
12 = Wireless A & B
13 or 15 - all interfaces (default is 15)
|
RW
|
snmpifbitmask
|
Read Password
|
DisplayString
|
User Defined
public (default) max 63 characters
|
W
|
snmprpasswd
|
Read/Write Password
|
DisplayString
|
User Defined
public (default) max 63 characters
|
W
|
snmprwpasswd
|
SNMPv3 Authentication Password
|
DisplayString
|
User Defined
public (default) max 63 characters
|
W
|
snmpv3authpasswd
|
SNMPv3 Privacy Password
|
DisplayString
|
User Defined
public (default) max 63 characters
|
W
|
snmpv3privpasswd
|
HTTP (web browser) Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
HTTP
|
Group
|
N/A
|
R
|
http
|
HTTP Management Interface Bitmask
|
Interface Bitmask
|
0 or 2 - no interfaces (disable)
1 or 3 - Ethernet
4 or 6 - Wireless A
8 or 10 - Wireless B
12 = Wireless A & B
13 or 15 - all interfaces (default is 15)
|
RW
|
httpifbitmask
|
HTTP Password
|
DisplayString
|
User Defined max 64 characters
|
W
|
httppasswd
|
HTTP Port
|
Integer
|
User Defined
Default = 80
|
RW
|
httpport
|
Help Link
|
DisplayString
|
User Defined
|
RW
|
httphelplink
|
SSL Status
|
Integer
|
Enable/Disable
|
RW
|
sslstatus
|
SSL Certificate Passphrase
|
DisplayString
|
User Defined
|
Write-only
|
sslpassphrase
|
 |
The default path for the Help files is C:/Program Files/Avaya Wireless/AP/HTML/index.htm. (Use the forward
slash character ("/") rather than the backslash character ("\") when configuring the Help Link location.) The
AP Help information is available in English, French, German, Italian, Spanish, and Japanese.
|
Telnet Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Telnet
|
Group
|
N/A
|
R
|
telnet
|
Telnet Management Interface Bitmask
|
Interface Bitmask
|
0 or 2 - no interfaces (disable)
1 or 3 - Ethernet
4 or 6 - Wireless A
8 or 10 - Wireless B
12 = Wireless A & B
13 or 15 - all interfaces (default is 15)
|
RW
|
telifbitmask
|
Telnet Port
|
Integer
|
User Defined
23 (default)
|
RW
|
telport
|
Telnet Login Inactivity Time-out
|
Integer
|
1 – 300 seconds
30 sec (default)
|
RW
|
tellogintout
|
Telnet Session Idle Time-out
|
Integer
|
1 - 900 seconds
900 sec (default)
|
RW
|
telsessiontout
|
Serial Port Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Serial
|
Group
|
N/A
|
R
|
serial
|
Baud Rate
|
Integer
|
2400, 4800,
9600 (default),
19200, 38400, 57600
|
RW
|
serbaudrate
|
Data Bits
|
Integer
|
8
|
R
|
serdatabits
|
Parity
|
Integer
|
none
|
R
|
serparity
|
Stop Bits
|
Integer
|
1
|
R
|
serstopbits
|
Flow Control
|
Value
|
none (default)
xonxoff
|
RW
|
serflowctrl
|
Auto Configuration Parameters
These parameters relate to the Auto Configuration feature which allows an AP to be automatically configured by downloading a specific configuration file from a TFTP server during the boot up process.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Auto Configuration
|
Group
|
N/A
|
R
|
autoconfig
|
Auto Configuration Status
|
Integer
|
enable (default) disable
|
RW
|
autoconfigstatus
|
Auto Config File Name
|
DisplayString
|
User Defined
|
RW
|
autoconfigfilename
|
Auto Config TFTP Server IP Address
|
IpAddress
|
User Defined
|
RW
|
autoconfigTFTPaddr
|
TFTP Server Parameters
These parameters relate to upload and download commands.
When a user executes an upload and/or download Command, the specified arguments are stored in TFTP parameters for future use. If nothing is specified in the command line when issuing subsequent upload and/or download commands, the stored arguments are used.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
TFTP
|
Group
|
N/A
|
R
|
tftp
|
TFTP Server IP Address
|
IpAddress
|
User Defined
|
RW
|
tftpipaddr
|
TFTP File Name
|
DisplayString
|
User Defined
|
RW
|
tftpfilename
|
TFTP File Type
|
Integer
|
img
config
bootloader
|
RW
|
tftpfiletype
|
IP Access Table Parameters
When creating table entries, you may either specify the argument name followed by argument value or simply entering the argument value. When only the argument value is specified, then enter the values in the order depicted by the following table. CLI applies default values to the omitted arguments. Due to the nature of the information, the only argument that can be omitted is the “comment” argument.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
IP Access Table
|
Table
|
N/A
|
R
|
mgmtipaccesstbl
|
Table Index
|
Integer
|
User Defined
|
N/A
|
index
|
IP Address
|
IpAddress
|
User Defined
|
RW
|
ipaddr
|
IP Mask
|
IpAddress
|
User Defined
|
RW
|
ipmask
|
Comment (optional)
|
DisplayString
|
User Defined
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable (default) disable delete
|
RW
|
status
|
Filtering Parameters
Ethernet Protocol Filtering Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Ethernet Filtering
|
Group
|
N/A
|
R
|
etherflt
|
Filtering Interface Bitmask
|
Interface Bitmask
|
0 or 2 - no interfaces (disable)
1 or 3 - Ethernet
4 or 6 - Wireless A
8 or 10 - Wireless B
12 = Wireless A & B
13 or 15 - all interfaces (default is 15)
|
RW
|
etherfltifbitmask
|
Operation Type
|
|
passthru
block
|
RW
|
etherfltoptype
|
Ethernet Filtering Table
Identify the different filters by using the table index.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Ethernet Filtering Table
|
Table
|
N/A
|
R
|
etherflttbl
|
Table Index
|
N/A
|
N/A
|
R
|
index
|
Protocol Number
|
Octet String
|
N/A
|
RW
|
protonumber
|
Protocol Name (optional)
|
DisplayString
|
|
RW
|
protoname
|
Status (optional)
|
Integer
|
enable (1)
disable (2)
delete (3)
|
RW
|
status
|
 |
The filter Operation Type (passthru or block) applies only to the protocol filters that are enabled in this table.
|
Static MAC Address Filter Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Static MAC Address Filter Table
|
Table
|
N/A
|
R
|
staticmactbl
|
Table Index
|
N/A
|
N/A
|
R
|
index
|
Static MAC Address on Wired Network
|
PhysAddress
|
User Defined
|
RW
|
wiredmacaddr
|
Static MAC Address Mask on Wired Network
|
PhysAddress
|
User Defined
|
RW
|
wiredmask
|
Static MAC Address on Wireless Network
|
PhysAddress
|
User Defined
|
RW
|
wirelessmacaddr
|
Static MAC Address Mask on Wireless Network
|
PhysAddress
|
User Defined
|
RW
|
wirelessmask
|
Comment (optional)
|
DisplayString
|
max 255 characters
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable (default)
disable
delete
|
RW
|
status
|
Proxy ARP Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Proxy ARP
|
Group
|
N/A
|
R
|
parp
|
Status
|
Integer
|
enable
disable (default)
|
RW
|
parpstatus
|
IP ARP Filtering Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
IP ARP Filtering
|
Group
|
N/A
|
R
|
iparp
|
Status
|
Integer
|
enable
disable (default)
|
RW
|
iparpfltstatus
|
IP Address
|
IpAddress
|
User Defined
|
RW
|
iparpfltipaddr
|
Subnet Mask
|
IpAddress
|
User Defined
|
RW
|
iparpfltsubmask
|
Broadcast Filtering Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Broadcast Filtering Table
|
Table
|
N/A
|
R
|
broadcastflttbl
|
Index
|
Integer
|
1-5
|
N/A
|
index
|
Protocol Name
|
DisplayString
|
N/A
|
R
|
protoname
|
Direction
|
Integer
|
ethertowireless
wirelesstoether
both (default)
|
RW
|
direction
|
Status
|
Integer
|
enable
disable (default)
|
RW
|
status
|
TCP/UDP Port Filtering
The following parameters are used to enable/disable the Port filter feature.
Name
|
Type
|
Values
|
Access
|
CLI
|
Port Filtering
|
Group
|
N/A
|
R
|
portflt
|
Port Filter Status
|
Integer
|
enable (default)
disable
|
RW
|
portfltstatus
|
TCP/UDP Port Filtering Table
The following parameters are used to configure TCP/UDP Port filters.
Name
|
Type
|
Values
|
Access
|
CLI
|
Port Filtering Table
|
Table
|
N/A
|
R
|
portflttbl
|
Table Index
|
N/A
|
User Defined
(there are also 4 pre-defined indices, see Port Number below for more information)
|
R
|
index
|
Port Type
|
Octet String
|
tcp
udp
tcp/udp
|
RW
|
porttype
|
Port Number
|
Octet String
|
User Defined
(there are also 4 pre-defined protocols:
Index 1: NetBios Name Service – 137, Index 2: NetBios Datagram Service – 138, Index 3: NetBios Session Service – 139, Index 4: SNMP Service – 161)
|
RW
|
portnum
|
Protocol Name
|
DisplayString
|
User Defined
(there are also 4 pre-defined protocols, see Port Number above)
|
RW
|
protoname
|
Interface Bitmask
|
Integer32
|
0 or 2 - no interfaces (disable)
1 or 3 - Ethernet
4 or 6 - Wireless A
8 or 10 - Wireless B
12 = Wireless A & B
13 or 15 - all interfaces (default is 15)
|
RW
|
ifbitmask
|
Status (optional)
|
Integer
|
enable (default for new entries)
disable (default for pre-defined entries)
delete
|
RW
|
status
|
Alarms Parameters
SNMP Table Host Table Parameters
When creating table entries, you may either specifying the argument name followed by argument value. CLI applies default values to the omitted arguments. Due to the nature of the information, the only argument that can be omitted is the “comment” argument.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
SNMP Trap Host Table
|
Table
|
N/A
|
R
|
snmptraphosttbl
|
Table Index
|
Integer
|
User Defined
|
N/A
|
index
|
IP Address
|
IpAddress
|
User Defined
|
RW
|
ipaddr
|
Password
|
DisplayString
|
User Defined (up to 64 characters)
|
W
|
passwd
|
Comment (optional)
|
DisplayString
|
User Defined (up to 254 characters)
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable (default)
disable
delete
|
RW
|
status
|
Syslog Parameters
The following parameters configure the Syslog settings.
Name
|
Type
|
Values
|
Access
|
CLI
|
Syslog
|
Group
|
N/A
|
R
|
syslog
|
Syslog Status
|
Integer
|
enable
disable (default)
|
RW
|
syslogstatus
|
Syslog Port
|
Octet String
|
514
|
R
|
syslogport
|
Syslog Lowest Priority Logged
|
Integer
|
1 – 7
1 = LOG_ALERT
2 = LOG_CRIT
3 = LOG_ERR
4 = LOG_WARNING
5 = LOG_NOTICE
6 = LOG_INFO (default)
7 = LOG_DEBUG
|
RW
|
syslogpritolog
|
Heartbeat Status
|
Integer
|
enable (1)
disable (2) (default)
|
RW
|
sysloghbstatus
|
Heartbeat Interval (seconds)
|
Integer
|
1 – 604800 seconds; 900 sec. (default)
|
RW
|
sysloghbinterval
|
 |
The Heartbeat parameters are advanced settings not available via the HTTP interface. When Heartbeat is
enabled, the AP periodically sends a message to the Syslog server to indicate that it is active. The frequency
with which the heartbeat message is sent depends upon the setting of the Heartbeat Interval.
|
Syslog Host Table
The table described below configures the Syslog hosts that will receive message from the AP. You can configure up to ten Syslog hosts.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Syslog Host Table
|
Table
|
N/A
|
R
|
sysloghosttbl
|
Table Index
|
Integer
|
1 – 10
|
N/A
|
index
|
IP Address
|
IpAddress
|
User Defined
|
RW
|
ipaddr
|
Comment (optional)
|
DisplayString
|
User Defined
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable disable delete
|
RW
|
status
|
Bridge Parameters
Spanning Tree Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Spanning Tree
|
Group
|
N/A
|
R
|
stp
|
Spanning Tree Status
|
Integer
|
enable
disable (default)
|
RW
|
stpstatus
|
Bridge Priority
|
Integer
|
0 – 65535 32768 (default)
|
RW
|
stppriority
|
Maximum Age
|
Integer
|
600 – 4000 (in 0.01 sec intervals; i.e., 6 to 40 seconds) 2000 (default)
|
RW
|
stpmaxage
|
Hello Time
|
Integer
|
100 – 1000 (in 0.01 sec intervals; i.e., 1 to 10 seconds) 200 (default)
|
RW
|
stphellotime
|
Forward Delay
|
Integer
|
400 – 3000 (in 0.01 sec intervals; i.e., 4 to 30 seconds) 1500 (default)
|
RW
|
stpfwddelay
|
Spanning Tree Priority and Path Cost Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Spanning Tree Table
|
Table
|
N/A
|
R
|
stpbl
|
Table Index (Port)
|
N/A
|
1 – 15
|
R
|
index
|
Priority
|
Integer
|
0 – 255 128 (default)
|
RW
|
priority
|
Path Cost
|
Integer
|
1 – 65535 100 (default)
|
RW
|
pathcost
|
State
|
Integer
|
disable
blocking
listening
learning
forwarding
broken
|
R
|
state
|
Status
|
Integer
|
enable
disable
|
RW
|
status
|
Storm Threshold Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Storm Threshold
|
Group
|
N/A
|
N/A
|
stmthres
|
Broadcast Threshold
|
Integer
|
0 – 255 packets/sec (default is 0)
|
RW
|
stmbrdthres
|
Multicast Threshold
|
Integer
|
0 – 255 packets/sec (default is 0)
|
RW
|
stmmultithres
|
Storm Threshold Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Storm Threshold Table
|
Table
|
N/A
|
R
|
stmthrestbl
|
Table Index
|
Integer
|
1 = Ethernet
3 = Wireless
|
R
|
index
|
Broadcast Threshold
|
Integer
|
0 – 255 packets/sec (default is 0)
|
RW
|
bcast
|
Multicast Threshold
|
Integer
|
0 – 255 packets/sec (default is 0)
|
RW
|
mcast
|
Intra BSS Subscriber Blocking
The following parameters control the Intra BSS traffic feature, which prevent wireless clients that are associated with the same AP from communicating with each other:
Name
|
Type
|
Values
|
Access
|
CLI
|
Intra BSS Traffic
|
Group
|
N/A
|
R
|
intrabss
|
Intra BSS Traffic Operation
|
Integer
|
passthru (default) block
|
RW
|
intrabssoptype
|
Packet Forwarding Parameters
The following parameters control the Packet Forwarding feature, which redirects wireless traffic to a specific MAC address:
Name
|
Type
|
Values
|
Access
|
CLI
|
Packet Forwarding MAC Address
|
Group
|
N/A
|
R
|
pktfwd
|
Packet Forwarding MAC Address
|
MacAddress
|
User Defined
|
RW
|
pktfwdmacaddr
|
Packet Forwarding Status
|
Integer
|
enable
disable (default)
|
RW
|
pktfwdstatus
|
Packet Forwarding Interface Port
|
Integer
|
0 (any) (default)
1 (Ethernet)
2 (WDS 1)
3 (WDS 2)
4 (WDS 3)
5 (WDS 4)
6 (WDS 5)
7 (WDS 6)
|
RW
|
pktfwdif
|
 |
The Wireless Distribution System (WDS) feature is not available for 802.11a or 802.11b/g APs at this time.
|
Security Parameters
For Dual-radio APs: WPA is available for APs with an 11a Upgrade Kit or 802.11b/g Kit. WPA is NOT available for APs with an 802.11b PC Card or a 5 GHz Upgrade Kit.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Security
|
Table
|
N/A
|
R
|
secconfigtbl
|
Index
|
Integer
|
3 (Single-radio APs)
3 or 4 (Dual-radio APs)
|
R
|
index
|
Authentication Mode
|
Integer
|
none (default)
802.1x
mixed
wpa
wpa-psk
|
RW
|
authmode
|
Re-keying Interval
|
Integer
|
60 – 65535 seconds
default is 900 sec
|
RW
|
rekeyint
|
Encryption Key Length
|
Integer
|
64bits
128bits
|
RW
|
enckeylen
|
Pre-Shared Key Configuration Table (WPA-PSK Mode)
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
WPA-PSK Pre-Shared Key Table
|
Table
|
N/A
|
R
|
wpaconfigtbl
|
Index
|
Integer
|
3 (Slot A) or 4 (Slot B)
|
N/A
|
index
|
Pre-Shared Key1
|
DisplayString
|
64 hex digits
|
WO
|
pskey
|
PSK Pass Phrase1
|
DisplayString
|
8 to 64 characters2
|
WO
|
passphrase
|
Note 1: Configure either the Pre-Shared Key or the PSK Pass Phrase (but not both) to create a pre-shared key for WPA-PSK mode. Setting Pre-Shared Key will override a previous PSK Pass Phrase setting. Similarly, setting PSK Pass Phrase will override a previous Pre-Shared Key setting.
Note 2: Avaya recommends using a PSK Pass Phrase of at least 13 characters to ensure that the generated key cannot be easily deciphered by network infiltrators.
Wireless Interface Security Parameters
The following table details the WEP encryption parameters for the AP.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Wireless Interface Security
|
Group
|
|
R
|
wifsec
|
Encryption Status
|
Integer
|
enable, disable (default)
|
RW
|
encryptstatus
|
Index
|
Integer
|
3 (Single-radio APs)
3 or 4 (Dual-radio APs)
|
R
|
index
|
Encryption Key 1
|
DisplayString
|
User Defined
|
W
|
encryptkey1
|
Encryption Key 2
|
DisplayString
|
User Defined
|
W
|
encryptkey2
|
Encryption Key 3
|
DisplayString
|
User Defined
|
W
|
encryptkey3
|
Encryption Key 4
|
DisplayString
|
User Defined
|
W
|
encryptkey4
|
Data Transmission Encryption Key
|
Integer
|
key1 (default), key2, key3, key4
|
RW
|
encryptkeytx
|
Security Encryption Key Length Table
The following table details how to set the Encryption Key Length for the wireless interfaces.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Security Encryption Key Length Table
|
Table
|
N/A
|
R
|
secenckeylentbl
|
Index
|
Integer
|
3 (Slot A) or 4 (Slot B)
|
N/A
|
index
|
Encryption Key Length
|
Integer
|
64bits
128bits
|
RW
|
enckeylen
|
MAC Access Control Parameter
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
MAC Address Control
|
Group
|
N/A
|
R
|
macacl
|
Status
|
Integer
|
enable disable (default)
|
RW
|
macaclstatus
|
Operation Type
|
Integer
|
passthru (default) block
|
RW
|
macacloptype
|
MAC Access Control Table
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
MAC Address Control Table
|
Table
|
N/A
|
R
|
macacltbl
|
Table Index
|
N/A
|
N/A
|
R
|
index
|
MAC Address
|
PhysAddress
|
User Defined
|
RW
|
macaddr
|
Comment (optional)
|
DisplayString
|
User Defined max 254 characters
|
RW
|
cmt
|
Status (optional)
|
Integer
|
enable (default)
disable
delete
|
RW
|
status
|
RADIUS Parameters
Primary and Backup RADIUS Server Table Parameters
Avaya devices that use RADIUS authentication and/or accounting support a primary and backup RADIUS server for MAC-based authentication and a primary and backup RADIUS server for EAP/802.1x authentication. The configuration parameters and statistics are the same for both primary and backup servers.
The CLI differentiates the primary and backup RADIUS parameters by using the table index:
- Index 1: Primary MAC-based authentication server
- Index 2: Backup MAC-based authentication server
- Index 3: Primary EAP/802.1x authentication server
- Index 4: Backup EAP/802.1x authentication server
General RADIUS Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
RADIUS
|
Group
|
N/A
|
R
|
radius
|
MAC Access Control Status
|
Integer
|
enable
disable (default)
|
R
|
radmacacctrl
|
Authorization Lifetime
|
Integer32
|
900 – 43200 seconds
900 sec. (default)
|
RW
|
radauthlifetm
|
MAC Address Format
|
Integer
|
dashdelimited (default)
colondelimited
singledashdelimited
no delimiter
|
RW
|
radmacaddrformat
|
RADIUS Accounting Status
|
Integer
|
enable
disable (default)
|
RW
|
radaccstatus
|
Accounting Inactivity Timer
|
Integer32
|
0 – 2147483647 minutes; default is 5 min.
|
RW
|
radaccinactivetmr
|
RADIUS Authentication
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
RADIUS Authentication
|
Table
|
N/A
|
R
|
radiustbl
|
Primary MAC-based authentication server
|
Integer
|
1
|
R
|
index
|
Backup MAC-based authentication server
|
Integer
|
2
|
R
|
index
|
Primary EAP/802.1x authentication server
|
Integer
|
3
|
R
|
index
|
Backup EAP/802.1x authentication server
|
Integer
|
4
|
R
|
index
|
RADIUS Server Status
|
Integer
|
enable disable (default)
|
RW
|
status
|
Server Addressing Format (see note)
|
Integer
|
ipaddr (default)
name
|
RW
|
seraddrfmt
|
Server IP Address or Name
|
IpAddress
DisplayString
|
User Defined
(enter an IP address if seraddrfmt is ipaddr or a name if set to name; up to 254 characters if using a name)
|
RW
|
ipaddr
|
Port (optional)
|
Integer
|
User Defined
1812 (default)
|
RW
|
port
|
Shared Secret
|
DisplayString
|
User Defined max 63 characters
|
W
|
ssecret
|
Response Time (sec)
|
Integer
|
1 – 4 seconds
3 sec (default)
|
RW
|
responsetm
|
Maximum Retransmissions (optional)
|
Integer
|
1 – 10
3 (default)
|
RW
|
maxretx
|
RADIUS Accounting
 |
Use a server name only if you have enabled the DNS Client functionality. See DNS Client for RADIUS Name
Resolution.
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
RADIUS Accounting
|
Table
|
N/A
|
R
|
radacctbl
|
Primary RADIUS
|
Integer
|
1
|
R
|
index
|
Backup RADIUS
|
Integer
|
2
|
R
|
index
|
RADIUS Server Status
|
Integer
|
enable disable (default)
|
RW
|
status
|
Server Addressing Format (see note)
|
Integer
|
ipaddr (default)
name
|
RW
|
seraddrfmt
|
Server IP Address or Name
|
IpAddress
Display String
|
User Defined
(enter an IP address if seraddrfmt is ipaddr or a name if set to name; up to 254 characters if using a name)
|
RW
|
ipaddr
|
Port (optional)
|
Integer
|
User Defined
1813 (default)
|
RW
|
port
|
Shared Secret
|
DisplayString
|
User Defined max 63 characters
|
W
|
ssecret
|
Response Time (sec)
|
Integer
|
1 – 4 seconds
3 sec (default)
|
RW
|
responsetm
|
Maximum Retransmissions (optional)
|
Integer
|
1 – 10
3 (default)
|
RW
|
maxretx
|
|
Rogue Access Point Detection (RAD) Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Rogue Access Point Detection (RAD)
|
Group
|
N/A
|
R
|
rad
|
Status
|
Integer
|
enable
disable (default)
|
RW
|
radstatus
|
Scan Interval
|
Integer
|
15-1440 (minutes)
|
RW
|
radscanint
|
Interface Bitmask
|
Interface Bitmask
|
4 (WiF A), 8 (WiF B), or 12 (both).
|
RW
|
radifbitmask
|
VLAN/SSID Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
VLAN
|
Group
|
N/A
|
R
|
vlan
|
Status
|
Integer
|
enable
disable (default)
|
RW
|
vlanstatus
|
Management ID
|
VlanId
|
-1 (untagged)
or 1-4094
|
RW
|
vlanmgmtid
|
VLAN ID Table
 |
16 VLAN/SSID pairs are available for 802.11b/g APs and APs with an 11a Upgrade Kit. 802.11b APs and APs
with a 5 GHz Upgrade Kit only support one VLAN/SSID pair.
|
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
VLAN ID Table
|
Table
|
N/A
|
R
|
vlanidtbl
|
Index1
|
Integer32
|
3.1 - 3.16 (Wireless A);
4.1 - 4.16 (Wireless B; Dual-radio APs only)
|
R
|
index
|
Identifier (ID)
|
VlanId
|
-1 or 0 (both correspond to untagged)
or 1-4094
|
RW
|
id
|
Network Name (SSID)
|
DisplayString
|
2-31 characters
|
RW
|
ssid
|
Status
|
Integer
|
enable (default when new entry created)
disable
delete
|
RW
|
status
|
Note 1: When adding a new entry to the table, you must specify the index instance you want to configure, such as 3.5; the 0 index value is not applicable to this table and does not create a new entry.
Other Parameters
IAPP Parameters
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
IAPP
|
Group
|
N/A
|
R
|
iapp
|
IAPP Status
|
Integer
|
enable (default) disable
|
RW
|
iappstatus
|
Periodic Announce Interval (seconds)
|
Integer
|
80
120 (default)
160
200
|
RW
|
iappannint
|
Announce Response Time
|
Integer
|
2 seconds
|
R
|
iappannresp
|
Handover Time-out
|
Integer
|
410 ms 512 ms (default) 614 ms 717 ms 819 ms
|
RW
|
iapphandtout
|
Max. Handover Retransmissions
|
Integer
|
1 - 4 (default 4)
|
RW
|
iapphandretx
|
Send Announce Request on Startup
|
Integer
|
enable (default) disable
|
RW
|
iappannreqstart
|
 |
These parameters configure the Inter Access Point Protocol (IAPP) for roaming. Leave these settings at their
default value unless a technical representative asks you to change them.
|
SpectraLink VoIP Parameters (802.11b Only)
Name
|
Type
|
Values
|
Access
|
CLI Parameter
|
Spectralink VoIP
|
Group
|
N/A
|
R
|
spectralink
|
Spectralink VoIP Status
|
Integer
|
enable disable (default)
|
RW
|
speclinkstatus
|
|