blob: 5899c57aaccd79a6bf4285e51fa3118c06e86b4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Usage
{% include alert.html content=include.alertUsage alert="Note" icon="svg-info" color="blue" %}
{% unless include.disableEnablePassword==true %}
## Login and enable
{% if include.alertEnablePassword %}
{% include alert.html content=include.alertEnablePassword alert="Note" icon="svg-info" color="blue" %}
{% endif %}
Once you're logged in, a custom menu will be shown and you'll be able to access the linux shell by first typing `system` followed by `shell`:
```sh
ONT>enable
#ONT>login
User name:{{include.username}}
Password: ****
```
The enable password can be generated using the following form:
{% include cig_password.html username=include.username %}
{% endunless %}
# Accessing Full Shell
To access a complete linux shell just type:
```sh
#ONT>system
#ONT/system>shell
```
To exit the shell and reach the parent menu type `exit` or `x`, in each menu the `help` command will show how to use the shell
|