ePMP Command Line Interface (CLI)

ePMP Command Line Interface
User Manual
Firmware version 2.3

This document describes basic usage of ePMP Command Line Interface.

Command Line Access
Access to command line is provided via SSH protocol version 2. To access CLI you can use the following identity:
• ADMINISTRATOR (default username/password “admin”), who has full read and write permission.

Command Use Syntax
For every command in this document you can find a usage syntax. In command usage syntax, anything in a normal text font is required text. Anything in a boldface font is a flag or a subcommand. Anything underlined is a user-specified argument such as a filename.
Any argument surrounded by brackets is considered to be optional. For example, [ filename ] would indicate an optional filename argument.
Anything in angle brackets < > means the option is required.

Basic information
Context sensitive help
To display the context sensitive help you can use the question mark sign on your keyboard - [?]. Help will provide you either a list of possible command completions with summaries, or the full syntax of the current command. A subsequent repeat of this key, when a command has been resolved, will display a detailed reference.

Auto-completion
The following keys both perform auto-completion for the current command line. If the command prefix is not unique then the bell will ring and a subsequent repeat of the key will display possible completions.
[enter] - Auto-completes, syntax-checks then executes a command. If there is a syntax error then offending part of the command line will be highlighted and explained.
[space] - Auto-completes, or if the command is already resolved inserts a space.

Movement keys
[CTRL-A] - Move to the start of the line
[CTRL-E] - Move to the end of the line.
[up] - Move to the previous command line held in history.
[down] - Move to the next command line held in history.
[left] - Move the insertion point left one character.
[right] - Move the insertion point right one character.

Deletion keys
[CTRL-C] - Delete and abort the current line
[CTRL-D] - Delete the character to the right on the insertion point.
[CTRL-K] - Delete all the characters to the right of the insertion point.
[CTRL-U] - Delete the whole line.
[backspace] - Delete the character to the left of the insertion point.

Escape sequences
!! - Substitute the last command line.
!N - Substitute the Nth command line (absolute as per 'history' command)
!-N - Substitute the command line entered N lines before (relative)

Example 1: Changing device IP address in Bridge mode
In order to change device IP address in bridge mode the following commands should be used:
>config set networkBridgeIPAddr 192.168.0.100
>config save
>config apply

Example 2: Creating/Modifying MIR Profile
In order to create or modify existing first MIR profile the following commands should be used:
>config set 1 wirelessMIRProfileNumber 1
>config set 1 wirelessMIRProfileDescription 10Mbps
>config set 1 wirelessDLMIR 10000
>config set 1 wirelessULMIR 1000
>config save
>config apply

8 Likes

A post was split to a new topic: How to set wirelessRadiusUser1Certificate from CLI