((link)) | Ericsson Mini Link Cli Commands
The Command Line Interface (CLI) for Ericsson MINI-LINK systems provides a toolset for node configuration, monitoring, and troubleshooting, primarily used as an alternative to the MINI-LINK Craft graphical user interface. Accessing the CLI
To access the CLI, you can use standard terminal protocols like Telnet or SSH.
Method: Open a command prompt and use the command telnet [Node_IP] or a tool like PuTTY for SSH.
Default Credentials: Often admin / admin or ericsson / ericsson, depending on the model and firmware version.
Privileged Mode: Enter enable to access configuration capabilities.
Hidden Commands: Some advanced debug commands can be accessed via cliunlock. Essential CLI Commands
Commands are typically categorized by their function within the node. Command Examples Description System Status show board, show temp
Displays hardware inventory, software versions, and current board temperatures. General ping, traceroute, telnet Basic network diagnostic and reachability tools. Configuration config, write Enters configuration mode and saves changes to memory. Maintenance reload, activate
Restarts the node (warm restart) or activates new software loads. Interface sh interface [type] [id] ericsson mini link cli commands
Shows details for specific interfaces like Ethernet or Radio. Network (DCN) dcn-mode, ip address
Configures Data Communication Network modes and management IPs. Advanced Troubleshooting and Logging
For deeper analysis, the CLI supports syslog and event monitoring: Mini-Link CLI | PDF - Scribd
You might also like * TCU Configuration Step by Step. ... * DCN Configuration via CLI Guide. ... * Mini-Link Craft Basic Setup. .. CLI Command Reference Guide | PDF | Radius - Scribd
This guide outlines the standard Command Line Interface (CLI) operations for the Ericsson MINI-LINK series, primarily focusing on the Traffic Node (TN) 6000 series 1. Initial Access To access the CLI, use a terminal emulator like : SSH (port 22) or Telnet (if enabled). Default Credentials Ericsson@123 2. Privilege Modes Commands are structured into execution levels: User Exec Mode (Basic monitoring). Privileged Exec Mode to move to . This allows configuration changes. Hidden/Debug Commands to access advanced debugging tools. 3. Core CLI Commands
The following table summarizes frequently used commands for system management and troubleshooting: Description System Info show version Displays hardware/software baseline versions. show backplane Shows backplane connectivity status. Configuration Enters configuration mode. Saves the running configuration to flash. Copies files (e.g., config to FTP server). Networking Tests reachability to another node. traceroute [IP] Traces the network path to a destination. show ip route Displays the current routing table. Monitoring show alarm Lists active alarms on the node. show interface Displays status and statistics for all interfaces. show clock Shows current system date and time. 4. Advanced Maintenance : Commands such as interface lan-dcn ip address are used to configure management access. Radio Link : While often managed via MINI-LINK Craft , CLI commands like show radio-link (on specific versions) provide rapid status updates. to update user credentials and radius-server to configure centralized authentication. 5. Best Practices : Always run show startup-config before making changes to ensure you have a reference point. Auto-Complete key to complete commands and to list available parameters. Exit Safely
to downgrade your privilege level before closing the session. OSPF routing configuration? Mini-Link CLI | PDF - Scribd
The Command Line Interface (CLI) for the Ericsson MINI-LINK series—particularly the Traffic Node (TN) and 6000 series—is a text-based tool used for high-level configuration, deep-dive debugging, and troubleshooting . It provides more granular control than the standard Node GUI . Core CLI Operational Modes The Command Line Interface (CLI) for Ericsson MINI-LINK
The CLI uses a hierarchical structure similar to Cisco, dividing access into "classes" or modes to prevent accidental misconfiguration .
User Exec Mode: The default entry point with limited monitoring capabilities.
Privileged Exec Mode: Enabled by the enable command. This mode allows configuration changes .
Configuration Mode: Entered via the configure command; this is where parameters for specific interfaces or protocols are modified .
Hidden Command Mode: Accessible via cliunlock, this mode provides powerful debug and diagnostic capabilities but should be used with extreme caution . Essential CLI Command Categories
Commands are grouped by function, allowing technicians to manage the microwave node efficiently . 🛠️ Configuration & Management
IP & DCN: Used for setting up the Management IP, subnet masks, and default gateways for the Data Communication Network (DCN) .
Submodes: Specific sub-configuration modes exist for Ethernet, VLANs, IP Routers, and Serial Interfaces . no interface vlan1 shutdown ) |
Scripting: The CLI tool allows technicians to prepare scripts offline and execute them on-site to speed up commissioning . 🔍 Monitoring & Status Mini-Link CLI | PDF - Scribd
7.2 Show SDH Status
show controller sdh 1 # LOS, LOF, OOF, B1/B2 errorsshow sdh alarm 1
Current modulation, allowed modulations, threshold levels
1. Introduction
Ericsson MINI-LINK products use a command-line interface (CLI) based on a hierarchical structure, similar to other carrier-grade network devices (e.g., Cisco/Juniper). The CLI is accessed via SSH or serial console. The system is built on a Linux-based operating system (often EOS – Ericsson Operating System).
Revert to saved config
copy tftp://<ip>/<file> flash:
Common Actions
SET: Configures or changes parameters.GET: Retrieves current status or configuration.NEW: Creates a new entity (e.g., a VLAN or IP address).DEL: Deletes an entity.RESET: Clears statistics or resets hardware.
Part 1: Navigation and Modes
Unlike Cisco’s hierarchical structure, Ericsson MINI-LINK CLI is context-based. You work within specific "contexts."
| Command | Description |
| --- | --- |
| ? | Displays available commands in current context. |
| ls | Lists objects (radios, Ethernet ports, services). |
| cd | Changes context (e.g., cd radio/1). |
| pwd | Prints current working context path. |
| exit | Moves up one level or logs out. |
Example navigation:
/admin> ls
system radio ethernet services alarms
/admin> cd radio/1
/admin/radio/1> pwd
/network/radio/1
7. Common Command-Line Shortcuts & Tips
| Shortcut | Function |
|----------|----------|
| ? | Context-sensitive help |
| Tab | Auto-complete command |
| Ctrl+A | Move cursor to start of line |
| Ctrl+E | Move to end |
| Ctrl+K | Delete from cursor to end |
| up/down arrows | Recall history |
| do | Execute show command from config mode (e.g., do show version) |
| no | Negate a command (e.g., no interface vlan1 shutdown) |
