Sie sind auf Seite 1von 32

®

FibeAir IP-10

CLI
(Command Line Interface)

User Guide

Part ID: BM-0134-0


Doc ID: DOC-00018394 Rev a.04
April 2009
Notice
This document contains information that is proprietary to Ceragon Networks Ltd.
No part of this publication may be reproduced, modified, or distributed without prior written
authorization of Ceragon Networks Ltd.
This document is provided as is, without warranty of any kind.

Registered TradeMarks
Ceragon Networks® is a registered trademark of Ceragon Networks Ltd.
FibeAir® is a registered trademark of Ceragon Networks Ltd.
CeraView® is a registered trademark of Ceragon Networks Ltd.
Other names mentioned in this publication are owned by their respective holders.

TradeMarks
CeraMapTM, PolyViewTM, EncryptAirTM, ConfigAirTM, CeraMonTM, EtherAirTM, and MicroWave
FiberTM, are trademarks of Ceragon Networks Ltd.
Other names mentioned in this publication are owned by their respective holders.

Statement of Conditions
The information contained in this document is subject to change without notice.
Ceragon Networks Ltd. shall not be liable for errors contained herein or for incidental or
consequential damage in connection with the furnishing, performance, or use of this
document or equipment supplied with it.

Information to User
Any changes or modifications of equipment not expressly approved by the manufacturer
could void the user’s authority to operate the equipment and the warranty for such equipment.
Copyright © 2009 by Ceragon Networks Ltd. All rights reserved.

Corporate Headquarters: European Headquarters:


Ceragon Networks Ltd. Ceragon Networks (UK) Ltd.
24 Raoul Wallenberg St. 4 Oak Tree Park, Burnt Meadow Road
Tel Aviv 69719, Israel North Moons Moat, Redditch,
Tel: 972-3-645-5733 Worcestershire B98 9NZ, UK
Fax: 972-3-645-5499 Tel: 44-(0)-1527-591900
Email: info@ceragon.com Fax: 44-(0)-1527-591903
www.ceragon.com Email: infoeuro@ceragon.com
North American Headquarters: APAC Headquarters:
Ceragon Networks Inc. Ceragon Networks APAC
10 Forest Avenue, (S'pore) Pte Ltd
Paramus, NJ 07652, USA 100 Beach Road
Tel: 1-201-845-6955 #27-01/03 Shaw Towers
Toll Free: 1-877-FIBEAIR Singapore 189702
Fax: 1-201-845-5665 Tel.: 65 65724170
Email: infous@ceragon.com Fax: 65 65724199
Contents

General .......................................................................................................... 1

Getting Started .............................................................................................. 2

Command Groups......................................................................................... 6

CLI Commands.............................................................................................. 9

CLI Command Parameters ..........................................................................13


General
This guide explains how to work with the FibeAir® IP-10 Command Line Interface (CLI).

The CLI is used to perform IP-10 configuration and obtain system statistical and performance information.

Using the CLI, you can perform configuration operations for single IP-10 units, as well as configure several
IP-10 units in a single batch command.

Access Rights
IP-10 CLI access is granted for the following user groups:

Viewer This user only has read-only access. The user can only view parameters and their values, not
modify them.
Operator This user has read-write access. The user can read parameters and their values, and modify
them. However, this user cannot add or remove other users.
Admin This user has read-write access. The user can read parameters and their values, modify them,
and add/remove other users.
Technician This user has read-write access to the OS CLI.

User access is controlled by the system administrator and configured via the Management command group
(shown in the Command Groups section).

FibeAir® IP-10 CLI Guide 1


Getting Started
To log in to the CLI:
1. Power on your PC.
2. Make sure that your PC is connected to the management port on the front panel of the IP-10 unit.
3. For a first-time login, use the following:
User: admin
Password: admin
Note: When using the Hyper Terminal, you should set the terminal speed (in your PC terminal
configuration) to 155200 kpbs. In addition, it is recommended to select the VT-100 terminal type and set the
terminal size to 24 rows, 80 columns.

Getting Help
Once you are logged in, you can go to a main command group and its sub groups, type the command you
want, and press Tab twice for a list of possible parameter values.
In addition, you can type a command and then type a question mark (?) for location-specific information for
the command. For example, for the set command, typing set ? and pressing Enter will display a list of
optional parameters and a help line.
Wherever you are in the command tree, you can obtain a list of available commands by typing Help or ?.
The commands that are available are different for each location in the CLI tree and the type of user.

FibeAir® IP-10 CLI Guide 2


Basic Commands
The following basic commands are available when you first log in, if you belong to the Operator user group:

ls list entities
get get parameter
set set parameter
help help
cd change directory
exit exit CLI
logout logout from CLI
cli-ver cli version
cls clear screen
write write the current switch configuration to the configuration file
show-tree show entity tree
find search for a string in the parameter name and information fields
lsp list entity parameters and commands

In addition, you can use the up/down arrow keys, or the “q” key, when the word “END” appears at the end
of the screen.

Setting IP Addresses
To define a new IP address, do the following:

1. Log in as follows:
User: admin or operator
Password: admin

2. At the command prompt, type: cd management\networking\ip-address\, and press Enter.

3. Type: get ip-address, and press Enter.


This will give you the current IP address.

4. Type: set new_ip_address, and press Enter.


For new_ip_address, enter the new address.

FibeAir® IP-10 CLI Guide 3


Finding Commands
At any point in the CLI tree, a quick way to find a command is to type find string, and press Enter.
For string you can type any word that you think is relevant for a command.
For example, if you type find user, and press Enter, you would get a list of commands relating to "user", as
follows:

1) management/mng-services/users/add-user Add user <name> <group>


2) management/mng-services/users/delete-user Delete user <name>
3) management/mng-services/users/show-users Show users

Command Example
The following example shows how you can find a command within a sub-group, and then execute the
command. The example starts with the lsp (list parameters) command, and ends with the activation of an
interface loopback test.

-----------------------------------------------

IP-10:/> cd diagnostics/loopback/radio-loopback/
IP-10:/diagnostics/loopback/radio-loopback> lsp
*********** configuration ********
timeout rw Loopback timeout in minutes
*********** statuses *************
counter ro Loopback time left
if-loopback rw IF loopback activation
rfu-rf-loopback rw RFU RF Loopback Enable Command
rfu-if-loopback rw RFU IF Loopback Enable Command

IP-10:/diagnostics/loopback/radio-loopback> set timeout 2


IP-10:/diagnostics/loopback/radio-loopback> set if-loopback
off on
IP-10:/diagnostics/loopback/radio-loopback> set if-loopback on
Caution: This action affects traffic.
The may cause permanent loss of Ethernet traffic & wayside.
Consider disabling or physically disconnecting the Ethernet ports of the IDM and
Wayside before the loopback activation.
Are you sure? (yes/no):yes
IP-10:/diagnostics/loopback/radio-loopback>

-----------------------------------------------

Important!
Note that bridge related commands need to be followed by a “write” command to be saved.
Otherwise, the commands will not be saved following a reset in the system.

FibeAir® IP-10 CLI Guide 4


Viewing the Command Tree
At any location within the command group structure, you can type show-tree and press Enter for a list of all
the commands in the group you are currently in.
The following list appears when you type show-tree.

FibeAir® IP-10 CLI Guide 5


Command Groups
The command groups that appear when you log in include the following:

Management

Platform

Radio

Interfaces

Diagnostics

Some groups include sub groups that enable setup operations relevant to that category.

The following illustrations show the trees of each main group.

Management

Management

FibeAir® IP-10 CLI Guide 6


Platform

Radio

FibeAir® IP-10 CLI Guide 7


Interfaces

Diagnostics

FibeAir® IP-10 CLI Guide 8


CLI Commands
The following table lists the commands you can use in each command group and sub group.

Note that when you enter a group or sub group, you can type a command and then press the Tab key twice
(or type a question mark) for a list of values relevant to that command.

Command Group Command Description


alarm-current show Show current alarms
qos-copy-priorities- Copy priority configuration from one port to
bridge
configurations another
qos-copy-rate-limiting- Copy rate limiting configuration from one port to
bridge
configurations another
bridge qos-policer Add/Remove a policer
bridge qos-policer-class Add/Remove a policer class
bridge qos-set-ip-pbit-val Set IP pbits to queue allocation
bridge qos-set-scheduler-q-weight Set scheduler queue's weight

bridge qos-set-vlan-tag-pbit-val Set VLAN tag pbits to queue allocation

bridge qos-show-ip-pbit-val Show IP pbits to queue allocation


bridge qos-show-policers Show QoS policers
bridge qos-show-scheduler-q-weight Show scheduler queue weights
bridge qos-show-static-mac-priorities Show static MAC priorities
bridge qos-show-vlan-tag-pbit-val Show VLAN tag pbits to queue allocation
bridge qos-show-vlan-to-queue Show QoS VLAN to queue priorities
bridge qos-static-mac-priority Set/Remove a static MAC priority
bridge qos-vlan-to-queue QoS VLAN to queue priority
bridge show-all-traffic-statistics Show ethernet statistics for all ports
bridge show-bridge-status Show the bridge status
bridge show-eth-statistics Show Ethernet Statistics
bridge show-forwarding-table Shows the forwarding table for a specific VLAN
bridge show-ports-status Show status of all ports
bridge show-running-config Show current switch operating configuration
bridge show-vlan-info Show VLAN database
Add, remove, or modify values associated with
bridge vlan
a single VLAN
cfg-service set-to-default Set to factory default configuration
diagnostics show-files-list Show downloadable files
ethernet set-gbe-mute-override Set GbE mute override
ethernet show-gbe-mute-override Show GbE mute override

FibeAir® IP-10 CLI Guide 9


Command Group Command Description
eth-port clear-rmon Clear RMON statistics
eth-port mep Add/Remove an MEP
eth-port mip Add/Remove MIP
eth-port qos-detach-policer Detach policer map from the port
eth-port qos-set-vlan-pbits-prio-remap Set VLAN Pbits priority remap
eth-port qos-show-policer-classes Show policer classes
eth-port qos-show-vlan-pbits-prio-remap Show VLAN Pbits priority remap
eth-port set-allowed-vlans Set allowed VLANs
eth-port show-allowed-vlans Show allowed VLANs
eth-port show-if-table-counters Show IF table counters
eth-port show-meps-list Show MEPs list
eth-port show-mips-list Show MIPs list
eth-port show-port-status Show port status
event-log clear Clear log
event-log show Show log
Change user password for the ftp session.
idc-board change-user-password When using default user name (anonymous),
use PC (host) login as password
idc-board create-archive Create archive file on target
Get the archive file from the PC (host) onto the
target. Before activating this command, make
idc-board download-archive
sure to set host-ip, host-path, user-name and
user-password
idc-board install-archive Install the requested archive file on target
idc-board reset-idc-hw Reset the IDC - cold (HW) reset
Upload the archive file to the PC (host). Before
idc-board upload-archive activating this command, make sure to set host-
ip, host-path, user-name and user-password
mate-idu copy-to-mate-cmd Copy to mate command
mate-idu manual-switch-cmd Manual switch command
mng-protocols status-show Show Management Protocols status
mng-protocols web-restart restart the web server
Basic auto-update command for convenient
mng-software autoupdate RPM packages update (try 'autoupdate --help'
for usage help)
mng-software change-server-password Change remote server password
Clean up disk from old duplicated (kernel)
mng-software cleanup packages and repackaged files, or downgrade
files
Downgrade application packages to older
mng-software downgrade version (downloaded to special downgrade
directory)

FibeAir® IP-10 CLI Guide 10


Command Group Command Description
Download newer packages from remote server
mng-software download
(without installation)
Re-install last installed Linux kernel package
mng-software kernel-reinstall
(recommended for corrupt kernel restoration)
Download and install new package (without
existing version installed). NOTE: provide
mng-software package-install
package name without version, e.g. 'rfu', not
'rfu-0.0.1'

Re-install already installed package. NOTE: run


mng-software package-reinstall
show-packages updates for available packages

Uninstall SW package (recommended for


mng-software package-uninstall
independent package removal)

Rollback recent IDU application upgrade


transaction (1 step back). CAUTION: packages
mng-software rollback upgraded after IDU application undergo rollback
also! NOTE: rollback doesn't revert 'downgrade'
operation -- use 'upgrade' command instead!

Basic rpm command, (try 'rpm --help' for usage


mng-software rpm
help)
mng-software show-packages Show SW packages
Upgrade all installed packages or requested
mng-software upgrade
package
mng-software verify-packages Verify installed packages
mng-software versions-idu Show IDU application packages set versions
mng-software versions-rfu Show supported RFU version
modem clear-counters Clear accumulated counters
mrmc change-script-cmd Change modem script command
mstp set-msti Set MSTP instance association
mstp show-msti Show MSTP instance association
pm-service clear-entire-pm Clear entire PM
port-group disable-all-ports Disable all E1/T1 ports
port-group enable-all-ports Enable all E1/T1 ports
remote-cl clear-device-error clear device error counter
remote-co clear-device-error clear device error counter
remote-idu force-unmute Force Remote Unmute Command
remote-idu remote-reset-idc-hw Reset the remote IDC - cold (HW) reset
rfu automatic-delay-calibration RFU Automatic Delay Calibration Command
rfu-cl clear-device-error clear device error counter
rfu-co clear-device-error clear IDU device error counter
rfu-fw-upload internal-fw-download-action Set Internal FW Download action
rfu-fw-upload internal-fw-download-cancel Set Internal FW Download cancel
rfu-sw-upload internal-sw-download-action Set Internal SW Download action

FibeAir® IP-10 CLI Guide 11


Command Group Command Description
rmon clear-all Clear RMON statistics from all ports
rmon clear-port Clear RMON statistics from a specific port
rmon get-statistics Get RMON statistics
service-oam association Add/Modify/Remove a maintenance association
service-oam ccm-admin Change continuity check admin state
service-oam ccm-interval Change continuity check interval time
service-oam domain Add/Modify/Remove a maintenance domain
service-oam linktrace Traceroute message to a remote MEP or MIP
service-oam ping Ping message to a remote MEP or MIP
service-oam remote-mep Add/Remove a remote MEP
service-oam show-configured-local-meps Show all local MEPs info
service-oam show-configured-remote-meps Show all remote MEPs info
service-oam show-domain-interval Show domain & VLAN CCM interval
service-oam show-domain-list Show Maintenance domain list
service-oam show-local-meps-list Show the local MEP list
service-oam show-maid-list Show the MAID list
service-oam show-mips-list Show domain & VLAN MIPs list
service-oam show-remote-meps-list Show the remote MEPs list
Change the settings of the SNMPv3 user
snmp change-user-settings
(security level / username / password)
snmp status-show Show SNMP status
users add-user Add user <name> <group>
users delete-user Delete user <name>
users show-users Show users

FibeAir® IP-10 CLI Guide 12


CLI Command Parameters
The following table lists the parameters you can use in the command groups and sub groups.

Parameter Group Parameter Description


System Alarm Current table indexed
alarm-current current-alarm-table
by time and quasi-sequential number
alarm-current most-severe Most severe alarm
alarm-external external-input External input state
alarm-external external-input.admin External input alarm admin
alarm-external external-input.severity External input alarm severity
alarm-external external-input.text External input alarm text
alarm-external external-output External alarm state
alarm-external external-output.admin External alarm output admin
alarm-external external-output.group External alarm group
analyzer analyzer_activate Analyzer activate
bridge bridge-id Bridge ID
bridge bridge-role Bridge role
Customer L2 protocols (STP, LACP,
bridge customer-l2protocol GMRP, GVRP, MMRP, MVRP,
DOT1X) tunneling
bridge ethernet-application Ethernet application
bridge forward-time Forwarding delay time in seconds
bridge hello-time Hello time in seconds
bridge management-type Management type
bridge max-age Maximum ageing time in seconds
bridge max-hops Maximum hops the BPDU will be valid

Bridge priority for each defined MST


bridge msti-bridge-priority
instance
bridge priority Bridge priority
bridge qos-ip-tos-tc-pbits-option IP priority options
bridge root-id Root ID
bridge root-path-cost Root path cost
e1t1-port admin Enable/disable the port
e1t1-port cable-length T1 cable length
e1t1-port e1t1-priority Dynamic E1/T1 allocation priority
e1t1-port interface-type Interface type
e1t1-port line-loopback Line loopback
e1t1-port line-pm-15 Line PM 15 minute monitoring
e1t1-port line-pm-24 Line PM 24 hour monitoring
e1t1-port oper-status Operational status
e1t1-port port-curr-ber E1/T1 port current BER
eow admin Engineering order wire admin

FibeAir® IP-10 CLI Guide 13


Parameter Group Parameter Description
ethernet acm-ethernet-threshold ACM ethernet threshold
eth-port actual-duplex Actual duplex
eth-port actual-ethernet-rate Actual Ethernet rate
eth-port admin Enable/disable the port
eth-port auto-negotiation Auto negotiation
The sum of lengths of all bad Ethernet
eth-port bad-octets-rcv
frames received
The number of good frames received
eth-port brdc-pkts-rcv that have Broadcast destination MAC
address

The number of good frames sent that


eth-port brdc-pkts-sent have a Broadcast destination MAC
address
eth-port capacity-threshold Capacity threshold [Mbps]

The number of collision events seen


by the MAC not including those
eth-port collisions counted in 'Single', 'Multiple',
'Excessive', or 'Late'. This counter is
applicable in half-duplex only.

eth-port connector-type Connector type

The total number of successfully


transmitted frames that experienced
no collisions but are delayed because
eth-port deferred
the medium was busy during the first
attempt. This counter is applicable in
half-duplex only.

eth-port duplex Half/full duplex


eth-port edge-port Enable as edge port
eth-port ethernet-rate Ethernet rate (mbps)
eth-port evc-name EVC name

The number of frames dropped in the


transmit MAC because the frame
eth-port excess-collision-drop experienced 16 consecutive collisions.
This counter is applicable in half-
duplex only.

eth-port flow-control Flow control


Total frames received with a length of
eth-port fragments-pkts less than 64 octets but with an invalid
FCS.
eth-port functionality-led Functionality LED
The sum of lengths of all good
eth-port good-octets-rcv Ethernet frames received, that are not
bad frames.

FibeAir® IP-10 CLI Guide 14


Parameter Group Parameter Description
The sum of lengths of all Ethernet
eth-port good-octets-sent
frames sent from this MAC.

The number of inbound packets which


were chosen to be discarded, even
eth-port if-table-indiscards though no errors had been detected,
to prevent their being deliverable to a
higher-layer protocol.

The number of inbound packets that


contained errors preventing them from
eth-port if-table-inerrors
being delivered to a higher-layer
protocol.

The number of non-unicast packets


eth-port if-table-innucastpkts
delivered to a higher-layer protocol.

The total number of octets received on


eth-port if-table-inoctets the interface, including framing
characters.

The number of subnetwork-unicast


eth-port if-table-inucastpkts packets delivered to a higher-layer
protocol.

The number of packets received via


the interface which were discarded
eth-port if-table-inunknownprotos
because of an unknown or
unsupported protocol.

The number of outbound packets


which were chosen to be discarded,
eth-port if-table-outdiscards even though no errors had been
detected, to prevent them from being
transmitted.

The number of outbound packets that


eth-port if-table-outerrors could not be transmitted because of
errors.

The total number of packets that


higher-level protocols requested be
eth-port if-table-outnucastpkts transmitted to a non-unicast address,
including those that were discarded or
not sent.

The total number of octets transmitted


eth-port if-table-outoctets out of the interface, including framing
characters.

FibeAir® IP-10 CLI Guide 15


Parameter Group Parameter Description

The total number of packets that


higher-level protocols requested be
eth-port if-table-outucastpkts transmitted to a subnetwork-unicast
address, including those that were
discarded or not sent.

A 32 bit counter that counts the


number of good, non-filtered frames
eth-port in-discards that normally would have been
forwarded, but could not be due to a
lack of buffer space

Total frames received with a CRC


error not counted in 'Fragments
eth-port in-fcs-err
frames received', 'Jabber frames
received' or 'Rx error frames received'.

A 16 bit counter that counts the


number of good frames that were
eth-port in-filtered filtered due to ingress policy rules. The
rules include frames that are dropped
due to 802.1Q security checks.

The number of good frames received


eth-port in-pause that have Pause destination MAC
address.

Total frames received with error signal


eth-port in-rx-err
from PHY
eth-port interface-index Interface index
eth-port interface-type Interface type
The number of good frames received
eth-port in-uni-casts that have Unicast destination MAC
address.

Total frames received with a length of


eth-port jabber-pkts more than 1632 octets but with an
invalid FCS.

The number of times a collision is


detected later than 512 bit-times into
eth-port late-collision-detect the transmission of a frame. This
counter is applicable in half-duplex
only.

eth-port learning Learning admin


eth-port mac-address MAC address
eth-port management-auto-negotiation Management port auto negotiation
eth-port management-capacity Management port capacity
eth-port management-duplex Management port duplex

FibeAir® IP-10 CLI Guide 16


Parameter Group Parameter Description
Management port Ethernet rate
eth-port management-ethernet-rate
(Mbps)
eth-port management-only Management only
eth-port management-port-admin Port's admin
eth-port management-vlan Management VLAN id

The number of good frames received


that have Multicast destination MAC
address. This does not include frames
eth-port mc-pkts-rcv
counted in 'Pause frames received' or
frames counted in 'Broadcast frames
received'.

The number of good frames sent that


have a Multicast destination MAC
address. This does not include frames
eth-port mc-pkts-sent
counted in 'Pause frames sent' or
frames counted in 'Broadcast frames
sent'.

Path cost for each defined MST


eth-port msti-port-path-cost
instance
Interface priority for each defined MST
eth-port msti-port-priority
instance

The total number of frames that have


been successfully transmitted and
eth-port multiple-collision-frame have also experienced more than one
collision. This counter is applicable in
half-duplex only.

eth-port oper-status Operational status


The number of frames transmitted with
eth-port out-fcs-err
an invalid FCS

A 16 bit counter that counts the


number of good frames that were
filtered due to egress policy rules. The
eth-port out-filtered rules include frames that passed the
ingress port's policy but are dropped
due to the egress policy of this port,
including 802.1Q security checks.

The number of Flow Control frames


eth-port out-pause
sent

The number of frames sent that have


eth-port out-uni-casts
a Unicast destination MAC address

FibeAir® IP-10 CLI Guide 17


Parameter Group Parameter Description
Total frames received with a length of
eth-port oversize-pkts more than 1632 octets but with a valid
FCS.
eth-port path-cost Path cost
Total frames received with length of
eth-port pkts-1024-max-octets above 1024 octets inclusive, including
those with errors.

Total frames received with length of


eth-port pkts-128-255-octets between 128 and 255 octets inclusive,
including those with errors.

Total frames received with length of


eth-port pkts-256-511-octets between 255 and 511 octets inclusive,
including those with errors.

Total frames received with length of


eth-port pkts-512-1023-octets between 512 and 1023 octets
inclusive, including those with errors.

Total frames received with length of


eth-port pkts-64-octets exactly 64 octets, including those with
errors.

Total frames received with length of


eth-port pkts-65-127-octets between 65 and 127 octets inclusive,
including those with errors.
eth-port pm-15 15 Minute PM minutes monitoring
eth-port pm-24 24 Hour PM hours monitoring
eth-port priority Port's priority
eth-port protection-only Protection only
eth-port protection-port-admin Port's admin
eth-port qos-classify-default Priority override port
eth-port qos-classify-initial Third criteria classification

First criteria: classification according


eth-port qos-classify-mac-da-override
to destination MAC address (MAC DA)

Second criteria: classification


eth-port qos-classify-vid-override
according to VLAN ID
eth-port qos-egress-shaper Egress shaper

Egress shaper rate. The value should


be in steps of 64K for values less than
1 Mbps. 1M steps for values between
eth-port qos-egress-shaper-rate
1 Mbps and 100 Mbps. 10M steps for
values between 100 Mbps and 1000
Mbps (GbE ports only).

FibeAir® IP-10 CLI Guide 18


Parameter Group Parameter Description

eth-port qos-policer-name Policer name associated with this port

eth-port qos-scheduling-scheme Scheduling scheme


eth-port role Port's role

The total number of successfully


transmitted frames that experienced
eth-port single-collision-frame
exactly one collision. This counter is
applicable in half-duplex only.

eth-port state Port's state

eth-port throughput-threshold Throughput threshold [Mbps]

eth-port type Port's type


Total frames received with a length of
eth-port undersize-pkts less than 64 octets but with a valid
FCS
eth-port utilization-threshold Utilization threshold [%]
eth-port vlan Default VLAN ID
eth-port wayside-auto-negotiation Wayside auto negotiation
eth-port wayside-capacity Wayside port capacity
eth-port wayside-duplex Wayside half/full duplex
eth-port wayside-ethernet-rate Wayside Ethernet port rate (Mbps)
eth-port wayside-only Wayside only
eth-port wayside-port-admin Port's admin
EventForward ForwardCount Counter of forwarded traps
EventForward ManagerIP Registered SNMP Manager
event-log event-to-syslog Event to syslog
fpga fw-version FPGA FW Version
framer link-id Link ID
framer oper-status Operational status
framer radio-ber Radio BER status
Radio Excessive BER threshold
framer radio-excessive-ber-threshold
configuration
Radio 15 minute interval performance
framer radio-pm-15min-interval
monitor
Radio 24 hour interval performance
framer radio-pm-24hour-interval
monitor
Radio Signal Degrade threshold
framer radio-signal-degrade-threshold
configuration
idc-board config-creation-status Status of the archive creation action

idc-board config-download-status Status of the archive download action

FibeAir® IP-10 CLI Guide 19


Parameter Group Parameter Description

idc-board config-install-status Status of the archive download action

idc-board config-upload-status Status of the archive storage action

idc-board download-security-status Status of security file download status

Determines whether the file transfer


idc-board file-transfer-protocol
protocol is secure (SFTP) or not (FTP)

IP of the HOST where the archive is to


idc-board host-ip
be stored

Relative path (under the ftp directory)


on the HOST where the archive is to
idc-board host-path
be stored. For using default ftp path:
set // for Windows or set / for Linux.

idc-board idu-led IDU LED


Identifies current kernel-modules
idc-board kernel-modules-version
package set version
idc-board measurement-system Measurement system
idc-board protection-led Protection LED
idc-board radio-led Radio LED
idc-board remote-led Remote LED
idc-board rfu-led RFU LED
idc-board security-file-format
The security filename to be
idc-board security-file-name
downloaded
idc-board security-file-type
idc-board status-text-indication Internal status text indication array
System up time (in hundredths of
idc-board system-up-time
seconds)
idc-board temperature IDU temperature

idc-board unit-info-creation-status Status of the unit-info creation action

idc-board unit-info-upload-status Status of the archive storage action


idc-board upload-pub-key-status Status of the public key uploading
idc-board user-name User name for the ftp session
idc-board version IDC version
idc-board voltage-input Voltage input
inventory board-modules Board modules
inventory board-sub-type Board sub-type
inventory board-type Board type
inventory chain-firmware Chain firmware
inventory chain-hardware-features Chain hardware features

FibeAir® IP-10 CLI Guide 20


Parameter Group Parameter Description
inventory chain-sub-type Chain sub-type
inventory chain-type Chain type
inventory comments Text description of the board
inventory company-name Company name
Date of board testing (number of
inventory date-code
seconds from 1/1/1970)
inventory firmware Firmware
inventory hardware Hardware
inventory hass-number Number of hass testing
inventory hw-feature HW features
inventory hw-inventory-version The hw inventory version
inventory hw-supported-bit-bate HW supported bit rate
inventory idc-firmware IDC firmware
inventory idc-hardware-features The hardware features of the IDC
inventory idc-sub-type The sub-type of the IDC
inventory idc-type The type of IDC
Number of hours left for license demo
inventory license-demo-timer
mode
inventory license-register System license features
inventory logo Compay logo
inventory main-view Company main logo
inventory modem-firmware The firmware of the modem

inventory modem-hardware-features The hardware features of the modem

inventory modem-sub-type The sub-type of the modem


The frequency of the clock for the
inventory modem-system-rate
PVG
inventory modem-type The type of modem
inventory mux-firmware The firmware of the MUX
inventory mux-hardware-features The hardware features of the MUX
inventory mux-sub-type The sub-type of the MUX
inventory mux-type The type of MUX

inventory num-of-10-100-1000-interfaces Number of 10/100/1000 interfaces

inventory num-of-fe-interfaces Number of fast Ethernet interfaces

inventory num-of-sfp-interfaces Number of SFP interfaces


inventory num-of-tdm-interfaces Number of TDM interfaces

inventory num-of-working-hours Counter of working hours of the board

Part number of the application in the


inventory part-number
board
inventory pic-version The version of the pic

FibeAir® IP-10 CLI Guide 21


Parameter Group Parameter Description
inventory production-inventory-version The production inventory version
inventory product-name Product name
inventory rx-master-iq-delay RX IQ delay - Rx Master delay
RX IQ Delay - Rx Master index in fdf
inventory rx-master-iq-delay-index-in-fdf-table
table
inventory rx-slave-iq-delay RX IQ delay - Rx slave delay
RX IQ Delay - Rx slave index in fdf
inventory rx-slave-iq-delay-index-in-fdf-table
table
inventory serial-number The serial number of the board
inventory spare1 Spare 1
inventory spare2 Spare 2
inventory spare3 Spare 3
inventory tx-iq-delay TX IQ Delay - TX Delay
inventory tx-iq-delay-index-in-fdf-table TX IQ Delay - Tx index in fdf table
inventory type-of-tdm-interfaces Type of TDM interfaces
inventory xc-firmware The firmware of the XC
inventory xc-hardware-features The hardware features of the XC
inventory xc-sub-type The sub-type of the XC
inventory xc-type The type of XC
ip-address default-gateway Default gateway
ip-address hw-address Hw address

ip-address ip-address Unit management IP address

ip-address subnet-mask Unit subnet mask


license acm-license ACM rights
license capacity-name Capacity rights
license demo-admin Enable/disable demo mode
Time left for license demo mode (in
license demo-timer
hours)
The user license code that determines
license license-code
the user rights
license license-type Type of license
license switch-application-license Switch application rights
line-loopback counter Loopback time left
line-loopback line-loopback Line loopback
Loopback timeout in minutes (0 for
line-loopback timeout
unlimited)
mate-idu excessive-ber-switch-admin Excessive BER switch admin
mate-idu mate-ip-address Mate IP address
mate-idu mate-mac-address Mate mac address

mate-idu protection-admin Protection admin

mate-idu protection-force-switch Protection force switch

FibeAir® IP-10 CLI Guide 22


Parameter Group Parameter Description
mate-idu protection-lockout Protection lockout
mate-idu protection-mode Protection mode

mate-idu remote-ber-adjustment-time Remote BER adjustment time

mate-idu remote-lof-adjustment-time Remote LOF adjustment time

mng-protocols telnet-admin Telnet administrative state


mng-protocols telnet-status Telnet service status
HTTP/S channel administrative state
mng-protocols web-admin
for web and NMS access
Determines if web ca certficate is
mng-protocols web-ca-certificate-admin
required

mng-protocols web-inactivity-timeout Web inactivity timeout, in minutes

mng-protocols web-protocol Web protocol type


mng-protocols web-status Web service status
Identifies installed IDU application
mng-software common-version-idu
package set version
Identifies installed RFU package
mng-software common-version-rfu
version
Identifies RFU package version for
mng-software common-version-rfu-downgrade
downgarde
Identifies RFU package version for
mng-software common-version-rfu-upgrade
upgrade
mng-software server-login Remote server login
Remote SW update server URL,
mng-software server-url
where SW updates reside
mng-software status-download Last SW download status
mng-software status-install Last SW installation status
Common (version holder) package
mng-software version-package-name
name
modem defected-blocks Defective blocks
modem ldpc-decoder-stress LDPC decoder stress
Modem 15 minute interval
modem modem-pm-15min-interval
performance monitor
Modem 24 hour interval performance
modem modem-pm-24hour-interval
monitor
modem mse MSE
modem mse-threshold MSE threshold
mrmc connected-rfu-grade Actual connected RFU grade
mrmc current-acm-adaptive-rx-profile Current ACM adaptive Rx profile

FibeAir® IP-10 CLI Guide 23


Parameter Group Parameter Description
mrmc current-acm-adaptive-tx-profile Current ACM adaptive Tx profile
mrmc current-rx-bitrate Current Rx bitrate
mrmc current-rx-profile Current Rx profile
mrmc current-rx-qam Current Rx QAM
mrmc current-tx-bitrate Current Tx bitrate
mrmc current-tx-profile Current Tx profile
mrmc current-tx-qam Current Tx QAM

When 'Automatic State Propagation' is


not 'None', a GBE/Radio mute (or
mrmc eth-shutdown-threshold-profile
shutdown) will be forced if the radio
profile degrades below this threshold

mrmc loaded-script-description Loaded script description


mrmc loaded-script-version Modem script version
mrmc max-adaptive-acm-rx-profile Maximum adaptive ACM Rx profile

mrmc max-available-tdm-interfaces Max available TDM interface

mrmc min-adaptive-acm-rx-profile Minimum adaptive ACM Rx profile


MRMC 15 minute interval
mrmc mrmc-pm-15min-interval
performance monitor
MRMC 24 hour interval performance
mrmc mrmc-pm-24hour-interval
monitor

Radio scheme (Bit Rate, Occupied


BW, Modulation and Grade).\n
Occupied BW Vs Channel Separation
are listed in pairs: (Occupied BW
mrmc mrmc-script
Range[MHz], Channel Separation
[MHz]):\n(5-7,7); (8-10,10); (12-
14,13.75-15); (25-29,27.5-30); (33-
38,40); (50-55,55-56)

mrmc occupied-bandwidth Occupied bandwidth (MHz)


mrmc operation-mode Operation mode
mrmc rfu-chosen-grade RFU chosen grade
mrmc script-package-version Modem script package version
mstp region-name Name of the MST region
mstp revision-number Revision number for configuration
networking auto-negotiation Management port auto negotiation
networking capacity Management port capacity
networking duplex Management port duplex
Management port Ethernet rate
networking ethernet-rate
(Mbps)
networking number-of-ports Number of management ports
networking type How management data is passed

FibeAir® IP-10 CLI Guide 24


Parameter Group Parameter Description
networking vlan Management VLAN id
platform latitude Unit's latitude coordinates
platform longitude Unit's longitude coordinates
platform system-contact-person System contact person
platform system-description System description
platform system-location System location
platform system-name System name
Number of services as provided by the
platform system-services
system according to the rfc3418
port-group exber-threshold Excessive BER threshold
port-group line-code Line code
port-group pdh-led PDH LED color
port-group sd-threshold Signal degrade threshold
radio mhc-admin MAC header compression admin
radio-loopback counter Loopback time left

radio-loopback if-loopback IF loopback activation

radio-loopback rfu-rf-loopback RFU RF Loopback Enable Command

radio-loopback timeout Loopback timeout in minutes


remote-cl device-error Device errors
remote-co device-error Device errors
Remote IDU ATPC enable/disable
remote-idu remote-atpc-admin
configuration
Remote ATPC reference Rx level
remote-idu remote-atpc-ref-rx-level
configuration
remote-idu remote-communication Remote Communication Status
remote-idu remote-default-gateway Remote IDU default gateway
Force remote Max transmit level
remote-idu remote-force-max-tx-level
configuration
Force remote Mute transmit
remote-idu remote-force-mute-tx
configuration

remote-idu remote-ip-address Remote IDU IP address

remote-idu remote-link-id Remote IDU Link ID


remote-idu remote-management-type Remote Management type status
Remote Management VLAN ID
remote-idu remote-management-vlan
configuration
remote-idu remote-most-severe-alarm Remote most severe alarm status
remote-idu remote-rx-level Remote Rx level status
remote-idu remote-subnet-mask Remote IDU subnet mask

FibeAir® IP-10 CLI Guide 25


Parameter Group Parameter Description

rfic if-loopback IF loopback activation

rfu atpc-admin RFU ATPC enable/disable


rfu atpc-ref-rx-level RFU ATPC reference Rx Level

rfu automatic-delay-calibration-status RFU automatic delay calibration status

rfu band RFU band status


rfu cable-tilt RFU cable tilt status
RFU communication to remote unit
rfu communication-status
status
rfu data-sci-errors RFU data SCI number of errors
rfu delay-calibration RFU delay calibration configuration
rfu fpga-version-number RFU running FW version number
rfu ifc-support RFU IFC support status
rfu if-loopback-support RFU IF loopback support status

rfu internal-download-counter RFU internal download counter status

rfu internal-download-status RFU internal download status


rfu log-admin RFU log enable/disable configuration
RFU log interval configuration, in
rfu log-interval
seconds
rfu lo-sense RFU lo sense status
rfu max-bandwidth RFU maximum bandwidth status
rfu max-rx-freq RFU maximum Rx frequency status
rfu max-tx-freq RFU maximum Tx frequency status
RFU maximum transmit level
rfu max-tx-level
configuration
rfu min-bandwidth RFU minimum bandwidth status
rfu min-rx-freq RFU minimum Rx frequency status
rfu min-tx-freq RFU minimum Tx frequency status
rfu mse-forward RFU MSE forward command
rfu mute-tx RFU mute transmitter
rfu part-number RFU part number
RFU 15 minute interval performance
rfu pm-15min-interval
monitor
RFU 15 minute interval combined
rfu pm-15min-interval-combined
performance monitor
RFU 15 minute interval diversity
rfu pm-15min-interval-diversity
performance monitor
RFU 24 hour interval performance
rfu pm-24hour-interval
monitor

FibeAir® IP-10 CLI Guide 26


Parameter Group Parameter Description
RFU 24 hour interval combined
rfu pm-24hour-interval-combined
performance monitor
RFU 24 hour interval diversity
rfu pm-24hour-interval-diversity
performance monitor
rfu pmax RFU Pmax status
rfu pmin RFU Pmin status
RFU performance monitoring Rx level
rfu pm-rx-level-threshold-1
threshold 1 configuration
RFU performance monitoring Rx level
rfu pm-rx-level-threshold-2
threshold 2 configuration
RFU performance monitoring Tx level
rfu pm-tx-level-threshold
threshold configuration
rfu power-supply-status RFU power supply status
rfu predistortion-support RFU predistortion support status
rfu rf-loopback-support RFU RF loopback support status
rfu rfu-address RFU address status
rfu rfu-installation RFU installation status
rfu rfu-mode RFU mode configuration

rfu rfu-rf-loopback RFU RF loopback enable command

rfu rfu-type Type of connected RFU


RFU RX level connector source
rfu rsl-connector-source
configuration
rfu rx-freq RFU Rx frequency configuration
RFU change Rx frequency local
rfu rx-freq-local-remote
remote command
rfu rx-level RFU receive level status
rfu rx-level-combined RFU Rx level combined status
rfu rx-level-diversity RFU Rx level diversity
rfu serial-number RFU serial number
RFU running software version number
rfu software-version-number
with booter version suffix
rfu standard-organization RFU standard organization
rfu synthesizer-status RFU synthesizer
rfu temp-in-celsius RFU temperature, celsius
rfu temp-in-fahrenheit RFU temperature, fahrenheit
rfu tx-freq RFU Tx frequency configuration
RFU change Tx frequency local
rfu tx-freq-local-remote
remote command
rfu tx-level-status RFU transmit level

rfu tx-rx-freq-separation RFU Tx Rx frequency separation

FibeAir® IP-10 CLI Guide 27


Parameter Group Parameter Description
rfu unfaded-rsl RFU Unfaded Rx level configuration
rfu-cl device-error Device errors
rfu-co device-error Device errors
RFU internal firmware download
rfu-fw-upload internal-fw-download-counter
counter status
RFU internal firmware download
rfu-fw-upload internal-fw-download-status
status

rfu-sw-upload internal-download-counter RFU internal download counter status

rfu-sw-upload internal-download-status RFU internal download status

Remote MEPs learning time (for


service-oam remote-meps-learning-time
learned remote MEPs) (seconds)
snmp admin SNMP administrative state
snmp mib-version Private MIB file version
snmp read-community SNMP read community
snmp status SNMP service status
snmp trap-admin Enable/disable sending SNMP traps
snmp trap-clli SNMP trap clli
snmp trap-community SNMP trap community
How often (in minutes) a trap
snmp trap-heartbeat heartbeat is sent to the manager (0 to
disable)

IP address of manager to which


snmp trap-manager
SNMP traps will be sent
snmp trap-name Text for manager name or comment
Manager port to which traps are sent
snmp trap-port
(default is 162)
Filter for traps sent to the manager
snmp trap-severity-filter
according to severity
Send trap on operational status
snmp trap-status-change-filter
change only
snmp v3-auth-algorithm SNMPv3 authentication algorithm
snmp v3-security-mode SNMPv3 security mode
snmp v3-username SNMPv3 single user username
snmp version SNMP version
snmp write-community SNMP write community
time-service dst-end-day Daylight Savings Time ending day
time-service dst-end-month Daylight Savings Time ending month
time-service dst-offset Daylight Savings Time offset
time-service dst-start-day Daylight Savings Time starting day
time-service dst-start-month Daylight Savings Time starting month
time-service gmt-offset-hours NTP offset from GMT (hours part)

FibeAir® IP-10 CLI Guide 28


Parameter Group Parameter Description
time-service gmt-offset-minutes NTP offset from GMT (minutes part)
Time and date format: day-month-
time-service time-and-date
year,hours:mins:secs
user-channel admin User channel admin
user-channel type User channel type

wayside admin Enable/disable Wayside channel

wayside auto-negotiation Wayside auto negotiation


wayside capacity Wayside channel capacity
wayside duplex Wayside half/full duplex
wayside ethernet-rate Wayside Ethernet port rate (Mbps)

FibeAir® IP-10 CLI Guide 29

Das könnte Ihnen auch gefallen